CreateApiKeyRequest

public struct CreateApiKeyRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • An AWS Marketplace customer identifier , when integrating with the AWS SaaS Marketplace.

    Declaration

    Swift

    public let customerId: String?
  • The description of the ApiKey.

    Declaration

    Swift

    public let description: String?
  • Specifies whether the ApiKey can be used by callers.

    Declaration

    Swift

    public let enabled: Bool?
  • Specifies whether (true) or not (false) the key identifier is distinct from the created API key value. This parameter is deprecated and should not be used.

    Declaration

    Swift

    public let generateDistinctId: Bool?
  • The name of the ApiKey.

    Declaration

    Swift

    public let name: String?
  • DEPRECATED FOR USAGE PLANS - Specifies stages associated with the API key.

    Declaration

    Swift

    public let stageKeys: [StageKey]?
  • The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:. The tag value can be up to 256 characters.

    Declaration

    Swift

    public let tags: [String : String]?
  • Specifies a value of the API key.

    Declaration

    Swift

    public let value: String?
  • Undocumented

    Declaration

    Swift

    public init(customerId: String? = nil, description: String? = nil, enabled: Bool? = nil, generateDistinctId: Bool? = nil, name: String? = nil, stageKeys: [StageKey]? = nil, tags: [String : String]? = nil, value: String? = nil)