interface CfnDataSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataExchange.CfnDataSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdataexchange#CfnDataSetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.dataexchange.CfnDataSetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_dataexchange.CfnDataSetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dataexchange » CfnDataSetMixinProps |
Properties for CfnDataSetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dataexchange-dataset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dataexchange as dataexchange } from '@aws-cdk/cfn-property-mixins';
const cfnDataSetMixinProps: dataexchange.CfnDataSetMixinProps = {
assetType: 'assetType',
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| asset | string | The type of asset that is added to a data set. |
| description? | string | A description for the data set. |
| name? | string | The name of the data set. |
| tags? | Cfn[] | Tags for the data set. |
assetType?
Type:
string
(optional)
The type of asset that is added to a data set.
description?
Type:
string
(optional)
A description for the data set.
name?
Type:
string
(optional)
The name of the data set.
tags?
Type:
Cfn[]
(optional)
Tags for the data set.

.NET
Go
Java
Python
TypeScript