Show / Hide Table of Contents

Class CfnCampaignPropsMixin.CollectionSchemeProperty

Specifies what data to collect and how often or when to collect it.

Inheritance
object
CfnCampaignPropsMixin.CollectionSchemeProperty
Implements
CfnCampaignPropsMixin.ICollectionSchemeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-collectionscheme.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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-collectionscheme.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.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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-collectionscheme.html#cfn-iotfleetwise-campaign-collectionscheme-conditionbasedcollectionscheme

Type union: either IResolvable or CfnCampaignPropsMixin.IConditionBasedCollectionSchemeProperty

TimeBasedCollectionScheme

Information about a collection scheme that uses a time period to decide how often to collect data.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-collectionscheme.html#cfn-iotfleetwise-campaign-collectionscheme-timebasedcollectionscheme

Type union: either IResolvable or CfnCampaignPropsMixin.ITimeBasedCollectionSchemeProperty

Implements

CfnCampaignPropsMixin.ICollectionSchemeProperty
Back to top Generated by DocFX