AWSCognitoIdentityCredentials

Objective-C

@interface AWSCognitoIdentityCredentials : AWSModel

Swift

class AWSCognitoIdentityCredentials : AWSModel

Credentials for the provided identity ID.

  • The Access Key portion of the credentials.

    Declaration

    Objective-C

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

    Swift

    var accessKeyId: String? { get set }
  • The date at which these credentials will expire.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable expiration;

    Swift

    var expiration: Date? { get set }
  • The Secret Access Key portion of the credentials

    Declaration

    Objective-C

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

    Swift

    var secretKey: String? { get set }
  • The Session Token portion of the credentials

    Declaration

    Objective-C

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

    Swift

    var sessionToken: String? { get set }