Class: Aws::ECS::Types::AwsVpcConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecs/types.rb

Overview

Note:

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.

Instance Attribute Summary collapse

Instance Attribute Details

#assign_public_ipString

Whether the task’s elastic network interface receives a public IP address. The default value is ‘DISABLED`.

Returns:

  • (String)


159
160
161
162
163
164
# File 'lib/aws-sdk-ecs/types.rb', line 159

class AwsVpcConfiguration < Struct.new(
  :subnets,
  :security_groups,
  :assign_public_ip)
  include Aws::Structure
end

#security_groupsArray<String>

The security groups associated with the task or service. If you do not specify a security group, the default security group for the VPC is used. There is a limit of five security groups able to be specified per ‘AwsVpcConfiguration`.

<note markdown=“1”> All specified security groups must be from the same VPC.

</note>

Returns:

  • (Array<String>)


159
160
161
162
163
164
# File 'lib/aws-sdk-ecs/types.rb', line 159

class AwsVpcConfiguration < Struct.new(
  :subnets,
  :security_groups,
  :assign_public_ip)
  include Aws::Structure
end

#subnetsArray<String>

The subnets associated with the task or service. There is a limit of 16 subnets able to be specified per ‘AwsVpcConfiguration`.

<note markdown=“1”> All specified subnets must be from the same VPC.

</note>

Returns:

  • (Array<String>)


159
160
161
162
163
164
# File 'lib/aws-sdk-ecs/types.rb', line 159

class AwsVpcConfiguration < Struct.new(
  :subnets,
  :security_groups,
  :assign_public_ip)
  include Aws::Structure
end