RespondToAuthChallengeResponse

public struct RespondToAuthChallengeResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The result returned by the server in response to the request to respond to the authentication challenge.

    Declaration

    Swift

    public let authenticationResult: AuthenticationResultType?
  • The challenge name. For more information, see InitiateAuth.

    Declaration

    Swift

    public let challengeName: ChallengeNameType?
  • The challenge parameters. For more information, see InitiateAuth.

    Declaration

    Swift

    public let challengeParameters: [String : String]?
  • The session which should be passed both ways in challenge-response calls to the service. If the caller needs to go through 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

    Swift

    public let session: String?
  • Undocumented

    Declaration

    Swift

    public init(authenticationResult: AuthenticationResultType? = nil, challengeName: ChallengeNameType? = nil, challengeParameters: [String : String]? = nil, session: String? = nil)