AWSCognitoIdentitySelectMfaDetails
Objective-C
@interface AWSCognitoIdentitySelectMfaDetails : NSObject
Swift
class AWSCognitoIdentitySelectMfaDetails : NSObject
When responding to a select mfa challenge this encapsulates the end users mfa choice
-
The mfa the end user selected
Declaration
Objective-C
@property (nonatomic, strong, nonnull) NSString *selectedMfa;
Swift
var selectedMfa: String { get set }
-
Initializer given the mfa selected by the end user *
Declaration
Objective-C
- (nonnull instancetype)initWithSelectedMfa:(nonnull NSString *)selectedMfa;
Swift
init(selectedMfa: String)