Package-level declarations

Types

Link copied to clipboard
@JsonSerializable
data class GetCredentialsForIdentity(val IdentityId: IdentityId, val Logins: Map<String, String>? = null, val CustomRoleArn: ARN? = null) : CognitoIdentityAction<IdentityCredentials>
Link copied to clipboard
@JsonSerializable
data class GetId(val IdentityPoolId: IdentityPoolId, val AccountId: AwsAccount? = null, val Logins: Map<String, String>? = null) : CognitoIdentityAction<Identity>
Link copied to clipboard
@JsonSerializable
data class Identity(val IdentityId: IdentityId)
Link copied to clipboard
@JsonSerializable
data class IdentityCredentials(val IdentityId: IdentityId, val Credentials: TemporaryCredentials)
Link copied to clipboard
@JsonSerializable
data class TemporaryCredentials(val AccessKeyId: AccessKeyId, val SecretKey: SecretAccessKey, val SessionToken: SessionToken, val Expiration: Timestamp? = null)