Interface AssetManifestDockerImageDestination

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:11.295Z") @Stability(Stable) public interface AssetManifestDockerImageDestination extends software.amazon.jsii.JsiiSerializable
The destination for a docker image asset, when it is given to the AssetManifestBuilder.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 AssetManifestDockerImageDestination assetManifestDockerImageDestination = AssetManifestDockerImageDestination.builder()
         .repositoryName("repositoryName")
         // the properties below are optional
         .dockerTagPrefix("dockerTagPrefix")
         .role(RoleOptions.builder()
                 .assumeRoleArn("assumeRoleArn")
                 // the properties below are optional
                 .assumeRoleExternalId("assumeRoleExternalId")
                 .build())
         .build();