Interface CfnAnalysis.StaticFileS3SourceOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnalysis.StaticFileS3SourceOptionsProperty.Jsii$Proxy
Enclosing class:
CfnAnalysis

@Stability(Stable) public static interface CfnAnalysis.StaticFileS3SourceOptionsProperty extends software.amazon.jsii.JsiiSerializable
The structure that contains the Amazon S3 location to download the static file from.

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.*;
 StaticFileS3SourceOptionsProperty staticFileS3SourceOptionsProperty = StaticFileS3SourceOptionsProperty.builder()
         .bucketName("bucketName")
         .objectKey("objectKey")
         .region("region")
         .build();
 

See Also: