@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:51.873Z")
public interface StackAsset
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.pipelines.*; StackAsset stackAsset = StackAsset.builder() .assetId("assetId") .assetManifestPath("assetManifestPath") .assetSelector("assetSelector") .assetType(AssetType.FILE) .isTemplate(false) // the properties below are optional .assetPublishingRoleArn("assetPublishingRoleArn") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
StackAsset.Builder
A builder for
StackAsset |
static class |
StackAsset.Jsii$Proxy
An implementation for
StackAsset |
Modifier and Type | Method and Description |
---|---|
static StackAsset.Builder |
builder() |
java.lang.String |
getAssetId()
Asset identifier.
|
java.lang.String |
getAssetManifestPath()
Absolute asset manifest path.
|
default java.lang.String |
getAssetPublishingRoleArn()
Role ARN to assume to publish.
|
java.lang.String |
getAssetSelector()
Asset selector to pass to `cdk-assets`.
|
AssetType |
getAssetType()
Type of asset to publish.
|
java.lang.Boolean |
getIsTemplate()
Does this asset represent the CloudFormation template for the stack.
|
java.lang.String getAssetId()
java.lang.String getAssetManifestPath()
This needs to be made relative at a later point in time, but when this information is parsed we don't know about the root cloud assembly yet.
java.lang.String getAssetSelector()
AssetType getAssetType()
java.lang.Boolean getIsTemplate()
Default: false
default java.lang.String getAssetPublishingRoleArn()
Default: - No need to assume any role
static StackAsset.Builder builder()
StackAsset.Builder
of StackAsset