Class CfnPipeline.DatastoreProperty
The datastore activity that specifies where to store the processed data.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPipeline.DatastoreProperty : CfnPipeline.IDatastoreProperty
Syntax (vb)
Public Class CfnPipeline.DatastoreProperty Implements CfnPipeline.IDatastoreProperty
Remarks
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.IoTAnalytics;
var datastoreProperty = new DatastoreProperty {
DatastoreName = "datastoreName",
Name = "name"
};
Synopsis
Constructors
DatastoreProperty() | The datastore activity that specifies where to store the processed data. |
Properties
DatastoreName | The name of the data store where processed messages are stored. |
Name | The name of the datastore activity. |
Constructors
DatastoreProperty()
The datastore activity that specifies where to store the processed data.
public DatastoreProperty()
Remarks
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.IoTAnalytics;
var datastoreProperty = new DatastoreProperty {
DatastoreName = "datastoreName",
Name = "name"
};
Properties
DatastoreName
The name of the data store where processed messages are stored.
public string DatastoreName { get; set; }
Property Value
Remarks
Name
The name of the datastore activity.
public string Name { get; set; }