Class: Aws::EventBridge::Types::NetworkConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::NetworkConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eventbridge/types.rb
Overview
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.
3259 3260 3261 3262 3263 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3259 class NetworkConfiguration < Struct.new( :awsvpc_configuration) SENSITIVE = [] include Aws::Structure end |