Returns a list of cases that you specify by passing one or more case IDs
Source:R/support_operations.R
support_describe_cases.RdReturns a list of cases that you specify by passing one or more case IDs. You can use the afterTime and beforeTime parameters to filter the cases by date. You can set values for the includeResolvedCases and includeCommunications parameters to specify how much information to return.
See https://www.paws-r-sdk.com/docs/support_describe_cases/ for full documentation.
Usage
support_describe_cases(
caseIdList = NULL,
displayId = NULL,
afterTime = NULL,
beforeTime = NULL,
includeResolvedCases = NULL,
nextToken = NULL,
maxResults = NULL,
language = NULL,
includeCommunications = NULL
)Arguments
- caseIdList
A list of ID numbers of the support cases you want returned. The maximum number of cases is 100.
- displayId
The ID displayed for a case in the Amazon Web Services Support Center user interface.
- afterTime
The start date for a filtered date search on support case communications. Case communications are available for 12 months after creation.
- beforeTime
The end date for a filtered date search on support case communications. Case communications are available for 12 months after creation.
- includeResolvedCases
Specifies whether to include resolved support cases in the
describe_casesresponse. By default, resolved cases aren't included.- nextToken
A resumption point for pagination.
- maxResults
The maximum number of results to return before paginating.
- language
The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1 code for the
languageparameter if you want support in that language.- includeCommunications
Specifies whether to include communications in the
describe_casesresponse. By default, communications are included.