Interface CfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysisTemplatePropsMixin
@Stability(Stable)
public static interface CfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactsProperty
extends software.amazon.jsii.JsiiSerializable
The analysis template artifacts.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.*;
AnalysisTemplateArtifactsProperty analysisTemplateArtifactsProperty = AnalysisTemplateArtifactsProperty.builder()
.additionalArtifacts(List.of(AnalysisTemplateArtifactProperty.builder()
.location(S3LocationProperty.builder()
.bucket("bucket")
.key("key")
.build())
.build()))
.entryPoint(AnalysisTemplateArtifactProperty.builder()
.location(S3LocationProperty.builder()
.bucket("bucket")
.key("key")
.build())
.build())
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdditionalArtifacts
Additional artifacts for the analysis template.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactProperty>- See Also:
-
getEntryPoint
The entry point for the analysis template artifacts.Returns union: either
IResolvableorCfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactProperty- See Also:
-
getRoleArn
The role ARN for the analysis template artifacts.- See Also:
-
builder
@Stability(Stable) static CfnAnalysisTemplatePropsMixin.AnalysisTemplateArtifactsProperty.Builder builder()
-