Interface CfnMemory.StreamDeliveryResourcesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMemory.StreamDeliveryResourcesProperty.Jsii$Proxy
Enclosing class:
CfnMemory

@Stability(Stable) public static interface CfnMemory.StreamDeliveryResourcesProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.bedrockagentcore.*;
 StreamDeliveryResourcesProperty streamDeliveryResourcesProperty = StreamDeliveryResourcesProperty.builder()
         .resources(List.of(StreamDeliveryResourceProperty.builder()
                 .kinesis(KinesisResourceProperty.builder()
                         .contentConfigurations(List.of(ContentConfigurationProperty.builder()
                                 .type("type")
                                 // the properties below are optional
                                 .level("level")
                                 .build()))
                         .dataStreamArn("dataStreamArn")
                         .build())
                 .build()))
         .build();
 

See Also: