@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.895Z") @Stability(value=Stable) public class AssetManifestArtifact extends CloudArtifact
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cloudassembly.schema.*;
import software.amazon.awscdk.cxapi.*;
CloudAssembly cloudAssembly;
AssetManifestArtifact assetManifestArtifact = AssetManifestArtifact.Builder.create(cloudAssembly, "name")
.type(ArtifactType.NONE)
// the properties below are optional
.dependencies(List.of("dependencies"))
.displayName("displayName")
.environment("environment")
.metadata(Map.of(
"metadataKey", List.of(MetadataEntry.builder()
.type("type")
// the properties below are optional
.data("data")
.trace(List.of("trace"))
.build())))
.properties(AwsCloudFormationStackProperties.builder()
.templateFile("templateFile")
// the properties below are optional
.assumeRoleArn("assumeRoleArn")
.assumeRoleExternalId("assumeRoleExternalId")
.bootstrapStackVersionSsmParameter("bootstrapStackVersionSsmParameter")
.cloudFormationExecutionRoleArn("cloudFormationExecutionRoleArn")
.lookupRole(BootstrapRole.builder()
.arn("arn")
// the properties below are optional
.assumeRoleExternalId("assumeRoleExternalId")
.bootstrapStackVersionSsmParameter("bootstrapStackVersionSsmParameter")
.requiresBootstrapStackVersion(123)
.build())
.parameters(Map.of(
"parametersKey", "parameters"))
.requiresBootstrapStackVersion(123)
.stackName("stackName")
.stackTemplateAssetObjectUrl("stackTemplateAssetObjectUrl")
.tags(Map.of(
"tagsKey", "tags"))
.terminationProtection(false)
.validateOnSynth(false)
.build())
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
AssetManifestArtifact.Builder
A fluent builder for
AssetManifestArtifact. |
| Modifier | Constructor and Description |
|---|---|
|
AssetManifestArtifact(CloudAssembly assembly,
String name,
ArtifactManifest artifact) |
protected |
AssetManifestArtifact(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
AssetManifestArtifact(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getBootstrapStackVersionSsmParameter()
Name of SSM parameter with bootstrap stack version.
|
String |
getFile()
The file name of the asset manifest.
|
Number |
getRequiresBootstrapStackVersion()
Version of bootstrap stack required to deploy this stack.
|
static Boolean |
isAssetManifestArtifact(Object art)
Checks if `art` is an instance of this class.
|
findMetadataByType, fromManifest, getAssembly, getDependencies, getHierarchicalId, getId, getManifest, getMessagesjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetprotected AssetManifestArtifact(software.amazon.jsii.JsiiObjectRef objRef)
protected AssetManifestArtifact(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public AssetManifestArtifact(@NotNull
CloudAssembly assembly,
@NotNull
String name,
@NotNull
ArtifactManifest artifact)
assembly - This parameter is required.name - This parameter is required.artifact - This parameter is required.@Stability(value=Stable) @NotNull public static Boolean isAssetManifestArtifact(@NotNull Object art)
Use this method instead of instanceof to properly detect AssetManifestArtifact
instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the cx-api library on
disk are seen as independent, completely different libraries. As a
consequence, the class AssetManifestArtifact in each copy of the cx-api library
is seen as a different class, and an instance of one class will not test as
instanceof the other class. npm install will not create installations
like this, but users may manually symlink construct libraries together or
use a monorepo tool: in those cases, multiple copies of the cx-api
library can be accidentally installed, and instanceof will behave
unpredictably. It is safest to avoid using instanceof, and using
this type-testing method instead.
art - This parameter is required.@Stability(value=Stable) @NotNull public String getFile()
@Stability(value=Stable) @Nullable public String getBootstrapStackVersionSsmParameter()
Default: - Discover SSM parameter by reading stack
@Stability(value=Stable) @Nullable public Number getRequiresBootstrapStackVersion()
Copyright © 2022. All rights reserved.