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