AWSCognitoIdentityGetIdInput

Objective-C

@interface AWSCognitoIdentityGetIdInput : AWSRequest

Swift

class AWSCognitoIdentityGetIdInput : AWSRequest

Input to the GetId action.

Required parameters: [IdentityPoolId]

  • A standard AWS account ID (9+ digits).

    Declaration

    Objective-C

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

    Swift

    var accountId: String? { get set }
  • An identity pool ID in the format REGION:GUID.

    Declaration

    Objective-C

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

    Swift

    var identityPoolId: String? { get set }
  • A set of optional name-value pairs that map provider names to provider tokens. The available provider names for Logins are as follows:

    • Facebook: graph.facebook.com

    • Amazon Cognito user pool: cognito-idp.<region>.amazonaws.com/<YOUR_USER_POOL_ID>, for example, cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789.

    • Google: accounts.google.com

    • Amazon: www.amazon.com

    • Twitter: api.twitter.com

    • Digits: www.digits.com

    Declaration

    Objective-C

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

    Swift

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