Class: Aws::APIGateway::Types::GenerateClientCertificateRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-apigateway/types.rb

Overview

Note:

When making an API call, you may pass GenerateClientCertificateRequest data as a hash:

{
  description: "String",
  tags: {
    "String" => "String",
  },
}

A request to generate a ClientCertificate resource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description of the ClientCertificate.

Returns:

  • (String)


3013
3014
3015
3016
3017
3018
# File 'lib/aws-sdk-apigateway/types.rb', line 3013

class GenerateClientCertificateRequest < Struct.new(
  :description,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

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.

Returns:

  • (Hash<String,String>)


3013
3014
3015
3016
3017
3018
# File 'lib/aws-sdk-apigateway/types.rb', line 3013

class GenerateClientCertificateRequest < Struct.new(
  :description,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end