[][src]Trait rusoto_support::AWSSupport

pub trait AWSSupport {
#[must_use]    fn add_attachments_to_set<'life0, 'async_trait>(
        &'life0 self,
        input: AddAttachmentsToSetRequest
    ) -> Pin<Box<dyn Future<Output = Result<AddAttachmentsToSetResponse, RusotoError<AddAttachmentsToSetError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn add_communication_to_case<'life0, 'async_trait>(
        &'life0 self,
        input: AddCommunicationToCaseRequest
    ) -> Pin<Box<dyn Future<Output = Result<AddCommunicationToCaseResponse, RusotoError<AddCommunicationToCaseError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn create_case<'life0, 'async_trait>(
        &'life0 self,
        input: CreateCaseRequest
    ) -> Pin<Box<dyn Future<Output = Result<CreateCaseResponse, RusotoError<CreateCaseError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn describe_attachment<'life0, 'async_trait>(
        &'life0 self,
        input: DescribeAttachmentRequest
    ) -> Pin<Box<dyn Future<Output = Result<DescribeAttachmentResponse, RusotoError<DescribeAttachmentError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn describe_cases<'life0, 'async_trait>(
        &'life0 self,
        input: DescribeCasesRequest
    ) -> Pin<Box<dyn Future<Output = Result<DescribeCasesResponse, RusotoError<DescribeCasesError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn describe_communications<'life0, 'async_trait>(
        &'life0 self,
        input: DescribeCommunicationsRequest
    ) -> Pin<Box<dyn Future<Output = Result<DescribeCommunicationsResponse, RusotoError<DescribeCommunicationsError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn describe_services<'life0, 'async_trait>(
        &'life0 self,
        input: DescribeServicesRequest
    ) -> Pin<Box<dyn Future<Output = Result<DescribeServicesResponse, RusotoError<DescribeServicesError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn describe_severity_levels<'life0, 'async_trait>(
        &'life0 self,
        input: DescribeSeverityLevelsRequest
    ) -> Pin<Box<dyn Future<Output = Result<DescribeSeverityLevelsResponse, RusotoError<DescribeSeverityLevelsError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn describe_trusted_advisor_check_refresh_statuses<'life0, 'async_trait>(
        &'life0 self,
        input: DescribeTrustedAdvisorCheckRefreshStatusesRequest
    ) -> Pin<Box<dyn Future<Output = Result<DescribeTrustedAdvisorCheckRefreshStatusesResponse, RusotoError<DescribeTrustedAdvisorCheckRefreshStatusesError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn describe_trusted_advisor_check_result<'life0, 'async_trait>(
        &'life0 self,
        input: DescribeTrustedAdvisorCheckResultRequest
    ) -> Pin<Box<dyn Future<Output = Result<DescribeTrustedAdvisorCheckResultResponse, RusotoError<DescribeTrustedAdvisorCheckResultError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn describe_trusted_advisor_check_summaries<'life0, 'async_trait>(
        &'life0 self,
        input: DescribeTrustedAdvisorCheckSummariesRequest
    ) -> Pin<Box<dyn Future<Output = Result<DescribeTrustedAdvisorCheckSummariesResponse, RusotoError<DescribeTrustedAdvisorCheckSummariesError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn describe_trusted_advisor_checks<'life0, 'async_trait>(
        &'life0 self,
        input: DescribeTrustedAdvisorChecksRequest
    ) -> Pin<Box<dyn Future<Output = Result<DescribeTrustedAdvisorChecksResponse, RusotoError<DescribeTrustedAdvisorChecksError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn refresh_trusted_advisor_check<'life0, 'async_trait>(
        &'life0 self,
        input: RefreshTrustedAdvisorCheckRequest
    ) -> Pin<Box<dyn Future<Output = Result<RefreshTrustedAdvisorCheckResponse, RusotoError<RefreshTrustedAdvisorCheckError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn resolve_case<'life0, 'async_trait>(
        &'life0 self,
        input: ResolveCaseRequest
    ) -> Pin<Box<dyn Future<Output = Result<ResolveCaseResponse, RusotoError<ResolveCaseError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Trait representing the capabilities of the AWS Support API. AWS Support clients implement this trait.

Required methods

#[must_use]fn add_attachments_to_set<'life0, 'async_trait>(
    &'life0 self,
    input: AddAttachmentsToSetRequest
) -> Pin<Box<dyn Future<Output = Result<AddAttachmentsToSetResponse, RusotoError<AddAttachmentsToSetError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Adds one or more attachments to an attachment set.

An attachment set is a temporary container for attachments that you add to a case or case communication. The set is available for 1 hour after it's created. The expiryTime returned in the response is when the set expires.

#[must_use]fn add_communication_to_case<'life0, 'async_trait>(
    &'life0 self,
    input: AddCommunicationToCaseRequest
) -> Pin<Box<dyn Future<Output = Result<AddCommunicationToCaseResponse, RusotoError<AddCommunicationToCaseError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Adds additional customer communication to an AWS Support case. You use the caseId value to identify the case to add communication to. You can list a set of email addresses to copy on the communication using the ccEmailAddresses value. The communicationBody value contains the text of the communication.

The response indicates the success or failure of the request.

This operation implements a subset of the features of the AWS Support Center.

#[must_use]fn create_case<'life0, 'async_trait>(
    &'life0 self,
    input: CreateCaseRequest
) -> Pin<Box<dyn Future<Output = Result<CreateCaseResponse, RusotoError<CreateCaseError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Creates a case in the AWS Support Center. This operation is similar to how you create a case in the AWS Support Center Create Case page.

The AWS Support API doesn't support requesting service limit increases. You can submit a service limit increase in the following ways:

A successful CreateCase request returns an AWS Support case number. You can use the DescribeCases operation and specify the case number to get existing AWS Support cases. After you create a case, you can use the AddCommunicationToCase operation to add additional communication or attachments to an existing case.

  • The caseId is separate from the displayId that appears in the Support Center. You can use the DescribeCases operation to get the displayId.

#[must_use]fn describe_attachment<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeAttachmentRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeAttachmentResponse, RusotoError<DescribeAttachmentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Returns the attachment that has the specified ID. Attachments can include screenshots, error logs, or other files that describe your issue. Attachment IDs are generated by the case management system when you add an attachment to a case or case communication. Attachment IDs are returned in the AttachmentDetails objects that are returned by the DescribeCommunications operation.

#[must_use]fn describe_cases<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeCasesRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeCasesResponse, RusotoError<DescribeCasesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Returns a list of cases that you specify by passing one or more case IDs. In addition, you can filter the cases by date by setting values for the afterTime and beforeTime request parameters. You can set values for the includeResolvedCases and includeCommunications request parameters to control how much information is returned.

Case data is available for 12 months after creation. If a case was created more than 12 months ago, a request for data might cause an error.

The response returns the following in JSON format:

  • One or more CaseDetails data types.

  • One or more nextToken values, which specify where to paginate the returned records represented by the CaseDetails objects.

#[must_use]fn describe_communications<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeCommunicationsRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeCommunicationsResponse, RusotoError<DescribeCommunicationsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Returns communications (and attachments) for one or more support cases. You can use the afterTime and beforeTime parameters to filter by date. You can use the caseId parameter to restrict the results to a particular case.

Case data is available for 12 months after creation. If a case was created more than 12 months ago, a request for data might cause an error.

You can use the maxResults and nextToken parameters to control the pagination of the result set. Set maxResults to the number of cases you want displayed on each page, and use nextToken to specify the resumption of pagination.

#[must_use]fn describe_services<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeServicesRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeServicesResponse, RusotoError<DescribeServicesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Returns the current list of AWS services and a list of service categories that applies to each one. You then use service names and categories in your CreateCase requests. Each AWS service has its own set of categories.

The service codes and category codes correspond to the values that are displayed in the Service and Category drop-down lists on the AWS Support Center Create Case page. The values in those fields, however, do not necessarily match the service codes and categories returned by the DescribeServices request. Always use the service codes and categories obtained programmatically. This practice ensures that you always have the most recent set of service and category codes.

#[must_use]fn describe_severity_levels<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeSeverityLevelsRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeSeverityLevelsResponse, RusotoError<DescribeSeverityLevelsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Returns the list of severity levels that you can assign to an AWS Support case. The severity level for a case is also a field in the CaseDetails data type included in any CreateCase request.

#[must_use]fn describe_trusted_advisor_check_refresh_statuses<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeTrustedAdvisorCheckRefreshStatusesRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeTrustedAdvisorCheckRefreshStatusesResponse, RusotoError<DescribeTrustedAdvisorCheckRefreshStatusesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Returns the refresh status of the Trusted Advisor checks that have the specified check IDs. Check IDs can be obtained by calling DescribeTrustedAdvisorChecks.

Some checks are refreshed automatically, and their refresh statuses cannot be retrieved by using this operation. Use of the DescribeTrustedAdvisorCheckRefreshStatuses operation for these checks causes an InvalidParameterValue error.

#[must_use]fn describe_trusted_advisor_check_result<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeTrustedAdvisorCheckResultRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeTrustedAdvisorCheckResultResponse, RusotoError<DescribeTrustedAdvisorCheckResultError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Returns the results of the Trusted Advisor check that has the specified check ID. Check IDs can be obtained by calling DescribeTrustedAdvisorChecks.

The response contains a TrustedAdvisorCheckResult object, which contains these three objects:

In addition, the response contains these fields:

  • status. The alert status of the check: "ok" (green), "warning" (yellow), "error" (red), or "not_available".

  • timestamp. The time of the last refresh of the check.

  • checkId. The unique identifier for the check.

#[must_use]fn describe_trusted_advisor_check_summaries<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeTrustedAdvisorCheckSummariesRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeTrustedAdvisorCheckSummariesResponse, RusotoError<DescribeTrustedAdvisorCheckSummariesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Returns the summaries of the results of the Trusted Advisor checks that have the specified check IDs. Check IDs can be obtained by calling DescribeTrustedAdvisorChecks.

The response contains an array of TrustedAdvisorCheckSummary objects.

#[must_use]fn describe_trusted_advisor_checks<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeTrustedAdvisorChecksRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeTrustedAdvisorChecksResponse, RusotoError<DescribeTrustedAdvisorChecksError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Returns information about all available Trusted Advisor checks, including name, ID, category, description, and metadata. You must specify a language code; English ("en") and Japanese ("ja") are currently supported. The response contains a TrustedAdvisorCheckDescription for each check. The region must be set to us-east-1.

#[must_use]fn refresh_trusted_advisor_check<'life0, 'async_trait>(
    &'life0 self,
    input: RefreshTrustedAdvisorCheckRequest
) -> Pin<Box<dyn Future<Output = Result<RefreshTrustedAdvisorCheckResponse, RusotoError<RefreshTrustedAdvisorCheckError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Requests a refresh of the Trusted Advisor check that has the specified check ID. Check IDs can be obtained by calling DescribeTrustedAdvisorChecks.

Some checks are refreshed automatically, and they cannot be refreshed by using this operation. Use of the RefreshTrustedAdvisorCheck operation for these checks causes an InvalidParameterValue error.

The response contains a TrustedAdvisorCheckRefreshStatus object, which contains these fields:

  • status. The refresh status of the check:

    • none: The check is not refreshed or the non-success status exceeds the timeout

    • enqueued: The check refresh requests has entered the refresh queue

    • processing: The check refresh request is picked up by the rule processing engine

    • success: The check is successfully refreshed

    • abandoned: The check refresh has failed

  • millisUntilNextRefreshable. The amount of time, in milliseconds, until the check is eligible for refresh.

  • checkId. The unique identifier for the check.

#[must_use]fn resolve_case<'life0, 'async_trait>(
    &'life0 self,
    input: ResolveCaseRequest
) -> Pin<Box<dyn Future<Output = Result<ResolveCaseResponse, RusotoError<ResolveCaseError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Takes a caseId and returns the initial state of the case along with the state of the case after the call to ResolveCase completed.

Loading content...

Implementors

impl AWSSupport for AWSSupportClient[src]

fn add_attachments_to_set<'life0, 'async_trait>(
    &'life0 self,
    input: AddAttachmentsToSetRequest
) -> Pin<Box<dyn Future<Output = Result<AddAttachmentsToSetResponse, RusotoError<AddAttachmentsToSetError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds one or more attachments to an attachment set.

An attachment set is a temporary container for attachments that you add to a case or case communication. The set is available for 1 hour after it's created. The expiryTime returned in the response is when the set expires.

fn add_communication_to_case<'life0, 'async_trait>(
    &'life0 self,
    input: AddCommunicationToCaseRequest
) -> Pin<Box<dyn Future<Output = Result<AddCommunicationToCaseResponse, RusotoError<AddCommunicationToCaseError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds additional customer communication to an AWS Support case. You use the caseId value to identify the case to add communication to. You can list a set of email addresses to copy on the communication using the ccEmailAddresses value. The communicationBody value contains the text of the communication.

The response indicates the success or failure of the request.

This operation implements a subset of the features of the AWS Support Center.

fn create_case<'life0, 'async_trait>(
    &'life0 self,
    input: CreateCaseRequest
) -> Pin<Box<dyn Future<Output = Result<CreateCaseResponse, RusotoError<CreateCaseError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a case in the AWS Support Center. This operation is similar to how you create a case in the AWS Support Center Create Case page.

The AWS Support API doesn't support requesting service limit increases. You can submit a service limit increase in the following ways:

A successful CreateCase request returns an AWS Support case number. You can use the DescribeCases operation and specify the case number to get existing AWS Support cases. After you create a case, you can use the AddCommunicationToCase operation to add additional communication or attachments to an existing case.

  • The caseId is separate from the displayId that appears in the Support Center. You can use the DescribeCases operation to get the displayId.

fn describe_attachment<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeAttachmentRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeAttachmentResponse, RusotoError<DescribeAttachmentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the attachment that has the specified ID. Attachments can include screenshots, error logs, or other files that describe your issue. Attachment IDs are generated by the case management system when you add an attachment to a case or case communication. Attachment IDs are returned in the AttachmentDetails objects that are returned by the DescribeCommunications operation.

fn describe_cases<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeCasesRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeCasesResponse, RusotoError<DescribeCasesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of cases that you specify by passing one or more case IDs. In addition, you can filter the cases by date by setting values for the afterTime and beforeTime request parameters. You can set values for the includeResolvedCases and includeCommunications request parameters to control how much information is returned.

Case data is available for 12 months after creation. If a case was created more than 12 months ago, a request for data might cause an error.

The response returns the following in JSON format:

  • One or more CaseDetails data types.

  • One or more nextToken values, which specify where to paginate the returned records represented by the CaseDetails objects.

fn describe_communications<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeCommunicationsRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeCommunicationsResponse, RusotoError<DescribeCommunicationsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns communications (and attachments) for one or more support cases. You can use the afterTime and beforeTime parameters to filter by date. You can use the caseId parameter to restrict the results to a particular case.

Case data is available for 12 months after creation. If a case was created more than 12 months ago, a request for data might cause an error.

You can use the maxResults and nextToken parameters to control the pagination of the result set. Set maxResults to the number of cases you want displayed on each page, and use nextToken to specify the resumption of pagination.

fn describe_services<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeServicesRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeServicesResponse, RusotoError<DescribeServicesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the current list of AWS services and a list of service categories that applies to each one. You then use service names and categories in your CreateCase requests. Each AWS service has its own set of categories.

The service codes and category codes correspond to the values that are displayed in the Service and Category drop-down lists on the AWS Support Center Create Case page. The values in those fields, however, do not necessarily match the service codes and categories returned by the DescribeServices request. Always use the service codes and categories obtained programmatically. This practice ensures that you always have the most recent set of service and category codes.

