interface CfnDataSetProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataExchange.CfnDataSetProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdataexchange#CfnDataSetProps |
Java | software.amazon.awscdk.services.dataexchange.CfnDataSetProps |
Python | aws_cdk.aws_dataexchange.CfnDataSetProps |
TypeScript | aws-cdk-lib » aws_dataexchange » CfnDataSetProps |
Properties for defining a CfnDataSet.
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-lib';
const cfnDataSetProps: dataexchange.CfnDataSetProps = {
assetType: 'assetType',
description: 'description',
name: 'name',
// the properties below are optional
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
The type of asset that is added to a data set.
description
Type:
string
A description for the data set.
name
Type:
string
The name of the data set.
tags?
Type:
Cfn[]
(optional)
Tags for the data set.

.NET
Go
Java
Python
TypeScript