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.
826 827 828 829 830 831 832 833 |
# File 'lib/aws-sdk-apprunner/types.rb', line 826 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 currently only provides support for IPv4.
</note>
826 827 828 829 830 831 832 833 |
# File 'lib/aws-sdk-apprunner/types.rb', line 826 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.
826 827 828 829 830 831 832 833 |
# File 'lib/aws-sdk-apprunner/types.rb', line 826 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.
826 827 828 829 830 831 832 833 |
# File 'lib/aws-sdk-apprunner/types.rb', line 826 class CreateVpcConnectorRequest < Struct.new( :vpc_connector_name, :subnets, :security_groups, :tags) SENSITIVE = [] include Aws::Structure end |