Class: Aws::SecurityHub::Types::AwsEcsContainerDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#imageString

The image used for the container.

Returns:

  • (String)


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_pointsArray<Types::AwsMountPoint>

The mount points for data volumes in your container.

Returns:



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

#nameString

The name of the container.

Returns:

  • (String)


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

#privilegedBoolean

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

Returns:

  • (Boolean)


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