Interface CfnMembershipProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMembershipProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:05.337Z")
@Stability(Stable)
public interface CfnMembershipProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnMembership.
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.*;
CfnMembershipProps cfnMembershipProps = CfnMembershipProps.builder()
.collaborationIdentifier("collaborationIdentifier")
.queryLogStatus("queryLogStatus")
// the properties below are optional
.defaultResultConfiguration(MembershipProtectedQueryResultConfigurationProperty.builder()
.outputConfiguration(MembershipProtectedQueryOutputConfigurationProperty.builder()
.s3(ProtectedQueryS3OutputConfigurationProperty.builder()
.bucket("bucket")
.resultFormat("resultFormat")
// the properties below are optional
.keyPrefix("keyPrefix")
.build())
.build())
// the properties below are optional
.roleArn("roleArn")
.build())
.paymentConfiguration(MembershipPaymentConfigurationProperty.builder()
.queryCompute(MembershipQueryComputePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMembershipPropsstatic final classAn implementation forCfnMembershipProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnMembershipProps.Builderbuilder()The unique ID for the associated collaboration.default ObjectThe default protected query result configuration as specified by the member who can receive results.default ObjectThe payment responsibilities accepted by the collaboration member.An indicator as to whether query logging has been enabled or disabled for the membership.getTags()An optional label that you can assign to a resource when you create it.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCollaborationIdentifier
The unique ID for the associated collaboration.- See Also:
-
getQueryLogStatus
An indicator as to whether query logging has been enabled or disabled for the membership.- See Also:
-
getDefaultResultConfiguration
The default protected query result configuration as specified by the member who can receive results.- See Also:
-
getPaymentConfiguration
The payment responsibilities accepted by the collaboration member.- See Also:
-
getTags
An optional label that you can assign to a resource when you create it.Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
- See Also:
-
builder
- Returns:
- a
CfnMembershipProps.BuilderofCfnMembershipProps
-