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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMembership.MembershipProtectedJobOutputConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3
Contains the configuration to write the job results to S3.Returns union: either
IResolvableorCfnMembership.ProtectedJobS3OutputConfigurationInputProperty- See Also:
-
builder
@Stability(Stable) static CfnMembership.MembershipProtectedJobOutputConfigurationProperty.Builder builder()
-