Interface CfnDashboard.StaticFileSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.StaticFileSourceProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.StaticFileSourceProperty
extends software.amazon.jsii.JsiiSerializable
The source of 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.*;
StaticFileSourceProperty staticFileSourceProperty = StaticFileSourceProperty.builder()
.s3Options(StaticFileS3SourceOptionsProperty.builder()
.bucketName("bucketName")
.objectKey("objectKey")
.region("region")
.build())
.urlOptions(StaticFileUrlSourceOptionsProperty.builder()
.url("url")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.StaticFileSourcePropertystatic final classAn implementation forCfnDashboard.StaticFileSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Options
The structure that contains the Amazon S3 location to download the static file from.Returns union: either
IResolvableorCfnDashboard.StaticFileS3SourceOptionsProperty- See Also:
-
getUrlOptions
The structure that contains the URL to download the static file from.Returns union: either
IResolvableorCfnDashboard.StaticFileUrlSourceOptionsProperty- See Also:
-
builder
-