Show / Hide Table of Contents

Interface ICfnDatasetProps

Properties for defining a CfnDataset.

Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDatasetProps
Syntax (vb)
Public Interface ICfnDatasetProps
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.IoTSiteWise;

             var cfnDatasetProps = new CfnDatasetProps {
                 DatasetName = "datasetName",
                 DatasetSource = new DatasetSourceProperty {
                     SourceFormat = "sourceFormat",
                     SourceType = "sourceType",

                     // the properties below are optional
                     SourceDetail = new SourceDetailProperty {
                         Kendra = new KendraSourceDetailProperty {
                             KnowledgeBaseArn = "knowledgeBaseArn",
                             RoleArn = "roleArn"
                         }
                     }
                 },

                 // the properties below are optional
                 DatasetDescription = "datasetDescription",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

DatasetDescription

A description about the dataset, and its functionality.

DatasetName

The name of the dataset.

DatasetSource

The data source for the dataset.

Tags

A list of key-value pairs that contain metadata for the access policy.

Properties

DatasetDescription

A description about the dataset, and its functionality.

string? DatasetDescription { get; }
Property Value

string

Remarks

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

DatasetName

The name of the dataset.

string DatasetName { get; }
Property Value

string

Remarks

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

DatasetSource

The data source for the dataset.

object DatasetSource { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDataset.IDatasetSourceProperty

Tags

A list of key-value pairs that contain metadata for the access policy.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX