Interface CfnDataSourcePropsMixin.S3ParametersProperty

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

@Stability(Stable) public static interface CfnDataSourcePropsMixin.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.cfnpropertymixins.services.quicksight.*;
 S3ParametersProperty s3ParametersProperty = S3ParametersProperty.builder()
         .manifestFileLocation(ManifestFileLocationProperty.builder()
                 .bucket("bucket")
                 .key("key")
                 .build())
         .roleArn("roleArn")
         .build();
 

See Also: