Interface CfnStream.StreamFileProperty

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

@Stability(Stable) public static interface CfnStream.StreamFileProperty extends software.amazon.jsii.JsiiSerializable
Represents a file to stream.

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.iot.*;
 StreamFileProperty streamFileProperty = StreamFileProperty.builder()
         .fileId(123)
         .s3Location(S3LocationProperty.builder()
                 .bucket("bucket")
                 .key("key")
                 .version("version")
                 .build())
         .build();
 

See Also: