Interface CfnMembership.MembershipProtectedJobOutputConfigurationProperty

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

@Stability(Stable) public static interface CfnMembership.MembershipProtectedJobOutputConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains configurations for protected job 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.*;
 MembershipProtectedJobOutputConfigurationProperty membershipProtectedJobOutputConfigurationProperty = MembershipProtectedJobOutputConfigurationProperty.builder()
         .s3(ProtectedJobS3OutputConfigurationInputProperty.builder()
                 .bucket("bucket")
                 // the properties below are optional
                 .keyPrefix("keyPrefix")
                 .build())
         .build();
 

See Also: