AWSCognitoIdentityProviderAdminRespondToAuthChallengeResponse
Objective-C
@interface AWSCognitoIdentityProviderAdminRespondToAuthChallengeResponse
Swift
class AWSCognitoIdentityProviderAdminRespondToAuthChallengeResponse
Responds to the authentication challenge, as an administrator.
-
The result returned by the server in response to the authentication request.
Declaration
Objective-C
@property (nonatomic, strong) AWSCognitoIdentityProviderAuthenticationResultType *_Nullable authenticationResult;
Swift
var authenticationResult: AWSCognitoIdentityProviderAuthenticationResultType? { get set }
-
The name of the challenge. For more information, see AdminInitiateAuth.
Declaration
Objective-C
@property (nonatomic) AWSCognitoIdentityProviderChallengeNameType challengeName;
Swift
var challengeName: AWSCognitoIdentityProviderChallengeNameType { get set }
-
The challenge parameters. For more information, see AdminInitiateAuth.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable challengeParameters;
Swift
var challengeParameters: [String : String]? { get set }
-
The session that should be passed both ways in challenge-response calls to the service. If the caller must pass another challenge, they return a session with other challenge parameters. This session should be passed as it is to the next
RespondToAuthChallenge
API call.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable session;
Swift
var session: String? { get set }