Class: Aws::EventBridge::Types::NetworkConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::NetworkConfiguration
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass NetworkConfiguration data as a hash:
{
awsvpc_configuration: {
subnets: ["String"], # required
security_groups: ["String"],
assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
},
}
This structure specifies the network configuration for an ECS task.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#awsvpc_configuration ⇒ Types::AwsVpcConfiguration
Use this structure to specify the VPC subnets and security groups for the task, and whether a public IP address is to be used.
Instance Attribute Details
#awsvpc_configuration ⇒ Types::AwsVpcConfiguration
Use this structure to specify 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.
3862 3863 3864 3865 3866 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3862 class NetworkConfiguration < Struct.new( :awsvpc_configuration) SENSITIVE = [] include Aws::Structure end |