Interface CfnAnalysisTemplateProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysisTemplateProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:05.299Z")
@Stability(Stable)
public interface CfnAnalysisTemplateProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAnalysisTemplate.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cleanrooms.*;
CfnAnalysisTemplateProps cfnAnalysisTemplateProps = CfnAnalysisTemplateProps.builder()
.format("format")
.membershipIdentifier("membershipIdentifier")
.name("name")
.source(AnalysisSourceProperty.builder()
.text("text")
.build())
// the properties below are optional
.analysisParameters(List.of(AnalysisParameterProperty.builder()
.name("name")
.type("type")
// the properties below are optional
.defaultValue("defaultValue")
.build()))
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysisTemplatePropsstatic final classAn implementation forCfnAnalysisTemplateProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe parameters of the analysis template.default StringThe description of the analysis template.The format of the analysis template.The identifier for a membership resource.getName()The name of the analysis template.The source of the analysis template.getTags()An optional label that you can assign to a resource when you create it.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFormat
The format of the analysis template.- See Also:
-
getMembershipIdentifier
The identifier for a membership resource.- See Also:
-
getName
The name of the analysis template.- See Also:
-
getSource
The source of the analysis template.- See Also:
-
getAnalysisParameters
The parameters of the analysis template.- See Also:
-
getDescription
The description of the analysis template.- See Also:
-
getTags
An optional label that you can assign to a resource when you create it.Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
- See Also:
-
builder
- Returns:
- a
CfnAnalysisTemplateProps.BuilderofCfnAnalysisTemplateProps
-