interface AssetManifestDockerImageDestination
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AssetManifestDockerImageDestination |
Go | github.com/aws/aws-cdk-go/awscdk/v2#AssetManifestDockerImageDestination |
Java | software.amazon.awscdk.AssetManifestDockerImageDestination |
Python | aws_cdk.AssetManifestDockerImageDestination |
TypeScript (source) | aws-cdk-lib » AssetManifestDockerImageDestination |
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 * as cdk from 'aws-cdk-lib';
declare const assumeRoleAdditionalOptions: any;
const assetManifestDockerImageDestination: cdk.AssetManifestDockerImageDestination = {
repositoryName: 'repositoryName',
// the properties below are optional
dockerTagPrefix: 'dockerTagPrefix',
role: {
assumeRoleArn: 'assumeRoleArn',
// the properties below are optional
assumeRoleAdditionalOptions: {
assumeRoleAdditionalOptionsKey: assumeRoleAdditionalOptions,
},
assumeRoleExternalId: 'assumeRoleExternalId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| repository | string | Repository name where the docker image asset should be written. |
| docker | string | Prefix to add to the asset hash to make the Docker image tag. |
| role? | Role | Role to use to perform the upload. |
repositoryName
Type:
string
Repository name where the docker image asset should be written.
dockerTagPrefix?
Type:
string
(optional, default: '')
Prefix to add to the asset hash to make the Docker image tag.
role?
Type:
Role
(optional, default: No role)
Role to use to perform the upload.

.NET
Go
Java
Python
TypeScript (