Class: Aws::ElasticBeanstalk::Types::ImageConfiguration

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

Instance Attribute Details

#buildTypes::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

#sourceTypes::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.

Returns:



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