RegisterClientResponse
public struct RegisterClientResponse : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The endpoint where the client can request authorization.
Declaration
Swift
public let authorizationEndpoint: String?
-
The unique identifier string for each client. This client uses this identifier to get authenticated by the service in subsequent calls.
Declaration
Swift
public let clientId: String?
-
Indicates the time at which the clientId and clientSecret were issued.
Declaration
Swift
public let clientIdIssuedAt: Int64?
-
A secret string generated for the client. The client will use this string to get authenticated by the service in subsequent calls.
Declaration
Swift
public let clientSecret: String?
-
Indicates the time at which the clientId and clientSecret will become invalid.
Declaration
Swift
public let clientSecretExpiresAt: Int64?
-
The endpoint where the client can get an access token.
Declaration
Swift
public let tokenEndpoint: String?
-
init(authorizationEndpoint:clientId:clientIdIssuedAt:clientSecret:clientSecretExpiresAt:tokenEndpoint:)
Undocumented
Declaration
Swift
public init(authorizationEndpoint: String? = nil, clientId: String? = nil, clientIdIssuedAt: Int64? = nil, clientSecret: String? = nil, clientSecretExpiresAt: Int64? = nil, tokenEndpoint: String? = nil)