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.
2254 2255 2256 2257 2258 2259 2260 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2254 class EnvironmentImage < Struct.new( :name, :description, :versions) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the Docker image.
2254 2255 2256 2257 2258 2259 2260 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2254 class EnvironmentImage < Struct.new( :name, :description, :versions) SENSITIVE = [] include Aws::Structure end |
#versions ⇒ Array<String>
A list of environment image versions.
2254 2255 2256 2257 2258 2259 2260 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2254 class EnvironmentImage < Struct.new( :name, :description, :versions) SENSITIVE = [] include Aws::Structure end |