Interface CfnMembership.ProtectedQueryS3OutputConfigurationProperty

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

@Stability(Stable) public static interface CfnMembership.ProtectedQueryS3OutputConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains the configuration to write the query results to 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.cleanrooms.*;
 ProtectedQueryS3OutputConfigurationProperty protectedQueryS3OutputConfigurationProperty = ProtectedQueryS3OutputConfigurationProperty.builder()
         .bucket("bucket")
         .resultFormat("resultFormat")
         // the properties below are optional
         .keyPrefix("keyPrefix")
         .build();
 

See Also: