Class: Aws::CodeBuild::Types::EnvironmentImage
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::EnvironmentImage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Information about a Docker image that is managed by CodeBuild.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
The description of the Docker image.
-
#name ⇒ String
The name of the Docker image.
-
#versions ⇒ Array<String>
A list of environment image versions.
Instance Attribute Details
#description ⇒ String
The description of the Docker image.
2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2249 class EnvironmentImage < Struct.new( :name, :description, :versions) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the Docker image.
2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2249 class EnvironmentImage < Struct.new( :name, :description, :versions) SENSITIVE = [] include Aws::Structure end |
#versions ⇒ Array<String>
A list of environment image versions.
2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2249 class EnvironmentImage < Struct.new( :name, :description, :versions) SENSITIVE = [] include Aws::Structure end |