CfnDataSetMixinProps
- class aws_cdk.cfn_property_mixins.aws_dataexchange.CfnDataSetMixinProps(*, asset_type=None, description=None, name=None, tags=None)
Bases:
objectProperties for CfnDataSetPropsMixin.
- Parameters:
asset_type (
Optional[str]) – The type of asset that is added to a data set.description (
Optional[str]) – A description for the data set.name (
Optional[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.cfn_property_mixins import aws_dataexchange as dataexchange cfn_data_set_mixin_props = dataexchange.CfnDataSetMixinProps( asset_type="assetType", description="description", name="name", 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.