CreateCaseRequest

public struct CreateCaseRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The ID of a set of one or more attachments for the case. Create the set by using the AddAttachmentsToSet operation.

    Declaration

    Swift

    public let attachmentSetId: 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.

    Declaration

    Swift

    public let categoryCode: 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.

    Declaration

    Swift

    public let ccEmailAddresses: [String]?
  • The communication body text that describes the issue. This text appears in the Description field on the AWS Support Center Create Case page.

    Declaration

    Swift

    public let communicationBody: 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.

    Declaration

    Swift

    public let issueType: 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.

    Declaration

    Swift

    public let language: String?
  • The code for the AWS service. You can use the DescribeServices operation to get the possible serviceCode values.

    Declaration

    Swift

    public let serviceCode: 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.

    Declaration

    Swift

    public let severityCode: String?
  • The title of the AWS Support case. The title appears in the Subject field on the AWS Support Center Create Case page.

    Declaration

    Swift

    public let subject: String
  • Undocumented

    Declaration

    Swift

    public init(attachmentSetId: String? = nil, categoryCode: String? = nil, ccEmailAddresses: [String]? = nil, communicationBody: String, issueType: String? = nil, language: String? = nil, serviceCode: String? = nil, severityCode: String? = nil, subject: String)
  • Declaration

    Swift

    public func validate(name: String) throws