Interface CfnAnalysisTemplate.IAnalysisParameterProperty
Optional.
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAnalysisTemplate.IAnalysisParameterProperty
Syntax (vb)
Public Interface CfnAnalysisTemplate.IAnalysisParameterProperty
Remarks
The member who can query can provide this placeholder for a literal data value in an analysis template.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_cleanrooms;
var analysisParameterProperty = new AnalysisParameterProperty {
Name = "name",
Type = "type",
// the properties below are optional
DefaultValue = "defaultValue"
};
Synopsis
Properties
DefaultValue | Optional. |
Name | The name of the parameter. |
Type | The type of parameter. |
Properties
DefaultValue
Optional.
string? DefaultValue { get; }
Property Value
Remarks
The default value that is applied in the analysis template. The member who can query can override this value in the query editor.
Name
The name of the parameter.
string Name { get; }
Property Value
Remarks
The name must use only alphanumeric, underscore (_), or hyphen (-) characters but cannot start or end with a hyphen.
Type
The type of parameter.
string Type { get; }