Class: Aws::ECS::Types::AwsVpcConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::AwsVpcConfiguration
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
When making an API call, you may pass AwsVpcConfiguration data as a hash:
{
subnets: ["String"], # required
security_groups: ["String"],
assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
}
An object representing the networking details for a task or service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#assign_public_ip ⇒ String
Whether the task's elastic network interface receives a public IP address.
-
#security_groups ⇒ Array<String>
The IDs of the security groups associated with the task or service.
-
#subnets ⇒ Array<String>
The IDs of the subnets associated with the task or service.
Instance Attribute Details
#assign_public_ip ⇒ String
Whether the task's elastic network interface receives a public IP
address. The default value is DISABLED
.
300 301 302 303 304 305 306 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 300 class AwsVpcConfiguration < Struct.new( :subnets, :security_groups, :assign_public_ip) SENSITIVE = [] include Aws::Structure end |
#security_groups ⇒ Array<String>
The IDs of the security groups associated with the task or service.
If you don't specify a security group, the default security group
for the VPC is used. There's a limit of 5 security groups that can
be specified per AwsVpcConfiguration
.
300 301 302 303 304 305 306 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 300 class AwsVpcConfiguration < Struct.new( :subnets, :security_groups, :assign_public_ip) SENSITIVE = [] include Aws::Structure end |
#subnets ⇒ Array<String>
The IDs of the subnets associated with the task or service. There's
a limit of 16 subnets that can be specified per
AwsVpcConfiguration
.
300 301 302 303 304 305 306 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 300 class AwsVpcConfiguration < Struct.new( :subnets, :security_groups, :assign_public_ip) SENSITIVE = [] include Aws::Structure end |