[][src]Struct rusoto_support::CreateCaseRequest

pub struct CreateCaseRequest {
    pub attachment_set_id: Option<String>,
    pub category_code: Option<String>,
    pub cc_email_addresses: Option<Vec<String>>,
    pub communication_body: String,
    pub issue_type: Option<String>,
    pub language: Option<String>,
    pub service_code: Option<String>,
    pub severity_code: Option<String>,
    pub subject: String,
}

Fields

attachment_set_id: Option<String>

The ID of a set of one or more attachments for the case. Create the set by using the AddAttachmentsToSet operation.

category_code: Option<String>

The category of problem for the AWS Support case. You also use the DescribeServices operation to get the category code for a service. Each AWS service defines its own set of category codes.

cc_email_addresses: Option<Vec<String>>

A list of email addresses that AWS Support copies on case correspondence. AWS Support identifies the account that creates the case when you specify your AWS credentials in an HTTP POST method or use the AWS SDKs.

communication_body: String

The communication body text that describes the issue. This text appears in the Description field on the AWS Support Center Create Case page.

issue_type: Option<String>

The type of issue for the case. You can specify customer-service or technical. If you don't specify a value, the default is technical.

language: Option<String>

The language in which AWS Support handles the case. You must specify the ISO 639-1 code for the language parameter if you want support in that language. Currently, English ("en") and Japanese ("ja") are supported.

service_code: Option<String>

The code for the AWS service. You can use the DescribeServices operation to get the possible serviceCode values.

severity_code: Option<String>

A value that indicates the urgency of the case. This value determines the response time according to your service level agreement with AWS Support. You can use the DescribeSeverityLevels operation to get the possible values for severityCode.

For more information, see SeverityLevel and Choosing a Severity in the AWS Support User Guide.

The availability of severity levels depends on the support plan for the AWS account.

subject: String

The title of the AWS Support case. The title appears in the Subject field on the AWS Support Center Create Case page.

Trait Implementations

impl Clone for CreateCaseRequest[src]

impl Debug for CreateCaseRequest[src]

impl Default for CreateCaseRequest[src]

impl PartialEq<CreateCaseRequest> for CreateCaseRequest[src]

impl Serialize for CreateCaseRequest[src]

impl StructuralPartialEq for CreateCaseRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.