Interface CfnAnalysisTemplate.AnalysisParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysisTemplate.AnalysisParameterProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysisTemplate
@Stability(Stable)
public static interface CfnAnalysisTemplate.AnalysisParameterProperty
extends software.amazon.jsii.JsiiSerializable
Optional.
The member who can query can provide this placeholder for a literal data value in an analysis template.
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.*;
AnalysisParameterProperty analysisParameterProperty = AnalysisParameterProperty.builder()
.name("name")
.type("type")
// the properties below are optional
.defaultValue("defaultValue")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysisTemplate.AnalysisParameterPropertystatic final classAn implementation forCfnAnalysisTemplate.AnalysisParameterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the parameter.The name must use only alphanumeric, underscore (_), or hyphen (-) characters but cannot start or end with a hyphen.
- See Also:
-
getType
The type of parameter.- See Also:
-
getDefaultValue
Optional.The default value that is applied in the analysis template. The member who can query can override this value in the query editor.
- See Also:
-
builder
-