Show / Hide Table of Contents

Class CfnDataset.SourceDetailProperty

The details of the dataset source associated with the dataset.

Inheritance
object
CfnDataset.SourceDetailProperty
Implements
CfnDataset.ISourceDetailProperty
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.SourceDetailProperty : CfnDataset.ISourceDetailProperty
Syntax (vb)
Public Class CfnDataset.SourceDetailProperty Implements CfnDataset.ISourceDetailProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-sourcedetail.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 sourceDetailProperty = new SourceDetailProperty {
                 Kendra = new KendraSourceDetailProperty {
                     KnowledgeBaseArn = "knowledgeBaseArn",
                     RoleArn = "roleArn"
                 }
             };

Synopsis

Constructors

SourceDetailProperty()

The details of the dataset source associated with the dataset.

Properties

Kendra

Contains details about the Kendra dataset source.

Constructors

SourceDetailProperty()

The details of the dataset source associated with the dataset.

public SourceDetailProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-sourcedetail.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 sourceDetailProperty = new SourceDetailProperty {
                 Kendra = new KendraSourceDetailProperty {
                     KnowledgeBaseArn = "knowledgeBaseArn",
                     RoleArn = "roleArn"
                 }
             };

Properties

Kendra

Contains details about the Kendra dataset source.

public object? Kendra { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDataset.IKendraSourceDetailProperty

Implements

CfnDataset.ISourceDetailProperty
Back to top Generated by DocFX