Class: Aws::ElasticBeanstalk::Types::ImageConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::ImageConfiguration
- Defined in:
- gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb
Overview
The source of the container image for an application version: an image that you built and pushed to a container registry yourself, or settings for Elastic Beanstalk to build one from your source bundle.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#build ⇒ Types::ImageBuildConfiguration
Settings that Elastic Beanstalk uses to build a container image from the source bundle of the application version.
-
#source ⇒ Types::ImageSource
The location of a container image that you built and pushed to a container registry yourself.
Instance Attribute Details
#build ⇒ Types::ImageBuildConfiguration
Settings that Elastic Beanstalk uses to build a container image from the source bundle of the application version.
If you specify Build, also specify the request's SourceBundle
parameter, and don't specify Source.
2802 2803 2804 2805 2806 2807 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 2802 class ImageConfiguration < Struct.new( :source, :build) SENSITIVE = [] include Aws::Structure end |
#source ⇒ Types::ImageSource
The location of a container image that you built and pushed to a container registry yourself. Elastic Beanstalk deploys the image without a build step.
If you specify Source, don't specify Build or the request's
SourceBundle parameter.
2802 2803 2804 2805 2806 2807 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 2802 class ImageConfiguration < Struct.new( :source, :build) SENSITIVE = [] include Aws::Structure end |