GetUserResponse

public struct GetUserResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • This response parameter is no longer supported. It provides information only about SMS MFA configurations. It doesn’t provide information about TOTP software token MFA configurations. To look up information about either type of MFA configuration, use UserMFASettingList instead.

    Declaration

    Swift

    public let mFAOptions: [MFAOptionType]?
  • The user’s preferred MFA setting.

    Declaration

    Swift

    public let preferredMfaSetting: String?
  • An array of name-value pairs representing user attributes. For custom attributes, you must prepend the custom: prefix to the attribute name.

    Declaration

    Swift

    public let userAttributes: [AttributeType]
  • The MFA options that are enabled for the user. The possible values in this list are SMS_MFA and SOFTWARE_TOKEN_MFA.

    Declaration

    Swift

    public let userMFASettingList: [String]?
  • The user name of the user you wish to retrieve from the get user request.

    Declaration

    Swift

    public let username: String
  • Undocumented

    Declaration

    Swift

    public init(mFAOptions: [MFAOptionType]? = nil, preferredMfaSetting: String? = nil, userAttributes: [AttributeType], userMFASettingList: [String]? = nil, username: String)