get_collaboration
(**kwargs)¶Returns metadata about a collaboration.
See also: AWS API Documentation
Request Syntax
response = client.get_collaboration(
collaborationIdentifier='string'
)
[REQUIRED]
The identifier for the collaboration.
{
'collaboration': {
'id': 'string',
'arn': 'string',
'name': 'string',
'description': 'string',
'creatorAccountId': 'string',
'creatorDisplayName': 'string',
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'memberStatus': 'INVITED'|'ACTIVE'|'LEFT'|'REMOVED',
'membershipId': 'string',
'membershipArn': 'string',
'dataEncryptionMetadata': {
'allowCleartext': True|False,
'allowDuplicates': True|False,
'allowJoinsOnColumnsWithDifferentNames': True|False,
'preserveNulls': True|False
},
'queryLogStatus': 'ENABLED'|'DISABLED'
}
}
Response Structure
The entire collaboration for this identifier.
The unique ID for the collaboration.
The unique ARN for the collaboration.
A human-readable identifier provided by the collaboration owner. Display names are not unique.
A description of the collaboration provided by the collaboration owner.
The identifier used to reference members of the collaboration. Currently only supports AWS account ID.
A display name of the collaboration creator.
The time when the collaboration was created.
The time the collaboration metadata was last updated.
The status of a member in a collaboration.
The unique ID for your membership within the collaboration.
The unique ARN for your membership within the collaboration.
The settings for client-side encryption for cryptographic computing.
Indicates whether encrypted tables can contain cleartext data (true) or are to cryptographically process every column (false).
Indicates whether Fingerprint columns can contain duplicate entries (true) or are to contain only non-repeated values (false).
Indicates whether Fingerprint columns can be joined on any other Fingerprint column with a different name (true) or can only be joined on Fingerprint columns of the same name (false).
Indicates whether NULL values are to be copied as NULL to encrypted tables (true) or cryptographically processed (false).
An indicator as to whether query logging has been enabled or disabled for the collaboration.
Exceptions
CleanRoomsService.Client.exceptions.InternalServerException
CleanRoomsService.Client.exceptions.ValidationException
CleanRoomsService.Client.exceptions.ThrottlingException
CleanRoomsService.Client.exceptions.AccessDeniedException