Interface ContainerImageConfig

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:16.423Z") @Stability(Stable) public interface ContainerImageConfig extends software.amazon.jsii.JsiiSerializable
The configuration for creating a container image.

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.ecs.*;
 ContainerImageConfig containerImageConfig = ContainerImageConfig.builder()
         .imageName("imageName")
         // the properties below are optional
         .repositoryCredentials(RepositoryCredentialsProperty.builder()
                 .credentialsParameter("credentialsParameter")
                 .build())
         .build();