ConnectCases
import { ConnectCases } from "https://aws-api-bqtgftz736ft.deno.dev/v0.5/services/connectcases.ts?docs=full";§Constructors
§Methods
Returns the description for the list of fields in the request parameters.
Creates and updates a set of field options for a single select field in a Cases domain.
TODO: Failed to render documentation: unhandled top level doc tag pre
Creates a field in the Cases domain. This field is used to define the case object model (that is, defines what data can be captured on cases) in a Cases domain.
Creates a layout in the Cases domain. Layouts define the following configuration in the top section and More Info tab of the Cases user interface:
- Fields to display to the users
- Field ordering
Note: Title and Status fields cannot be part of layouts since they are not configurable.
TODO: Failed to render documentation: unhandled top level doc tag pre
Creates a template in the Cases domain. This template is used to define the case object model (that is, to define what data can be captured on cases) in a Cases domain. A template must have a unique name within a domain, and it must reference existing field IDs and layout IDs. Additionally, multiple fields with same IDs are not allowed within the same Template. A template can be either Active or Inactive, as indicated by its status. Inactive templates cannot be used to create cases.
Deletes a field from a cases template. You can delete up to 100 fields per domain.
After a field is deleted:
- You can still retrieve the field by calling
BatchGetField. - You cannot update a deleted field by calling
UpdateField; it throws aValidationException. - Deleted fields are not included in the
ListFieldsresponse. - Calling
CreateCasewith a deleted field throws aValidationExceptiondenoting which field IDs in the request have been deleted. - Calling
GetCasewith a deleted field ID returns the deleted field's value if one exists. - Calling
UpdateCasewith a deleted field ID throws aValidationExceptionif the case does not already contain a value for the deleted field. Otherwise it succeeds, allowing you to update or remove (usingemptyValue: {}) the field's value from the case. GetTemplatedoes not return field IDs for deleted fields.GetLayoutdoes not return field IDs for deleted fields.- Calling
SearchCaseswith the deleted field ID as a filter returns any cases that have a value for the deleted field that matches the filter criteria. - Calling
SearchCaseswith asearchTermvalue that matches a deleted field's value on a case returns the case in the response. - Calling
BatchPutFieldOptionswith a deleted field ID throw aValidationException. - Calling
GetCaseEventConfigurationdoes not return field IDs for deleted fields.
Returns the audit history about a specific case if it exists.
Returns the case event publishing configuration.
Lists cases for a given contact.
Lists all cases domains in the Amazon Web Services account. Each list item is a condensed summary object of the domain.
Lists all of the field options for a field identifier in the domain.
Lists all layouts in the given cases domain. Each list item is a condensed summary object of the layout.
Lists tags for a resource.
Lists all of the templates in a Cases domain. Each list item is a condensed summary object of the template.
Adds case event publishing configuration. For a complete list of fields you can add to the event message, see Create case fields in the Amazon Connect Administrator Guide
Searches for cases within their associated Cases domain. Search results are returned as a paginated list of abridged case documents.
Note:
For customer_id you must provide the full customer profile ARN in this format: arn:aws:profile:your AWS Region:your AWS account ID:domains/profiles domain name/profiles/profile ID.
Searches for related items that are associated with a case.
Note: If no filters are provided, this returns all related items associated with a case.
Updates the attributes of an existing layout.
If the action is successful, the service sends back an HTTP 200 response with an empty HTTP body.
A ValidationException is returned when you add non-existent fieldIds to a layout.
Note: Title and Status fields cannot be part of layouts because they are not configurable.
Updates the attributes of an existing template.
The template attributes that can be modified include name, description, layoutConfiguration, requiredFields, and status.
At least one of these attributes must not be null.
If a null value is provided for a given attribute, that attribute is ignored and its current value is preserved.