interface AnalysisParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnAnalysisTemplate.AnalysisParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnAnalysisTemplate_AnalysisParameterProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnAnalysisTemplate.AnalysisParameterProperty |
Python | aws_cdk.aws_cleanrooms.CfnAnalysisTemplate.AnalysisParameterProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnAnalysisTemplate » 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-lib';
const analysisParameterProperty: cleanrooms.CfnAnalysisTemplate.AnalysisParameterProperty = {
name: 'name',
type: 'type',
// the properties below are optional
defaultValue: 'defaultValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the parameter. |
| type | string | The type of parameter. |
| default | string | Optional. |
name
Type:
string
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
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.

.NET
Go
Java
Python
TypeScript