File Coverage

blib/lib/Paws/LexModels/CreateSlotTypeVersionResponse.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::CreateSlotTypeVersionResponse;
3 1     1   391 use Moose;
  1         3  
  1         7  
4             has Checksum => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'checksum');
5             has CreatedDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'createdDate');
6             has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description');
7             has EnumerationValues => (is => 'ro', isa => 'ArrayRef[Paws::LexModels::EnumerationValue]', traits => ['NameInRequest'], request_name => 'enumerationValues');
8             has LastUpdatedDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'lastUpdatedDate');
9             has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name');
10             has ValueSelectionStrategy => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'valueSelectionStrategy');
11             has Version => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'version');
12              
13             has _request_id => (is => 'ro', isa => 'Str');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::LexModels::CreateSlotTypeVersionResponse
21              
22             =head1 ATTRIBUTES
23              
24              
25             =head2 Checksum => Str
26              
27             Checksum of the C<$LATEST> version of the slot type.
28              
29              
30             =head2 CreatedDate => Str
31              
32             The date that the slot type was created.
33              
34              
35             =head2 Description => Str
36              
37             A description of the slot type.
38              
39              
40             =head2 EnumerationValues => ArrayRef[L<Paws::LexModels::EnumerationValue>]
41              
42             A list of C<EnumerationValue> objects that defines the values that the
43             slot type can take.
44              
45              
46             =head2 LastUpdatedDate => Str
47              
48             The date that the slot type was updated. When you create a resource,
49             the creation date and last update date are the same.
50              
51              
52             =head2 Name => Str
53              
54             The name of the slot type.
55              
56              
57             =head2 ValueSelectionStrategy => Str
58              
59             The strategy that Amazon Lex uses to determine the value of the slot.
60             For more information, see PutSlotType.
61              
62             Valid values are: C<"ORIGINAL_VALUE">, C<"TOP_RESOLUTION">
63             =head2 Version => Str
64              
65             The version assigned to the new slot type version.
66              
67              
68             =head2 _request_id => Str
69              
70              
71             =cut
72