Interface CfnMembershipPropsMixin.MembershipProtectedJobResultConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMembershipPropsMixin.MembershipProtectedJobResultConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnMembershipPropsMixin
@Stability(Stable)
public static interface CfnMembershipPropsMixin.MembershipProtectedJobResultConfigurationProperty
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.cfnpropertymixins.services.cleanrooms.*;
MembershipProtectedJobResultConfigurationProperty membershipProtectedJobResultConfigurationProperty = MembershipProtectedJobResultConfigurationProperty.builder()
.outputConfiguration(MembershipProtectedJobOutputConfigurationProperty.builder()
.s3(ProtectedJobS3OutputConfigurationInputProperty.builder()
.bucket("bucket")
.keyPrefix("keyPrefix")
.build())
.build())
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMembershipPropsMixin.MembershipProtectedJobResultConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOutputConfiguration
The output configuration for a protected job result.Returns union: either
IResolvableorCfnMembershipPropsMixin.MembershipProtectedJobOutputConfigurationProperty- See Also:
-
getRoleArn
The unique ARN for an IAM role that is used by AWS Clean Rooms to write protected job results to the result location, given by the member who can receive results.- See Also:
-
builder
@Stability(Stable) static CfnMembershipPropsMixin.MembershipProtectedJobResultConfigurationProperty.Builder builder()
-