CfnMembershipProps
- class aws_cdk.aws_cleanrooms.CfnMembershipProps(*, collaboration_identifier, query_log_status, default_job_result_configuration=None, default_result_configuration=None, job_log_status=None, payment_configuration=None, tags=None)
Bases:
objectProperties for defining a
CfnMembership.- Parameters:
collaboration_identifier (
str) – The unique ID for the associated collaboration.query_log_status (
str) – An indicator as to whether query logging has been enabled or disabled for the membership. WhenENABLED, AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value isDISABLED.default_job_result_configuration (
Union[IResolvable,MembershipProtectedJobResultConfigurationProperty,Dict[str,Any],None]) – The default job result configuration for the membership.default_result_configuration (
Union[IResolvable,MembershipProtectedQueryResultConfigurationProperty,Dict[str,Any],None]) – The default protected query result configuration as specified by the member who can receive results.job_log_status (
Optional[str]) – An indicator as to whether job logging has been enabled or disabled for the collaboration. WhenENABLED, AWS Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value isDISABLED.payment_configuration (
Union[IResolvable,MembershipPaymentConfigurationProperty,Dict[str,Any],None]) – The payment responsibilities accepted by the collaboration member.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – 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:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_cleanrooms as cleanrooms cfn_membership_props = cleanrooms.CfnMembershipProps( collaboration_identifier="collaborationIdentifier", query_log_status="queryLogStatus", # the properties below are optional default_job_result_configuration=cleanrooms.CfnMembership.MembershipProtectedJobResultConfigurationProperty( output_configuration=cleanrooms.CfnMembership.MembershipProtectedJobOutputConfigurationProperty( s3=cleanrooms.CfnMembership.ProtectedJobS3OutputConfigurationInputProperty( bucket="bucket", # the properties below are optional key_prefix="keyPrefix" ) ), role_arn="roleArn" ), default_result_configuration=cleanrooms.CfnMembership.MembershipProtectedQueryResultConfigurationProperty( output_configuration=cleanrooms.CfnMembership.MembershipProtectedQueryOutputConfigurationProperty( s3=cleanrooms.CfnMembership.ProtectedQueryS3OutputConfigurationProperty( bucket="bucket", result_format="resultFormat", # the properties below are optional key_prefix="keyPrefix", single_file_output=False ) ), # the properties below are optional role_arn="roleArn" ), job_log_status="jobLogStatus", payment_configuration=cleanrooms.CfnMembership.MembershipPaymentConfigurationProperty( query_compute=cleanrooms.CfnMembership.MembershipQueryComputePaymentConfigProperty( is_responsible=False ), # the properties below are optional job_compute=cleanrooms.CfnMembership.MembershipJobComputePaymentConfigProperty( is_responsible=False ), machine_learning=cleanrooms.CfnMembership.MembershipMLPaymentConfigProperty( model_inference=cleanrooms.CfnMembership.MembershipModelInferencePaymentConfigProperty( is_responsible=False ), model_training=cleanrooms.CfnMembership.MembershipModelTrainingPaymentConfigProperty( is_responsible=False ) ) ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- collaboration_identifier
The unique ID for the associated collaboration.
- default_job_result_configuration
The default job result configuration for the membership.
- default_result_configuration
The default protected query result configuration as specified by the member who can receive results.
- job_log_status
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 isDISABLED.
- payment_configuration
The payment responsibilities accepted by the collaboration member.
- query_log_status
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 isDISABLED.
- tags
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.