Class: Aws::RTBFabric::Types::CreateRequesterGatewayRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RTBFabric::Types::CreateRequesterGatewayRequest
- Defined in:
- gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#description ⇒ String
An optional description for the requester gateway.
-
#security_group_ids ⇒ Array<String>
The unique identifiers of the security groups.
-
#subnet_ids ⇒ Array<String>
The unique identifiers of the subnets.
-
#tags ⇒ Hash<String,String>
A map of the key-value pairs of the tag or tags to assign to the resource.
-
#vpc_id ⇒ String
The unique identifier of the Virtual Private Cloud (VPC).
Instance Attribute Details
#client_token ⇒ String
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.
If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same clientToken, but with
different parameters, the retry fails with an
IdempotentParameterMismatch error.
A suitable default value is auto-generated. You should normally not need to pass this option.
692 693 694 695 696 697 698 699 700 701 |
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 692 class CreateRequesterGatewayRequest < Struct.new( :vpc_id, :subnet_ids, :security_group_ids, :client_token, :description, :tags) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
An optional description for the requester gateway.
692 693 694 695 696 697 698 699 700 701 |
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 692 class CreateRequesterGatewayRequest < Struct.new( :vpc_id, :subnet_ids, :security_group_ids, :client_token, :description, :tags) SENSITIVE = [] include Aws::Structure end |
#security_group_ids ⇒ Array<String>
The unique identifiers of the security groups.
692 693 694 695 696 697 698 699 700 701 |
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 692 class CreateRequesterGatewayRequest < Struct.new( :vpc_id, :subnet_ids, :security_group_ids, :client_token, :description, :tags) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
The unique identifiers of the subnets.
692 693 694 695 696 697 698 699 700 701 |
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 692 class CreateRequesterGatewayRequest < Struct.new( :vpc_id, :subnet_ids, :security_group_ids, :client_token, :description, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A map of the key-value pairs of the tag or tags to assign to the resource.
692 693 694 695 696 697 698 699 700 701 |
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 692 class CreateRequesterGatewayRequest < Struct.new( :vpc_id, :subnet_ids, :security_group_ids, :client_token, :description, :tags) SENSITIVE = [] include Aws::Structure end |
#vpc_id ⇒ String
The unique identifier of the Virtual Private Cloud (VPC).
692 693 694 695 696 697 698 699 700 701 |
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 692 class CreateRequesterGatewayRequest < Struct.new( :vpc_id, :subnet_ids, :security_group_ids, :client_token, :description, :tags) SENSITIVE = [] include Aws::Structure end |