File Coverage

blib/lib/Paws/RDS/PendingMaintenanceAction.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             package Paws::RDS::PendingMaintenanceAction;
2 1     1   276 use Moose;
  1         2  
  1         7  
3             has Action => (is => 'ro', isa => 'Str');
4             has AutoAppliedAfterDate => (is => 'ro', isa => 'Str');
5             has CurrentApplyDate => (is => 'ro', isa => 'Str');
6             has Description => (is => 'ro', isa => 'Str');
7             has ForcedApplyDate => (is => 'ro', isa => 'Str');
8             has OptInStatus => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::RDS::PendingMaintenanceAction
16              
17             =head1 USAGE
18              
19             This class represents one of two things:
20              
21             =head3 Arguments in a call to a service
22              
23             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
24             Each attribute should be used as a named argument in the calls that expect this type of object.
25              
26             As an example, if Att1 is expected to be a Paws::RDS::PendingMaintenanceAction object:
27              
28             $service_obj->Method(Att1 => { Action => $value, ..., OptInStatus => $value });
29              
30             =head3 Results returned from an API call
31              
32             Use accessors for each attribute. If Att1 is expected to be an Paws::RDS::PendingMaintenanceAction object:
33              
34             $result = $service_obj->Method(...);
35             $result->Att1->Action
36              
37             =head1 DESCRIPTION
38              
39             Provides information about a pending maintenance action for a resource.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 Action => Str
45              
46             The type of pending maintenance action that is available for the
47             resource.
48              
49              
50             =head2 AutoAppliedAfterDate => Str
51              
52             The date of the maintenance window when the action will be applied. The
53             maintenance action will be applied to the resource during its first
54             maintenance window after this date. If this date is specified, any
55             C<next-maintenance> opt-in requests are ignored.
56              
57              
58             =head2 CurrentApplyDate => Str
59              
60             The effective date when the pending maintenance action will be applied
61             to the resource. This date takes into account opt-in requests received
62             from the ApplyPendingMaintenanceAction API, the
63             C<AutoAppliedAfterDate>, and the C<ForcedApplyDate>. This value is
64             blank if an opt-in request has not been received and nothing has been
65             specified as C<AutoAppliedAfterDate> or C<ForcedApplyDate>.
66              
67              
68             =head2 Description => Str
69              
70             A description providing more detail about the maintenance action.
71              
72              
73             =head2 ForcedApplyDate => Str
74              
75             The date when the maintenance action will be automatically applied. The
76             maintenance action will be applied to the resource on this date
77             regardless of the maintenance window for the resource. If this date is
78             specified, any C<immediate> opt-in requests are ignored.
79              
80              
81             =head2 OptInStatus => Str
82              
83             Indicates the type of opt-in request that has been received for the
84             resource.
85              
86              
87              
88             =head1 SEE ALSO
89              
90             This class forms part of L<Paws>, describing an object used in L<Paws::RDS>
91              
92             =head1 BUGS and CONTRIBUTIONS
93              
94             The source code is located here: https://github.com/pplu/aws-sdk-perl
95              
96             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
97              
98             =cut
99