fn describe_severity_levels<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeSeverityLevelsRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeSeverityLevelsResponse, RusotoError<DescribeSeverityLevelsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the list of severity levels that you can assign to an AWS Support case. The severity level for a case is also a field in the CaseDetails data type included in any CreateCase request.

fn describe_trusted_advisor_check_refresh_statuses<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeTrustedAdvisorCheckRefreshStatusesRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeTrustedAdvisorCheckRefreshStatusesResponse, RusotoError<DescribeTrustedAdvisorCheckRefreshStatusesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the refresh status of the Trusted Advisor checks that have the specified check IDs. Check IDs can be obtained by calling DescribeTrustedAdvisorChecks.

Some checks are refreshed automatically, and their refresh statuses cannot be retrieved by using this operation. Use of the DescribeTrustedAdvisorCheckRefreshStatuses operation for these checks causes an InvalidParameterValue error.

fn describe_trusted_advisor_check_result<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeTrustedAdvisorCheckResultRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeTrustedAdvisorCheckResultResponse, RusotoError<DescribeTrustedAdvisorCheckResultError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the results of the Trusted Advisor check that has the specified check ID. Check IDs can be obtained by calling DescribeTrustedAdvisorChecks.

The response contains a TrustedAdvisorCheckResult object, which contains these three objects:

In addition, the response contains these fields:

  • status. The alert status of the check: "ok" (green), "warning" (yellow), "error" (red), or "not_available".

  • timestamp. The time of the last refresh of the check.

  • checkId. The unique identifier for the check.

fn describe_trusted_advisor_check_summaries<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeTrustedAdvisorCheckSummariesRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeTrustedAdvisorCheckSummariesResponse, RusotoError<DescribeTrustedAdvisorCheckSummariesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the summaries of the results of the Trusted Advisor checks that have the specified check IDs. Check IDs can be obtained by calling DescribeTrustedAdvisorChecks.

The response contains an array of TrustedAdvisorCheckSummary objects.

fn describe_trusted_advisor_checks<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeTrustedAdvisorChecksRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeTrustedAdvisorChecksResponse, RusotoError<DescribeTrustedAdvisorChecksError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns information about all available Trusted Advisor checks, including name, ID, category, description, and metadata. You must specify a language code; English ("en") and Japanese ("ja") are currently supported. The response contains a TrustedAdvisorCheckDescription for each check. The region must be set to us-east-1.

fn refresh_trusted_advisor_check<'life0, 'async_trait>(
    &'life0 self,
    input: RefreshTrustedAdvisorCheckRequest
) -> Pin<Box<dyn Future<Output = Result<RefreshTrustedAdvisorCheckResponse, RusotoError<RefreshTrustedAdvisorCheckError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Requests a refresh of the Trusted Advisor check that has the specified check ID. Check IDs can be obtained by calling DescribeTrustedAdvisorChecks.

Some checks are refreshed automatically, and they cannot be refreshed by using this operation. Use of the RefreshTrustedAdvisorCheck operation for these checks causes an InvalidParameterValue error.

The response contains a TrustedAdvisorCheckRefreshStatus object, which contains these fields:

  • status. The refresh status of the check:

    • none: The check is not refreshed or the non-success status exceeds the timeout

    • enqueued: The check refresh requests has entered the refresh queue

    • processing: The check refresh request is picked up by the rule processing engine

    • success: The check is successfully refreshed

    • abandoned: The check refresh has failed

  • millisUntilNextRefreshable. The amount of time, in milliseconds, until the check is eligible for refresh.

  • checkId. The unique identifier for the check.

fn resolve_case<'life0, 'async_trait>(
    &'life0 self,
    input: ResolveCaseRequest
) -> Pin<Box<dyn Future<Output = Result<ResolveCaseResponse, RusotoError<ResolveCaseError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Takes a caseId and returns the initial state of the case along with the state of the case after the call to ResolveCase completed.

Loading content...