interface DataSetIdentifierDeclarationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.DataSetIdentifierDeclarationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_DataSetIdentifierDeclarationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.DataSetIdentifierDeclarationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.DataSetIdentifierDeclarationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » DataSetIdentifierDeclarationProperty |
A data set.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const dataSetIdentifierDeclarationProperty: quicksight_mixins.CfnAnalysisPropsMixin.DataSetIdentifierDeclarationProperty = {
dataSetArn: 'dataSetArn',
identifier: 'identifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The Amazon Resource Name (ARN) of the data set. |
| identifier? | string | The identifier of the data set, typically the data set's name. |
dataSetArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the data set.
identifier?
Type:
string
(optional)
The identifier of the data set, typically the data set's name.

.NET
Go
Java
Python
TypeScript