Interface ImageRepository

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ImageRepository.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:40.055Z") @Stability(Experimental) public interface ImageRepository extends software.amazon.jsii.JsiiSerializable
(experimental) Describes a source image repository.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.apprunner.*;
 ImageRepository imageRepository = ImageRepository.builder()
         .imageIdentifier("imageIdentifier")
         .imageRepositoryType(ImageRepositoryType.ECR_PUBLIC)
         // the properties below are optional
         .imageConfiguration(ImageConfiguration.builder()
                 .environment(Map.of(
                         "environmentKey", "environment"))
                 .port(123)
                 .startCommand("startCommand")
                 .build())
         .build();
 

See Also: