Class CfnMemory.StreamDeliveryResourceProperty
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMemory.StreamDeliveryResourceProperty : CfnMemory.IStreamDeliveryResourceProperty
Syntax (vb)
Public Class CfnMemory.StreamDeliveryResourceProperty Implements CfnMemory.IStreamDeliveryResourceProperty
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.BedrockAgentCore;
var streamDeliveryResourceProperty = new StreamDeliveryResourceProperty {
Kinesis = new KinesisResourceProperty {
ContentConfigurations = new [] { new ContentConfigurationProperty {
Type = "type",
// the properties below are optional
Level = "level"
} },
DataStreamArn = "dataStreamArn"
}
};
Synopsis
Constructors
| StreamDeliveryResourceProperty() |
Properties
| Kinesis |
Constructors
StreamDeliveryResourceProperty()
public StreamDeliveryResourceProperty()
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.BedrockAgentCore;
var streamDeliveryResourceProperty = new StreamDeliveryResourceProperty {
Kinesis = new KinesisResourceProperty {
ContentConfigurations = new [] { new ContentConfigurationProperty {
Type = "type",
// the properties below are optional
Level = "level"
} },
DataStreamArn = "dataStreamArn"
}
};
Properties
Kinesis
public object? Kinesis { get; set; }