Interface CfnMembership.MembershipProtectedQueryOutputConfigurationProperty

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

@Stability(Stable) public static interface CfnMembership.MembershipProtectedQueryOutputConfigurationProperty 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.*;
 MembershipProtectedQueryOutputConfigurationProperty membershipProtectedQueryOutputConfigurationProperty = MembershipProtectedQueryOutputConfigurationProperty.builder()
         .s3(ProtectedQueryS3OutputConfigurationProperty.builder()
                 .bucket("bucket")
                 .resultFormat("resultFormat")
                 // the properties below are optional
                 .keyPrefix("keyPrefix")
                 .build())
         .build();
 

See Also: