Class CfnCampaignPropsMixin.CollectionSchemeProperty
Specifies what data to collect and how often or when to collect it.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.IoTFleetWise
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnCampaignPropsMixin.CollectionSchemeProperty : CfnCampaignPropsMixin.ICollectionSchemeProperty
Syntax (vb)
Public Class CfnCampaignPropsMixin.CollectionSchemeProperty Implements CfnCampaignPropsMixin.ICollectionSchemeProperty
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.CfnPropertyMixins.AWS.IoTFleetWise;
var collectionSchemeProperty = new CollectionSchemeProperty {
ConditionBasedCollectionScheme = new ConditionBasedCollectionSchemeProperty {
ConditionLanguageVersion = 123,
Expression = "expression",
MinimumTriggerIntervalMs = 123,
TriggerMode = "triggerMode"
},
TimeBasedCollectionScheme = new TimeBasedCollectionSchemeProperty {
PeriodMs = 123
}
};
Synopsis
Constructors
| CollectionSchemeProperty() | Specifies what data to collect and how often or when to collect it. |
Properties
| ConditionBasedCollectionScheme | Information about a collection scheme that uses a simple logical expression to recognize what data to collect. |
| TimeBasedCollectionScheme | Information about a collection scheme that uses a time period to decide how often to collect data. |
Constructors
CollectionSchemeProperty()
Specifies what data to collect and how often or when to collect it.
public CollectionSchemeProperty()
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.CfnPropertyMixins.AWS.IoTFleetWise;
var collectionSchemeProperty = new CollectionSchemeProperty {
ConditionBasedCollectionScheme = new ConditionBasedCollectionSchemeProperty {
ConditionLanguageVersion = 123,
Expression = "expression",
MinimumTriggerIntervalMs = 123,
TriggerMode = "triggerMode"
},
TimeBasedCollectionScheme = new TimeBasedCollectionSchemeProperty {
PeriodMs = 123
}
};
Properties
ConditionBasedCollectionScheme
Information about a collection scheme that uses a simple logical expression to recognize what data to collect.
public object? ConditionBasedCollectionScheme { get; set; }
Property Value
Remarks
TimeBasedCollectionScheme
Information about a collection scheme that uses a time period to decide how often to collect data.
public object? TimeBasedCollectionScheme { get; set; }