AWSCognitoIdentitySoftwareMfaSetupRequiredInput

Objective-C

@interface AWSCognitoIdentitySoftwareMfaSetupRequiredInput : NSObject

Swift

class AWSCognitoIdentitySoftwareMfaSetupRequiredInput : NSObject

When responding to software mfa setup required, this encapsulates the secret code the end user must provide to their software mfa.

  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong) NSString *secretCode

    Swift

    var secretCode: String { get set }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong) NSString *username

    Swift

    var username: String { get set }
  • Undocumented

    Declaration

    Objective-C

    -(instancetype) initWithSecretCode: (NSString *) secretCode username: (NSString *) username;

    Swift

    init(secretCode: String, username: String)