Interface CfnDashboard.SpatialStaticFileProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.SpatialStaticFileProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.SpatialStaticFileProperty
extends software.amazon.jsii.JsiiSerializable
A static file that contains the geospatial data.
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.*;
SpatialStaticFileProperty spatialStaticFileProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.SpatialStaticFilePropertystatic final classAn implementation forCfnDashboard.SpatialStaticFileProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStaticFileId
The ID of the spatial static file.- See Also:
-
getSource
The source of the spatial static file.Returns union: either
IResolvableorCfnDashboard.StaticFileSourceProperty- See Also:
-
builder
-