Interface CfnDataSource.S3ParametersProperty

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

@Stability(Stable) public static interface CfnDataSource.S3ParametersProperty extends software.amazon.jsii.JsiiSerializable
The parameters for S3.

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.*;
 S3ParametersProperty s3ParametersProperty = S3ParametersProperty.builder()
         .manifestFileLocation(ManifestFileLocationProperty.builder()
                 .bucket("bucket")
                 .key("key")
                 .build())
         // the properties below are optional
         .roleArn("roleArn")
         .build();
 

See Also: