Show / Hide Table of Contents

Class CfnDataset.DatasetSourceProperty

The data source for the dataset.

Inheritance
object
CfnDataset.DatasetSourceProperty
Implements
CfnDataset.IDatasetSourceProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataset.DatasetSourceProperty : CfnDataset.IDatasetSourceProperty
Syntax (vb)
Public Class CfnDataset.DatasetSourceProperty Implements 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

Constructors

DatasetSourceProperty()

The data source for the dataset.

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.

Constructors

DatasetSourceProperty()

The data source for the dataset.

public DatasetSourceProperty()
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"
                     }
                 }
             };

Properties

SourceDetail

The details of the dataset source associated with the dataset.

public object? SourceDetail { get; set; }
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.

public string SourceFormat { get; set; }
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.

public string SourceType { get; set; }
Property Value

string

Remarks

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

Implements

CfnDataset.IDatasetSourceProperty
Back to top Generated by DocFX