CfnDatasetMixinProps

class aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnDatasetMixinProps(*, dataset_description=None, dataset_name=None, dataset_source=None, tags=None)

Bases: object

Properties for CfnDatasetPropsMixin.

Parameters:
  • dataset_description (Optional[str]) – A description about the dataset, and its functionality.

  • dataset_name (Optional[str]) – The name of the dataset.

  • dataset_source (Union[IResolvable, DatasetSourceProperty, Dict[str, Any], None]) – The data source for the dataset.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – 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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_iotsitewise import mixins as iotsitewise_mixins

cfn_dataset_mixin_props = iotsitewise_mixins.CfnDatasetMixinProps(
    dataset_description="datasetDescription",
    dataset_name="datasetName",
    dataset_source=iotsitewise_mixins.CfnDatasetPropsMixin.DatasetSourceProperty(
        source_detail=iotsitewise_mixins.CfnDatasetPropsMixin.SourceDetailProperty(
            kendra=iotsitewise_mixins.CfnDatasetPropsMixin.KendraSourceDetailProperty(
                knowledge_base_arn="knowledgeBaseArn",
                role_arn="roleArn"
            )
        ),
        source_format="sourceFormat",
        source_type="sourceType"
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

dataset_description

A description about the dataset, and its functionality.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html#cfn-iotsitewise-dataset-datasetdescription

dataset_name

The name of the dataset.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html#cfn-iotsitewise-dataset-datasetname

dataset_source

The data source for the dataset.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html#cfn-iotsitewise-dataset-datasetsource

tags

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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html#cfn-iotsitewise-dataset-tags