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