Show / Hide Table of Contents

Interface CfnDataset.IDatasetSourceProperty

The data source for the dataset.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-datasetsource.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 datasetSourceProperty = new DatasetSourceProperty {
                 SourceFormat = "sourceFormat",
                 SourceType = "sourceType",

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

Synopsis

Properties

SourceDetail

The details of the dataset source associated with the dataset.

SourceFormat

The format of the dataset source associated with the dataset.

SourceType

The type of data source for the dataset.

Properties

SourceDetail

The details of the dataset source associated with the dataset.

object? SourceDetail { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDataset.ISourceDetailProperty

SourceFormat

The format of the dataset source associated with the dataset.

string SourceFormat { get; }
Property Value

string

Remarks

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

SourceType

The type of data source for the dataset.

string SourceType { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX