Class: Aws::APIGateway::Types::CreateApiKeyRequest

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 CreateApiKeyRequest data as a hash:

{
  name: "String",
  description: "String",
  enabled: false,
  generate_distinct_id: false,
  value: "String",
  stage_keys: [
    {
      rest_api_id: "String",
      stage_name: "String",
    },
  ],
  customer_id: "String",
}

Request to create an ApiKey resource.

Instance Attribute Summary collapse

Instance Attribute Details

#customer_idString

An AWS Marketplace customer identifier , when integrating with the AWS SaaS Marketplace.

Returns:

  • (String)


537
538
539
540
541
542
543
544
545
546
# File 'lib/aws-sdk-apigateway/types.rb', line 537

class CreateApiKeyRequest < Struct.new(
  :name,
  :description,
  :enabled,
  :generate_distinct_id,
  :value,
  :stage_keys,
  :customer_id)
  include Aws::Structure
end

#descriptionString

The description of the ApiKey.

Returns:

  • (String)


537
538
539
540
541
542
543
544
545
546
# File 'lib/aws-sdk-apigateway/types.rb', line 537

class CreateApiKeyRequest < Struct.new(
  :name,
  :description,
  :enabled,
  :generate_distinct_id,
  :value,
  :stage_keys,
  :customer_id)
  include Aws::Structure
end

#enabledBoolean

Specifies whether the ApiKey can be used by callers.

Returns:

  • (Boolean)


537
538
539
540
541
542
543
544
545
546
# File 'lib/aws-sdk-apigateway/types.rb', line 537

class CreateApiKeyRequest < Struct.new(
  :name,
  :description,
  :enabled,
  :generate_distinct_id,
  :value,
  :stage_keys,
  :customer_id)
  include Aws::Structure
end

#generate_distinct_idBoolean

Specifies whether (‘true`) or not (`false`) the key identifier is distinct from the created API key value.

Returns:

  • (Boolean)


537
538
539
540
541
542
543
544
545
546
# File 'lib/aws-sdk-apigateway/types.rb', line 537

class CreateApiKeyRequest < Struct.new(
  :name,
  :description,
  :enabled,
  :generate_distinct_id,
  :value,
  :stage_keys,
  :customer_id)
  include Aws::Structure
end

#nameString

The name of the ApiKey.

Returns:

  • (String)


537
538
539
540
541
542
543
544
545
546
# File 'lib/aws-sdk-apigateway/types.rb', line 537

class CreateApiKeyRequest < Struct.new(
  :name,
  :description,
  :enabled,
  :generate_distinct_id,
  :value,
  :stage_keys,
  :customer_id)
  include Aws::Structure
end

#stage_keysArray<Types::StageKey>

DEPRECATED FOR USAGE PLANS - Specifies stages associated with the API key.

Returns:



537
538
539
540
541
542
543
544
545
546
# File 'lib/aws-sdk-apigateway/types.rb', line 537

class CreateApiKeyRequest < Struct.new(
  :name,
  :description,
  :enabled,
  :generate_distinct_id,
  :value,
  :stage_keys,
  :customer_id)
  include Aws::Structure
end

#valueString

Specifies a value of the API key.

Returns:

  • (String)


537
538
539
540
541
542
543
544
545
546
# File 'lib/aws-sdk-apigateway/types.rb', line 537

class CreateApiKeyRequest < Struct.new(
  :name,
  :description,
  :enabled,
  :generate_distinct_id,
  :value,
  :stage_keys,
  :customer_id)
  include Aws::Structure
end