Class: Aws::SecurityHub::Types::AwsEcsContainerDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsEcsContainerDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Provides information about an Amazon ECS container.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image ⇒ String
The image used for the container.
-
#mount_points ⇒ Array<Types::AwsMountPoint>
The mount points for data volumes in your container.
-
#name ⇒ String
The name of the container.
-
#privileged ⇒ Boolean
When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).
Instance Attribute Details
#image ⇒ String
The image used for the container.
9828 9829 9830 9831 9832 9833 9834 9835 |
# File 'lib/aws-sdk-securityhub/types.rb', line 9828 class AwsEcsContainerDetails < Struct.new( :name, :image, :mount_points, :privileged) SENSITIVE = [] include Aws::Structure end |
#mount_points ⇒ Array<Types::AwsMountPoint>
The mount points for data volumes in your container.
9828 9829 9830 9831 9832 9833 9834 9835 |
# File 'lib/aws-sdk-securityhub/types.rb', line 9828 class AwsEcsContainerDetails < Struct.new( :name, :image, :mount_points, :privileged) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the container.
9828 9829 9830 9831 9832 9833 9834 9835 |
# File 'lib/aws-sdk-securityhub/types.rb', line 9828 class AwsEcsContainerDetails < Struct.new( :name, :image, :mount_points, :privileged) SENSITIVE = [] include Aws::Structure end |
#privileged ⇒ Boolean
When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).
9828 9829 9830 9831 9832 9833 9834 9835 |
# File 'lib/aws-sdk-securityhub/types.rb', line 9828 class AwsEcsContainerDetails < Struct.new( :name, :image, :mount_points, :privileged) SENSITIVE = [] include Aws::Structure end |