Class: Aws::AppRunner::Types::CreateVpcConnectorRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::CreateVpcConnectorRequest
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
When making an API call, you may pass CreateVpcConnectorRequest data as a hash:
{
vpc_connector_name: "VpcConnectorName", # required
subnets: ["String"], # required
security_groups: ["String"],
tags: [
{
key: "TagKey",
value: "TagValue",
},
],
}
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.
935 936 937 938 939 940 941 942 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 935 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.
935 936 937 938 939 940 941 942 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 935 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.
935 936 937 938 939 940 941 942 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 935 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.
935 936 937 938 939 940 941 942 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 935 class CreateVpcConnectorRequest < Struct.new( :vpc_connector_name, :subnets, :security_groups, :tags) SENSITIVE = [] include Aws::Structure end |