Interface ImageStagingLocation

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

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-06-13T09:19:48.662Z") @Stability(Experimental) public interface ImageStagingLocation extends software.amazon.jsii.JsiiSerializable
(experimental) Information returned by the Staging Stack for each image asset.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.app.staging.synthesizer.alpha.*;
 import software.amazon.awscdk.*;
 Stack stack;
 ImageStagingLocation imageStagingLocation = ImageStagingLocation.builder()
         .repoName("repoName")
         // the properties below are optional
         .assumeRoleArn("assumeRoleArn")
         .dependencyStack(stack)
         .build();
 
  • Method Details

    • getRepoName

      @Stability(Experimental) @NotNull String getRepoName()
      (experimental) The name of the staging repository.
    • getAssumeRoleArn

      @Stability(Experimental) @Nullable default String getAssumeRoleArn()
      (experimental) The arn to assume to write files to this repository.

      Default: - Don't assume a role

    • getDependencyStack

      @Stability(Experimental) @Nullable default Stack getDependencyStack()
      (experimental) The stack that creates this repository (leads to dependencies on it).

      Default: - Don't add dependencies

    • builder

      @Stability(Experimental) static ImageStagingLocation.Builder builder()
      Returns:
      a ImageStagingLocation.Builder of ImageStagingLocation