Skip to content

DockerImageDestination

Where to publish docker images.

Initializer

import com.aliyun.ros.cdk.assembly.schema.DockerImageDestination;
DockerImageDestination.builder()
//  .region(java.lang.String)
    .imageTag(java.lang.String)
    .repositoryName(java.lang.String)
    .build();

Properties

Name Type Description
region java.lang.String The region where this asset will need to be published.
imageTag java.lang.String Tag of the image to publish.
repositoryName java.lang.String Name of the ECR repository to publish to.

regionOptional

public java.lang.String getRegion();
  • Type: java.lang.String
  • Default: Current region

The region where this asset will need to be published.


imageTagRequired

public java.lang.String getImageTag();
  • Type: java.lang.String

Tag of the image to publish.


repositoryNameRequired

public java.lang.String getRepositoryName();
  • Type: java.lang.String

Name of the ECR repository to publish to.