AWSCognitoIdentityGetOpenIdTokenInput

Objective-C

@interface AWSCognitoIdentityGetOpenIdTokenInput : AWSRequest

Swift

class AWSCognitoIdentityGetOpenIdTokenInput : AWSRequest

Input to the GetOpenIdToken action.

Required parameters: [IdentityId]

  • A unique identifier in the format REGION:GUID.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable identityId;

    Swift

    var identityId: String? { get set }
  • A set of optional name-value pairs that map provider names to provider tokens. When using graph.facebook.com and www.amazon.com, supply the access_token returned from the provider’s authflow. For accounts.google.com, an Amazon Cognito user pool provider, or any other OpenID Connect provider, always include the id_token.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable logins;

    Swift

    var logins: [String : String]? { get set }