PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::Support::CaseDetails; use Moose; has CaseId => (is => 'ro', isa => 'Str', request_name => 'caseId', traits => ['NameInRequest']); has CategoryCode => (is => 'ro', isa => 'Str', request_name => 'categoryCode', traits => ['NameInRequest']); has CcEmailAddresses => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'ccEmailAddresses', traits => ['NameInRequest']); has DisplayId => (is => 'ro', isa => 'Str', request_name => 'displayId', traits => ['NameInRequest']); has Language => (is => 'ro', isa => 'Str', request_name => 'language', traits => ['NameInRequest']); has RecentCommunications => (is => 'ro', isa => 'Paws::Support::RecentCaseCommunications', request_name => 'recentCommunications', traits => ['NameInRequest']); has ServiceCode => (is => 'ro', isa => 'Str', request_name => 'serviceCode', traits => ['NameInRequest']); has SeverityCode => (is => 'ro', isa => 'Str', request_name => 'severityCode', traits => ['NameInRequest']); has Status => (is => 'ro', isa => 'Str', request_name => 'status', traits => ['NameInRequest']); has Subject => (is => 'ro', isa => 'Str', request_name => 'subject', traits => ['NameInRequest']); has SubmittedBy => (is => 'ro', isa => 'Str', request_name => 'submittedBy', traits => ['NameInRequest']); has TimeCreated => (is => 'ro', isa => 'Str', request_name => 'timeCreated', traits => ['NameInRequest']); 1; ### main pod documentation begin ### =head1 NAME Paws::Support::CaseDetails =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::Support::CaseDetails object: $service_obj->Method(Att1 => { CaseId => $value, ..., TimeCreated => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::Support::CaseDetails object: $result = $service_obj->Method(...); $result->Att1->CaseId =head1 DESCRIPTION A JSON-formatted object that contains the metadata for a support case. It is contained in the response from a DescribeCases request. B contains the following fields: =over =item * B - The support case ID requested or returned in the call. The case ID is an alphanumeric string formatted as shown in this example: case-I<12345678910-2013-c4c1d2bf33c5cf47>. =item * B - The category of problem for the support case. Corresponds to the C values returned by a call to DescribeServices. =item * B - The identifier for the case on pages in the AWS Support Center. =item * B - The ISO 639-1 code for the language in which AWS provides support. AWS Support currently supports English ("en") and Japanese ("ja"). Language parameters must be passed explicitly for operations that take them. =item * B - A resumption point for pagination. =item * B - One or more Communication objects. Fields of these objects are C, C, C, C, and C. =item * B - The identifier for the AWS service that corresponds to the service code defined in the call to DescribeServices. =item * B - The severity code assigned to the case. Contains one of the values returned by the call to DescribeSeverityLevels. The possible values are: C, C, C, C, and C. =item * B - The status of the case in the AWS Support Center. Valid values: =over =item * C =item * C =item * C =item * C =item * C =item * C =back =item * B - The subject line of the case. =item * B - The email address of the account that submitted the case. =item * B - The time the case was created, in ISO-8601 format. =back =head1 ATTRIBUTES =head2 CaseId => Str The support case ID requested or returned in the call. The case ID is an alphanumeric string formatted as shown in this example: case-I<12345678910-2013-c4c1d2bf33c5cf47> =head2 CategoryCode => Str The category of problem for the support case. =head2 CcEmailAddresses => ArrayRef[Str|Undef] The email addresses that receive copies of communication about the case. =head2 DisplayId => Str The ID displayed for the case in the AWS Support Center. This is a numeric string. =head2 Language => Str The ISO 639-1 code for the language in which AWS provides support. AWS Support currently supports English ("en") and Japanese ("ja"). Language parameters must be passed explicitly for operations that take them. =head2 RecentCommunications => L The five most recent communications between you and AWS Support Center, including the IDs of any attachments to the communications. Also includes a C that you can use to retrieve earlier communications. =head2 ServiceCode => Str The code for the AWS service. You can get a list of codes and the corresponding service names by calling DescribeServices. =head2 SeverityCode => Str The code for the severity level returned by the call to DescribeSeverityLevels. =head2 Status => Str The status of the case. Valid values: =over =item * C =item * C =item * C =item * C =item * C =item * C =back =head2 Subject => Str The subject line for the case in the AWS Support Center. =head2 SubmittedBy => Str The email address of the account that submitted the case. =head2 TimeCreated => Str The time that the case was created in the AWS Support Center. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut