AWSSTSCredentials

Objective-C

@interface AWSSTSCredentials : AWSModel

Swift

class AWSSTSCredentials : AWSModel

Amazon Web Services credentials for API authentication.

Required parameters: [AccessKeyId, SecretAccessKey, SessionToken, Expiration]

  • The access key ID that identifies the temporary security credentials.

    Declaration

    Objective-C

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

    Swift

    var accessKeyId: String? { get set }
  • The date on which the current credentials expire.

    Declaration

    Objective-C

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

    Swift

    var expiration: Date? { get set }
  • The secret access key that can be used to sign requests.

    Declaration

    Objective-C

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

    Swift

    var secretAccessKey: String? { get set }
  • The token that users must pass to the service API to use the temporary credentials.

    Declaration

    Objective-C

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

    Swift

    var sessionToken: String? { get set }