File Coverage

blib/lib/Paws/LexModels/GetExportResponse.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::LexModels::GetExportResponse;
3 1     1   392 use Moose;
  1         3  
  1         7  
4             has ExportStatus => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'exportStatus');
5             has ExportType => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'exportType');
6             has FailureReason => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'failureReason');
7             has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name');
8             has ResourceType => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'resourceType');
9             has Url => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'url');
10             has Version => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'version');
11              
12             has _request_id => (is => 'ro', isa => 'Str');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::LexModels::GetExportResponse
20              
21             =head1 ATTRIBUTES
22              
23              
24             =head2 ExportStatus => Str
25              
26             The status of the export.
27              
28             =over
29              
30             =item *
31              
32             C<IN_PROGRESS> - The export is in progress.
33              
34             =item *
35              
36             C<READY> - The export is complete.
37              
38             =item *
39              
40             C<FAILED> - The export could not be completed.
41              
42             =back
43              
44              
45             Valid values are: C<"IN_PROGRESS">, C<"READY">, C<"FAILED">
46             =head2 ExportType => Str
47              
48             The format of the exported data.
49              
50             Valid values are: C<"ALEXA_SKILLS_KIT">
51             =head2 FailureReason => Str
52              
53             If C<status> is C<FAILED>, Amazon Lex provides the reason that it
54             failed to export the resource.
55              
56              
57             =head2 Name => Str
58              
59             The name of the bot being exported.
60              
61              
62             =head2 ResourceType => Str
63              
64             The type of the exported resource.
65              
66             Valid values are: C<"BOT">
67             =head2 Url => Str
68              
69             An S3 pre-signed URL that provides the location of the exported
70             resource. The exported resource is a ZIP archive that contains the
71             exported resource in JSON format. The structure of the archive may
72             change. Your code should not rely on the archive structure.
73              
74              
75             =head2 Version => Str
76              
77             The version of the bot being exported.
78              
79              
80             =head2 _request_id => Str
81              
82              
83             =cut
84