Class: Aws::GuardDuty::Types::Container
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::Container
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-guardduty/types.rb
Overview
Details of a container.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_runtime ⇒ String
The container runtime (such as, Docker or containerd) used to run the container.
-
#id ⇒ String
Container ID.
-
#image ⇒ String
Container image.
-
#image_prefix ⇒ String
Part of the image name before the last slash.
-
#name ⇒ String
Container name.
-
#security_context ⇒ Types::SecurityContext
Container security context.
-
#volume_mounts ⇒ Array<Types::VolumeMount>
Container volume mounts.
Instance Attribute Details
#container_runtime ⇒ String
The container runtime (such as, Docker or containerd) used to run the container.
798 799 800 801 802 803 804 805 806 807 808 |
# File 'lib/aws-sdk-guardduty/types.rb', line 798 class Container < Struct.new( :container_runtime, :id, :name, :image, :image_prefix, :volume_mounts, :security_context) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
Container ID.
798 799 800 801 802 803 804 805 806 807 808 |
# File 'lib/aws-sdk-guardduty/types.rb', line 798 class Container < Struct.new( :container_runtime, :id, :name, :image, :image_prefix, :volume_mounts, :security_context) SENSITIVE = [] include Aws::Structure end |
#image ⇒ String
Container image.
798 799 800 801 802 803 804 805 806 807 808 |
# File 'lib/aws-sdk-guardduty/types.rb', line 798 class Container < Struct.new( :container_runtime, :id, :name, :image, :image_prefix, :volume_mounts, :security_context) SENSITIVE = [] include Aws::Structure end |
#image_prefix ⇒ String
Part of the image name before the last slash. For example, imagePrefix for public.ecr.aws/amazonlinux/amazonlinux:latest would be public.ecr.aws/amazonlinux. If the image name is relative and does not have a slash, this field is empty.
798 799 800 801 802 803 804 805 806 807 808 |
# File 'lib/aws-sdk-guardduty/types.rb', line 798 class Container < Struct.new( :container_runtime, :id, :name, :image, :image_prefix, :volume_mounts, :security_context) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Container name.
798 799 800 801 802 803 804 805 806 807 808 |
# File 'lib/aws-sdk-guardduty/types.rb', line 798 class Container < Struct.new( :container_runtime, :id, :name, :image, :image_prefix, :volume_mounts, :security_context) SENSITIVE = [] include Aws::Structure end |
#security_context ⇒ Types::SecurityContext
Container security context.
798 799 800 801 802 803 804 805 806 807 808 |
# File 'lib/aws-sdk-guardduty/types.rb', line 798 class Container < Struct.new( :container_runtime, :id, :name, :image, :image_prefix, :volume_mounts, :security_context) SENSITIVE = [] include Aws::Structure end |
#volume_mounts ⇒ Array<Types::VolumeMount>
Container volume mounts.
798 799 800 801 802 803 804 805 806 807 808 |
# File 'lib/aws-sdk-guardduty/types.rb', line 798 class Container < Struct.new( :container_runtime, :id, :name, :image, :image_prefix, :volume_mounts, :security_context) SENSITIVE = [] include Aws::Structure end |