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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStream.StreamFilePropertystatic final classAn implementation forCfnStream.StreamFileProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFileId
The file ID.- See Also:
-
getS3Location
The location of the file in S3.Returns union: either
IResolvableorCfnStream.S3LocationProperty- See Also:
-
builder
-