Interface CfnCollaboration.MemberSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCollaboration.MemberSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnCollaboration
@Stability(Stable)
public static interface CfnCollaboration.MemberSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
Basic metadata used to construct a new member.
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.*;
MemberSpecificationProperty memberSpecificationProperty = MemberSpecificationProperty.builder()
.accountId("accountId")
.displayName("displayName")
.memberAbilities(List.of("memberAbilities"))
// the properties below are optional
.paymentConfiguration(PaymentConfigurationProperty.builder()
.queryCompute(QueryComputePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCollaboration.MemberSpecificationPropertystatic final classAn implementation forCfnCollaboration.MemberSpecificationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountId
The identifier used to reference members of the collaboration.Currently only supports AWS account ID.
- See Also:
-
getDisplayName
The member's display name.- See Also:
-
getMemberAbilities
The abilities granted to the collaboration member.Allowed Values :
CAN_QUERY|CAN_RECEIVE_RESULTS- See Also:
-
getPaymentConfiguration
The collaboration member's payment responsibilities set by the collaboration creator.If the collaboration creator hasn't speciļ¬ed anyone as the member paying for query compute costs, then the member who can query is the default payer.
- See Also:
-
builder
-