AWSCognitoIdentityProviderVerifyUserAttributeRequest
Objective-C
@interface AWSCognitoIdentityProviderVerifyUserAttributeRequest
Swift
class AWSCognitoIdentityProviderVerifyUserAttributeRequest
Represents the request to verify user attributes.
Required parameters: [AccessToken, AttributeName, Code]
-
A valid access token that Amazon Cognito issued to the user whose user attributes you want to verify.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable accessToken;
Swift
var accessToken: String? { get set }
-
The attribute name in the request to verify user attributes.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable attributeName;
Swift
var attributeName: String? { get set }
-
The verification code in the request to verify user attributes.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable code;
Swift
var code: String? { get set }