Class CfnChannelMixinProps
Properties for CfnChannelPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.IoTAnalytics
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnChannelMixinProps : ICfnChannelMixinProps
Syntax (vb)
Public Class CfnChannelMixinProps Implements ICfnChannelMixinProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.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.IoTAnalytics;
var serviceManagedS3;
var cfnChannelMixinProps = new CfnChannelMixinProps {
ChannelName = "channelName",
ChannelStorage = new ChannelStorageProperty {
CustomerManagedS3 = new CustomerManagedS3Property {
Bucket = "bucket",
KeyPrefix = "keyPrefix",
RoleArn = "roleArn"
},
ServiceManagedS3 = serviceManagedS3
},
RetentionPeriod = new RetentionPeriodProperty {
NumberOfDays = 123,
Unlimited = false
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnChannelMixinProps() | Properties for CfnChannelPropsMixin. |
Properties
| ChannelName | The name of the channel. |
| ChannelStorage | Where channel data is stored. |
| RetentionPeriod | How long, in days, message data is kept for the channel. |
| Tags | Metadata which can be used to manage the channel. |
Constructors
CfnChannelMixinProps()
Properties for CfnChannelPropsMixin.
public CfnChannelMixinProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.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.IoTAnalytics;
var serviceManagedS3;
var cfnChannelMixinProps = new CfnChannelMixinProps {
ChannelName = "channelName",
ChannelStorage = new ChannelStorageProperty {
CustomerManagedS3 = new CustomerManagedS3Property {
Bucket = "bucket",
KeyPrefix = "keyPrefix",
RoleArn = "roleArn"
},
ServiceManagedS3 = serviceManagedS3
},
RetentionPeriod = new RetentionPeriodProperty {
NumberOfDays = 123,
Unlimited = false
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
ChannelName
The name of the channel.
public string? ChannelName { get; set; }
Property Value
Remarks
ChannelStorage
Where channel data is stored.
public object? ChannelStorage { get; set; }
Property Value
Remarks
RetentionPeriod
How long, in days, message data is kept for the channel.
public object? RetentionPeriod { get; set; }
Property Value
Remarks
Tags
Metadata which can be used to manage the channel.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
For more information, see Tag .