Class: Aws::VPCLattice::Types::CreateResourceConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::VPCLattice::Types::CreateResourceConfigurationRequest
- Defined in:
- gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allow_association_to_shareable_service_network ⇒ Boolean
(SINGLE, GROUP, ARN) Specifies whether the resource configuration can be associated with a sharable service network.
-
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#custom_domain_name ⇒ String
A custom domain name for your resource configuration.
-
#domain_verification_identifier ⇒ String
The domain verification ID of your verified custom domain name.
-
#group_domain ⇒ String
(GROUP) The group domain for a group resource configuration.
-
#name ⇒ String
The name of the resource configuration.
-
#port_ranges ⇒ Array<String>
(SINGLE, GROUP, CHILD, CIDR) The port ranges that a consumer can use to access a resource configuration (for example: 1-65535).
-
#protocol ⇒ String
(SINGLE, GROUP, CIDR) The protocol accepted by the resource configuration.
-
#resource_configuration_definition ⇒ Types::ResourceConfigurationDefinition
Identifies the resource configuration in one of the following ways:.
-
#resource_configuration_group_identifier ⇒ String
(CHILD) The ID or ARN of the parent resource configuration of type
GROUP. -
#resource_gateway_identifier ⇒ String
(SINGLE, GROUP, ARN, CIDR) The ID or ARN of the resource gateway used to connect to the resource configuration.
-
#tags ⇒ Hash<String,String>
The tags for the resource configuration.
-
#type ⇒ String
The type of resource configuration.
Instance Attribute Details
#allow_association_to_shareable_service_network ⇒ Boolean
(SINGLE, GROUP, ARN) Specifies whether the resource configuration can be associated with a sharable service network. The default is false.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 474 class CreateResourceConfigurationRequest < Struct.new( :name, :type, :port_ranges, :protocol, :resource_gateway_identifier, :resource_configuration_group_identifier, :resource_configuration_definition, :allow_association_to_shareable_service_network, :custom_domain_name, :group_domain, :domain_verification_identifier, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you retry a request that completed successfully using the same client token and parameters, the retry succeeds without performing any actions. If the parameters aren't identical, the retry fails.
A suitable default value is auto-generated. You should normally not need to pass this option.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 474 class CreateResourceConfigurationRequest < Struct.new( :name, :type, :port_ranges, :protocol, :resource_gateway_identifier, :resource_configuration_group_identifier, :resource_configuration_definition, :allow_association_to_shareable_service_network, :custom_domain_name, :group_domain, :domain_verification_identifier, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#custom_domain_name ⇒ String
A custom domain name for your resource configuration. Additionally, provide a DomainVerificationID to prove your ownership of a domain.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 474 class CreateResourceConfigurationRequest < Struct.new( :name, :type, :port_ranges, :protocol, :resource_gateway_identifier, :resource_configuration_group_identifier, :resource_configuration_definition, :allow_association_to_shareable_service_network, :custom_domain_name, :group_domain, :domain_verification_identifier, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#domain_verification_identifier ⇒ String
The domain verification ID of your verified custom domain name. If you don't provide an ID, you must configure the DNS settings yourself.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 474 class CreateResourceConfigurationRequest < Struct.new( :name, :type, :port_ranges, :protocol, :resource_gateway_identifier, :resource_configuration_group_identifier, :resource_configuration_definition, :allow_association_to_shareable_service_network, :custom_domain_name, :group_domain, :domain_verification_identifier, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#group_domain ⇒ String
(GROUP) The group domain for a group resource configuration. Any domains that you create for the child resource are subdomains of the group domain. Child resources inherit the verification status of the domain.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 474 class CreateResourceConfigurationRequest < Struct.new( :name, :type, :port_ranges, :protocol, :resource_gateway_identifier, :resource_configuration_group_identifier, :resource_configuration_definition, :allow_association_to_shareable_service_network, :custom_domain_name, :group_domain, :domain_verification_identifier, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the resource configuration. The name must be unique within the account. The valid characters are a-z, 0-9, and hyphens (-). You can't use a hyphen as the first or last character, or immediately after another hyphen.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 474 class CreateResourceConfigurationRequest < Struct.new( :name, :type, :port_ranges, :protocol, :resource_gateway_identifier, :resource_configuration_group_identifier, :resource_configuration_definition, :allow_association_to_shareable_service_network, :custom_domain_name, :group_domain, :domain_verification_identifier, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#port_ranges ⇒ Array<String>
(SINGLE, GROUP, CHILD, CIDR) The port ranges that a consumer can use to access a resource configuration (for example: 1-65535). You can separate port ranges using commas (for example: 1,2,22-30). To resolve DNS through a CIDR resource configuration, include port 53 in the port ranges.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 474 class CreateResourceConfigurationRequest < Struct.new( :name, :type, :port_ranges, :protocol, :resource_gateway_identifier, :resource_configuration_group_identifier, :resource_configuration_definition, :allow_association_to_shareable_service_network, :custom_domain_name, :group_domain, :domain_verification_identifier, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#protocol ⇒ String
(SINGLE, GROUP, CIDR) The protocol accepted by the resource
configuration. The default is TCP. TCP_UDP is supported only for
CIDR resource configurations; specify it for a CIDR resource
configuration to allow DNS resolution, which uses UDP.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 474 class CreateResourceConfigurationRequest < Struct.new( :name, :type, :port_ranges, :protocol, :resource_gateway_identifier, :resource_configuration_group_identifier, :resource_configuration_definition, :allow_association_to_shareable_service_network, :custom_domain_name, :group_domain, :domain_verification_identifier, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#resource_configuration_definition ⇒ Types::ResourceConfigurationDefinition
Identifies the resource configuration in one of the following ways:
Amazon Resource Name (ARN) - Supported resource-types that are provisioned by Amazon Web Services services, such as RDS databases, can be identified by their ARN.
Domain name - Any domain name that is publicly resolvable.
IP address - For IPv4 and IPv6, only IP addresses in the VPC are supported.
CIDR range - For a resource configuration of type CIDR, specify a
cidrResourcewith one or morecidrRanges(for example,10.0.0.0/16) that cover the IP addresses of the resources you want to make accessible. You can specify up to 10 ranges, using IPv4, IPv6, or both, and each range must include a prefix length. To represent your entire network, specify0.0.0.0/0(IPv4) or::/0(IPv6) as the only range. You can't use reserved ranges such as169.254.0.0/16,100.64.0.0/10,224.0.0.0/4,fe80::/10, orff00::/8.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 474 class CreateResourceConfigurationRequest < Struct.new( :name, :type, :port_ranges, :protocol, :resource_gateway_identifier, :resource_configuration_group_identifier, :resource_configuration_definition, :allow_association_to_shareable_service_network, :custom_domain_name, :group_domain, :domain_verification_identifier, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#resource_configuration_group_identifier ⇒ String
(CHILD) The ID or ARN of the parent resource configuration of type
GROUP. This is used to associate a child resource configuration
with a group resource configuration.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 474 class CreateResourceConfigurationRequest < Struct.new( :name, :type, :port_ranges, :protocol, :resource_gateway_identifier, :resource_configuration_group_identifier, :resource_configuration_definition, :allow_association_to_shareable_service_network, :custom_domain_name, :group_domain, :domain_verification_identifier, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#resource_gateway_identifier ⇒ String
(SINGLE, GROUP, ARN, CIDR) The ID or ARN of the resource gateway
used to connect to the resource configuration. For a child resource
configuration, this value is inherited from the parent resource
configuration. For a CIDR resource configuration, the associated
resource gateway must have its DNS resolution set to IN_VPC so
that DNS queries resolve in the context of your VPC.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 474 class CreateResourceConfigurationRequest < Struct.new( :name, :type, :port_ranges, :protocol, :resource_gateway_identifier, :resource_configuration_group_identifier, :resource_configuration_definition, :allow_association_to_shareable_service_network, :custom_domain_name, :group_domain, :domain_verification_identifier, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The tags for the resource configuration.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 474 class CreateResourceConfigurationRequest < Struct.new( :name, :type, :port_ranges, :protocol, :resource_gateway_identifier, :resource_configuration_group_identifier, :resource_configuration_definition, :allow_association_to_shareable_service_network, :custom_domain_name, :group_domain, :domain_verification_identifier, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of resource configuration. A resource configuration can be one of the following types:
SINGLE - A single resource.
GROUP - A group of resources. You must create a group resource configuration before you create a child resource configuration.
CHILD - A single resource that is part of a group resource configuration.
ARN - An Amazon Web Services resource.
CIDR - A network segment, expressed as a range of IP addresses (a CIDR block). Use this type to share a portion of your network rather than an individual resource. A consumer accesses the resources within the CIDR range through a
TunnelVPC endpoint. You can't add a CIDR resource configuration to a service network. A CIDR resource configuration must be associated with a resource gateway whose DNS resolution is set toIN_VPC.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 474 class CreateResourceConfigurationRequest < Struct.new( :name, :type, :port_ranges, :protocol, :resource_gateway_identifier, :resource_configuration_group_identifier, :resource_configuration_definition, :allow_association_to_shareable_service_network, :custom_domain_name, :group_domain, :domain_verification_identifier, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |