Class: Aws::SecurityHub::Types::AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
For tasks that use the ‘awsvpc` networking mode, the VPC subnet and security group configuration.
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`.
Valid values: ‘ENABLED` | `DISABLED`
10192 10193 10194 10195 10196 10197 10198 |
# File 'lib/aws-sdk-securityhub/types.rb', line 10192 class AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetails < Struct.new( :assign_public_ip, :security_groups, :subnets) SENSITIVE = [] include Aws::Structure end |
#security_groups ⇒ Array<String>
The IDs of the security groups associated with the task or service.
You can provide up to five security groups.
10192 10193 10194 10195 10196 10197 10198 |
# File 'lib/aws-sdk-securityhub/types.rb', line 10192 class AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetails < Struct.new( :assign_public_ip, :security_groups, :subnets) SENSITIVE = [] include Aws::Structure end |
#subnets ⇒ Array<String>
The IDs of the subnets associated with the task or service.
You can provide up to 16 subnets.
10192 10193 10194 10195 10196 10197 10198 |
# File 'lib/aws-sdk-securityhub/types.rb', line 10192 class AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetails < Struct.new( :assign_public_ip, :security_groups, :subnets) SENSITIVE = [] include Aws::Structure end |