Class: Aws::EventBridge::Types::AwsVpcConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::AwsVpcConfiguration
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
This structure specifies the VPC subnets and security groups for the
task, and whether a public IP address is to be used. This structure is
relevant only for ECS tasks that use the awsvpc
network mode.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#assign_public_ip ⇒ String
Specifies whether the task's elastic network interface receives a public IP address.
-
#security_groups ⇒ Array<String>
Specifies the security groups associated with the task.
-
#subnets ⇒ Array<String>
Specifies the subnets associated with the task.
Instance Attribute Details
#assign_public_ip ⇒ String
Specifies whether the task's elastic network interface receives a
public IP address. You can specify ENABLED
only when LaunchType
in EcsParameters
is set to FARGATE
.
180 181 182 183 184 185 186 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 180 class AwsVpcConfiguration < Struct.new( :subnets, :security_groups, :assign_public_ip) SENSITIVE = [] include Aws::Structure end |
#security_groups ⇒ Array<String>
Specifies the security groups associated with the task. These security groups must all be in the same VPC. You can specify as many as five security groups. If you do not specify a security group, the default security group for the VPC is used.
180 181 182 183 184 185 186 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 180 class AwsVpcConfiguration < Struct.new( :subnets, :security_groups, :assign_public_ip) SENSITIVE = [] include Aws::Structure end |
#subnets ⇒ Array<String>
Specifies the subnets associated with the task. These subnets must all be in the same VPC. You can specify as many as 16 subnets.
180 181 182 183 184 185 186 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 180 class AwsVpcConfiguration < Struct.new( :subnets, :security_groups, :assign_public_ip) SENSITIVE = [] include Aws::Structure end |