interface AnalysisParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms.CfnAnalysisTemplatePropsMixin.AnalysisParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanrooms#CfnAnalysisTemplatePropsMixin_AnalysisParameterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.CfnAnalysisTemplatePropsMixin.AnalysisParameterProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanrooms.CfnAnalysisTemplatePropsMixin.AnalysisParameterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanrooms » CfnAnalysisTemplatePropsMixin » AnalysisParameterProperty |
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 { aws_cleanrooms as cleanrooms } from '@aws-cdk/cfn-property-mixins';
const analysisParameterProperty: cleanrooms.CfnAnalysisTemplatePropsMixin.AnalysisParameterProperty = {
defaultValue: 'defaultValue',
name: 'name',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| default | string | Optional. |
| name? | string | The name of the parameter. |
| type? | string | The type of parameter. |
defaultValue?
Type:
string
(optional)
Optional.
The default value that is applied in the analysis template. The member who can query can override this value in the query editor.
name?
Type:
string
(optional)
The name of the parameter.
The name must use only alphanumeric, underscore (_), or hyphen (-) characters but cannot start or end with a hyphen.
type?
Type:
string
(optional)
The type of parameter.

.NET
Go
Java
Python
TypeScript