Class: Aws::SecurityHub::Types::AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetails
- Defined in:
- gems/aws-sdk-securityhub/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
10199 10200 10201 10202 10203 10204 10205 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 10199 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.
10199 10200 10201 10202 10203 10204 10205 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 10199 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.
10199 10200 10201 10202 10203 10204 10205 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 10199 class AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetails < Struct.new( :assign_public_ip, :security_groups, :subnets) SENSITIVE = [] include Aws::Structure end |