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: