RegisterClientRequest

public struct RegisterClientRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The friendly name of the client.

    Declaration

    Swift

    public let clientName: String
  • The type of client. The service supports only public as a client type. Anything other than public will be rejected by the service.

    Declaration

    Swift

    public let clientType: String
  • The list of scopes that are defined by the client. Upon authorization, this list is used to restrict permissions when granting an access token.

    Declaration

    Swift

    public let scopes: [String]?
  • Undocumented

    Declaration

    Swift

    public init(clientName: String, clientType: String, scopes: [String]? = nil)