interface CfnMembershipMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnMembershipMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnMembershipMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnMembershipMixinProps |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnMembershipMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnMembershipMixinProps |
Properties for CfnMembershipPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const cfnMembershipMixinProps: cleanrooms_mixins.CfnMembershipMixinProps = {
collaborationIdentifier: 'collaborationIdentifier',
defaultJobResultConfiguration: {
outputConfiguration: {
s3: {
bucket: 'bucket',
keyPrefix: 'keyPrefix',
},
},
roleArn: 'roleArn',
},
defaultResultConfiguration: {
outputConfiguration: {
s3: {
bucket: 'bucket',
keyPrefix: 'keyPrefix',
resultFormat: 'resultFormat',
singleFileOutput: false,
},
},
roleArn: 'roleArn',
},
jobLogStatus: 'jobLogStatus',
paymentConfiguration: {
jobCompute: {
isResponsible: false,
},
machineLearning: {
modelInference: {
isResponsible: false,
},
modelTraining: {
isResponsible: false,
},
syntheticDataGeneration: {
isResponsible: false,
},
},
queryCompute: {
isResponsible: false,
},
},
queryLogStatus: 'queryLogStatus',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| collaboration | string | The unique ID for the associated collaboration. |
| default | IResolvable | Membership | The default job result configuration for the membership. |
| default | IResolvable | Membership | The default protected query result configuration as specified by the member who can receive results. |
| job | string | An indicator as to whether job logging has been enabled or disabled for the collaboration. |
| payment | IResolvable | Membership | The payment responsibilities accepted by the collaboration member. |
| query | string | An indicator as to whether query logging has been enabled or disabled for the membership. |
| tags? | Cfn[] | An optional label that you can assign to a resource when you create it. |
collaborationIdentifier?
Type:
string
(optional)
The unique ID for the associated collaboration.
defaultJobResultConfiguration?
Type:
IResolvable | Membership
(optional)
The default job result configuration for the membership.
defaultResultConfiguration?
Type:
IResolvable | Membership
(optional)
The default protected query result configuration as specified by the member who can receive results.
jobLogStatus?
Type:
string
(optional)
An indicator as to whether job logging has been enabled or disabled for the collaboration.
When ENABLED , AWS Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is DISABLED .
paymentConfiguration?
Type:
IResolvable | Membership
(optional)
The payment responsibilities accepted by the collaboration member.
queryLogStatus?
Type:
string
(optional)
An indicator as to whether query logging has been enabled or disabled for the membership.
When ENABLED , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is DISABLED .
tags?
Type:
Cfn[]
(optional)
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.

.NET
Go
Java
Python
TypeScript