Class: Aws::ElasticBeanstalk::Types::ImageSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::ImageSource
- Defined in:
- gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb
Overview
The location of a container image.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#uri ⇒ String
The URI of the container image, including the registry, the repository, and the image tag or digest.
Instance Attribute Details
#uri ⇒ String
The URI of the container image, including the registry, the
repository, and the image tag or digest. For example,
111122223333.dkr.ecr.us-east-1.amazonaws.com/my-repository:latest.
2819 2820 2821 2822 2823 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 2819 class ImageSource < Struct.new( :uri) SENSITIVE = [] include Aws::Structure end |