interface CfnDatasetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTSiteWise.Mixins.CfnDatasetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotsitewise/mixins#CfnDatasetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotsitewise.mixins.CfnDatasetMixinProps |
Python | aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnDatasetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotsitewise » mixins » CfnDatasetMixinProps |
Properties for CfnDatasetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotsitewise_mixins } from '@aws-cdk/mixins-preview/aws-iotsitewise';
const cfnDatasetMixinProps: iotsitewise_mixins.CfnDatasetMixinProps = {
datasetDescription: 'datasetDescription',
datasetName: 'datasetName',
datasetSource: {
sourceDetail: {
kendra: {
knowledgeBaseArn: 'knowledgeBaseArn',
roleArn: 'roleArn',
},
},
sourceFormat: 'sourceFormat',
sourceType: 'sourceType',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| dataset | string | A description about the dataset, and its functionality. |
| dataset | string | The name of the dataset. |
| dataset | IResolvable | Dataset | The data source for the dataset. |
| tags? | Cfn[] | A list of key-value pairs that contain metadata for the access policy. |
datasetDescription?
Type:
string
(optional)
A description about the dataset, and its functionality.
datasetName?
Type:
string
(optional)
The name of the dataset.
datasetSource?
Type:
IResolvable | Dataset
(optional)
The data source for the dataset.
tags?
Type:
Cfn[]
(optional)
A list of key-value pairs that contain metadata for the access policy.
For more information, see Tagging your AWS IoT SiteWise resources in the AWS IoT SiteWise User Guide .

.NET
Go
Java
Python
TypeScript