Interface CfnMembership.MembershipProtectedQueryResultConfigurationProperty

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

@Stability(Stable) public static interface CfnMembership.MembershipProtectedQueryResultConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains configurations for protected query results.

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.*;
 MembershipProtectedQueryResultConfigurationProperty membershipProtectedQueryResultConfigurationProperty = MembershipProtectedQueryResultConfigurationProperty.builder()
         .outputConfiguration(MembershipProtectedQueryOutputConfigurationProperty.builder()
                 .s3(ProtectedQueryS3OutputConfigurationProperty.builder()
                         .bucket("bucket")
                         .resultFormat("resultFormat")
                         // the properties below are optional
                         .keyPrefix("keyPrefix")
                         .build())
                 .build())
         // the properties below are optional
         .roleArn("roleArn")
         .build();
 

See Also: