CfnDataSetProps
- class aws_cdk.aws_dataexchange.CfnDataSetProps(*, asset_type, description, name, tags=None)
Bases:
objectProperties for defining a
CfnDataSet.- Parameters:
asset_type (
str) – The type of asset that is added to a data set.description (
str) – A description for the data set.name (
str) – The name of the data set.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Tags for the data set.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dataexchange-dataset.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_dataexchange as dataexchange cfn_data_set_props = dataexchange.CfnDataSetProps( asset_type="assetType", description="description", name="name", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- asset_type
The type of asset that is added to a data set.
- description
A description for the data set.
- name
The name of the data set.
- tags
Tags for the data set.