Interface CfnDashboard.StaticFileProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.StaticFileProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.StaticFileProperty
extends software.amazon.jsii.JsiiSerializable
The static file.
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.quicksight.*;
StaticFileProperty staticFileProperty = StaticFileProperty.builder()
.imageStaticFile(ImageStaticFileProperty.builder()
.staticFileId("staticFileId")
// the properties below are optional
.source(StaticFileSourceProperty.builder()
.s3Options(StaticFileS3SourceOptionsProperty.builder()
.bucketName("bucketName")
.objectKey("objectKey")
.region("region")
.build())
.urlOptions(StaticFileUrlSourceOptionsProperty.builder()
.url("url")
.build())
.build())
.build())
.spatialStaticFile(SpatialStaticFileProperty.builder()
.staticFileId("staticFileId")
// the properties below are optional
.source(StaticFileSourceProperty.builder()
.s3Options(StaticFileS3SourceOptionsProperty.builder()
.bucketName("bucketName")
.objectKey("objectKey")
.region("region")
.build())
.urlOptions(StaticFileUrlSourceOptionsProperty.builder()
.url("url")
.build())
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.StaticFilePropertystatic final classAn implementation forCfnDashboard.StaticFileProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getImageStaticFile
The image static file.Returns union: either
IResolvableorCfnDashboard.ImageStaticFileProperty- See Also:
-
getSpatialStaticFile
The spacial static file.Returns union: either
IResolvableorCfnDashboard.SpatialStaticFileProperty- See Also:
-
builder
-