Class: Aws::AppRunner::Types::CreateVpcConnectorRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::CreateVpcConnectorRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apprunner/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#security_groups ⇒ Array<String>
A list of IDs of security groups that App Runner should use for access to Amazon Web Services resources under the specified subnets.
-
#subnets ⇒ Array<String>
A list of IDs of subnets that App Runner should use when it associates your service with a custom Amazon VPC.
-
#tags ⇒ Array<Types::Tag>
A list of metadata items that you can associate with your VPC connector resource.
-
#vpc_connector_name ⇒ String
A name for the VPC connector.
Instance Attribute Details
#security_groups ⇒ Array<String>
A list of IDs of security groups that App Runner should use for access to Amazon Web Services resources under the specified subnets. If not specified, App Runner uses the default security group of the Amazon VPC. The default security group allows all outbound traffic.
827 828 829 830 831 832 833 834 |
# File 'lib/aws-sdk-apprunner/types.rb', line 827 class CreateVpcConnectorRequest < Struct.new( :vpc_connector_name, :subnets, :security_groups, :tags) SENSITIVE = [] include Aws::Structure end |
#subnets ⇒ Array<String>
A list of IDs of subnets that App Runner should use when it associates your service with a custom Amazon VPC. Specify IDs of subnets of a single Amazon VPC. App Runner determines the Amazon VPC from the subnets you specify.
<note markdown=“1”> App Runner only supports subnets of IP address type IPv4 and *dual stack* (IPv4 and IPv6).
</note>
827 828 829 830 831 832 833 834 |
# File 'lib/aws-sdk-apprunner/types.rb', line 827 class CreateVpcConnectorRequest < Struct.new( :vpc_connector_name, :subnets, :security_groups, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of metadata items that you can associate with your VPC connector resource. A tag is a key-value pair.
827 828 829 830 831 832 833 834 |
# File 'lib/aws-sdk-apprunner/types.rb', line 827 class CreateVpcConnectorRequest < Struct.new( :vpc_connector_name, :subnets, :security_groups, :tags) SENSITIVE = [] include Aws::Structure end |
#vpc_connector_name ⇒ String
A name for the VPC connector.
827 828 829 830 831 832 833 834 |
# File 'lib/aws-sdk-apprunner/types.rb', line 827 class CreateVpcConnectorRequest < Struct.new( :vpc_connector_name, :subnets, :security_groups, :tags) SENSITIVE = [] include Aws::Structure end |