The AWS Support API reference is intended for programmers who need detailed information about the AWS Support operations and data types. This service enables you to manage your AWS Support cases programmatically. It uses HTTP methods that return results in JSON format.
The AWS Support service also exposes a set of Trusted Advisor features. You can retrieve a list of checks and their descriptions, get check results, specify checks to refresh, and get the refresh status of checks.
The following list describes the AWS Support case management operations:
Service names, issue categories, and available severity levels. The DescribeServices and DescribeSeverityLevels operations return AWS service names, service codes, service categories, and problem severity levels. You use these values when you call the CreateCase operation.
Case creation, case details, and case resolution. The CreateCase, DescribeCases, DescribeAttachment, and ResolveCase operations create AWS Support cases, retrieve information about cases, and resolve cases.
Case communication. The DescribeCommunications, AddCommunicationToCase, and AddAttachmentsToSet operations retrieve and add communications and attachments to AWS Support cases.
The following list describes the operations available from the AWS Support service for Trusted Advisor:
DescribeTrustedAdvisorChecks returns the list of checks that run against your AWS resources.
Using the checkId
for a specific check returned by
DescribeTrustedAdvisorChecks, you can call
DescribeTrustedAdvisorCheckResult to obtain the results for the
check you specified.
DescribeTrustedAdvisorCheckSummaries returns summarized results for one or more Trusted Advisor checks.
RefreshTrustedAdvisorCheck requests that Trusted Advisor rerun a specified check.
DescribeTrustedAdvisorCheckRefreshStatuses reports the refresh status of one or more checks.
For authentication of requests, AWS Support uses Signature Version 4 Signing Process.
See About the AWS Support API in the AWS Support User Guide for information about how to use this service to create and manage your support cases, and how to call Trusted Advisor for results of checks on your resources.
support(config = list())
Optional configuration of credentials, endpoint, and/or region.
svc <- support( config = list( credentials = list( creds = list( access_key_id = "string", secret_access_key = "string", session_token = "string" ), profile = "string" ), endpoint = "string", region = "string" ) )
add_attachments_to_set | Adds one or more attachments to an attachment set |
add_communication_to_case | Adds additional customer communication to an AWS Support case |
create_case | Creates a new case in the AWS Support Center |
describe_attachment | Returns the attachment that has the specified ID |
describe_cases | Returns a list of cases that you specify by passing one or more case IDs |
describe_communications | Returns communications (and attachments) for one or more support cases |
describe_services | Returns the current list of AWS services and a list of service categories that applies to each one |
describe_severity_levels | Returns the list of severity levels that you can assign to an AWS Support case |
describe_trusted_advisor_check_refresh_statuses | Returns the refresh status of the Trusted Advisor checks that have the specified check IDs |
describe_trusted_advisor_check_result | Returns the results of the Trusted Advisor check that has the specified check ID |
describe_trusted_advisor_checks | Returns information about all available Trusted Advisor checks, including name, ID, category, description, and metadata |
describe_trusted_advisor_check_summaries | Returns the summaries of the results of the Trusted Advisor checks that have the specified check IDs |
refresh_trusted_advisor_check | Requests a refresh of the Trusted Advisor check that has the specified check ID |
# NOT RUN {
svc <- support()
svc$add_attachments_to_set(
Foo = 123
)
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab