ConnectCases / Client / get_case_audit_events
get_case_audit_events#
- ConnectCases.Client.get_case_audit_events(**kwargs)#
Returns the audit history about a specific case if it exists.
See also: AWS API Documentation
Request Syntax
response = client.get_case_audit_events( caseId='string', domainId='string', maxResults=123, nextToken='string' )
- Parameters:
caseId (string) –
[REQUIRED]
A unique identifier of the case.
domainId (string) –
[REQUIRED]
The unique identifier of the Cases domain.
maxResults (integer) – The maximum number of audit events to return. The current maximum supported value is 25. This is also the default when no other value is provided.
nextToken (string) – The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
- Return type:
dict
- Returns:
Response Syntax
{ 'auditEvents': [ { 'eventId': 'string', 'fields': [ { 'eventFieldId': 'string', 'newValue': { 'booleanValue': True|False, 'doubleValue': 123.0, 'emptyValue': {}, 'stringValue': 'string', 'userArnValue': 'string' }, 'oldValue': { 'booleanValue': True|False, 'doubleValue': 123.0, 'emptyValue': {}, 'stringValue': 'string', 'userArnValue': 'string' } }, ], 'performedBy': { 'iamPrincipalArn': 'string', 'user': { 'userArn': 'string' } }, 'performedTime': datetime(2015, 1, 1), 'relatedItemType': 'Contact'|'Comment', 'type': 'Case.Created'|'Case.Updated'|'RelatedItem.Created' }, ], 'nextToken': 'string' }
Response Structure
(dict) –
auditEvents (list) –
A list of case audits where each represents a particular edit of the case.
(dict) –
Represents the content of a particular audit event.
eventId (string) –
Unique identifier of a case audit history event.
fields (list) –
A list of Case Audit History event fields.
(dict) –
Fields for audit event.
eventFieldId (string) –
Unique identifier of field in an Audit History entry.
newValue (dict) –
Union of potential field value types.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set:
booleanValue
,doubleValue
,emptyValue
,stringValue
,userArnValue
. If a client receives an unknown member it will setSDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure ofSDK_UNKNOWN_MEMBER
is as follows:'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
booleanValue (boolean) –
Can be either null, or have a Boolean value type. Only one value can be provided.
doubleValue (float) –
Can be either null, or have a Double value type. Only one value can be provided.
emptyValue (dict) –
An empty value. You cannot set
EmptyFieldValue
on a field that is required on a case template.This structure will never have any data members. It signifies an empty value on a case field.
stringValue (string) –
Can be either null, or have a String value type. Only one value can be provided.
userArnValue (string) –
Can be either null, or have a String value type formatted as an ARN. Only one value can be provided.
oldValue (dict) –
Union of potential field value types.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set:
booleanValue
,doubleValue
,emptyValue
,stringValue
,userArnValue
. If a client receives an unknown member it will setSDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure ofSDK_UNKNOWN_MEMBER
is as follows:'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
booleanValue (boolean) –
Can be either null, or have a Boolean value type. Only one value can be provided.
doubleValue (float) –
Can be either null, or have a Double value type. Only one value can be provided.
emptyValue (dict) –
An empty value. You cannot set
EmptyFieldValue
on a field that is required on a case template.This structure will never have any data members. It signifies an empty value on a case field.
stringValue (string) –
Can be either null, or have a String value type. Only one value can be provided.
userArnValue (string) –
Can be either null, or have a String value type formatted as an ARN. Only one value can be provided.
performedBy (dict) –
Information of the user which performed the audit.
iamPrincipalArn (string) –
Unique identifier of an IAM role.
user (dict) –
Represents the identity of the person who performed the action.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set:
userArn
. If a client receives an unknown member it will setSDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure ofSDK_UNKNOWN_MEMBER
is as follows:'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
userArn (string) –
Represents the Amazon Connect ARN of the user.
performedTime (datetime) –
Time at which an Audit History event took place.
relatedItemType (string) –
The Type of the related item.
type (string) –
The Type of an audit history event.
nextToken (string) –
The token for the next set of results. This is null if there are no more results to return.
Exceptions
ConnectCases.Client.exceptions.InternalServerException
ConnectCases.Client.exceptions.ResourceNotFoundException
ConnectCases.Client.exceptions.ValidationException
ConnectCases.Client.exceptions.ThrottlingException
ConnectCases.Client.exceptions.AccessDeniedException