Interface CfnMembershipPropsMixin.MembershipProtectedQueryResultConfigurationProperty

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

@Stability(Stable) public static interface CfnMembershipPropsMixin.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.cfnpropertymixins.services.cleanrooms.*;
 MembershipProtectedQueryResultConfigurationProperty membershipProtectedQueryResultConfigurationProperty = MembershipProtectedQueryResultConfigurationProperty.builder()
         .outputConfiguration(MembershipProtectedQueryOutputConfigurationProperty.builder()
                 .s3(ProtectedQueryS3OutputConfigurationProperty.builder()
                         .bucket("bucket")
                         .keyPrefix("keyPrefix")
                         .resultFormat("resultFormat")
                         .singleFileOutput(false)
                         .build())
                 .build())
         .roleArn("roleArn")
         .build();
 

See Also: