create_case_options
Creates, updates, deletes, gets or lists a create_case_options resource.
Overview
| Name | create_case_options |
| Type | Resource |
| Id | aws.support.create_case_options |
Fields
The following fields are returned by SELECT queries:
- describe_create_case_options
| Name | Datatype | Description |
|---|---|---|
communication_types | array | A JSON-formatted array that contains the available communication type options, along with the available support timeframes for the given inputs. |
language_availability | string | Language availability can be any of the following: available best_effort unavailable |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_create_case_options | select | region | Returns a list of CreateCaseOption types along with the corresponding supported hours and language availability. You can specify the language categoryCode, issueType and serviceCode used to retrieve the CreateCaseOptions. You must have a Business, Enterprise On-Ramp, or Enterprise Support plan to use the Amazon Web Services Support API. If you call the Amazon Web Services Support API from an account that doesn't have a Business, Enterprise On-Ramp, or Enterprise Support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see Amazon Web Services Support. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_create_case_options
Returns a list of CreateCaseOption types along with the corresponding supported hours and language availability. You can specify the language categoryCode, issueType and serviceCode used to retrieve the CreateCaseOptions. You must have a Business, Enterprise On-Ramp, or Enterprise Support plan to use the Amazon Web Services Support API. If you call the Amazon Web Services Support API from an account that doesn't have a Business, Enterprise On-Ramp, or Enterprise Support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see Amazon Web Services Support.
SELECT
communication_types,
language_availability
FROM aws.support.create_case_options
WHERE region = '{{ region }}' -- required
;