File Coverage

blib/lib/Paws/CodeDeploy/TargetInstances.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::CodeDeploy::TargetInstances;
2 1     1   285 use Moose;
  1         3  
  1         5  
3             has AutoScalingGroups => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'autoScalingGroups', traits => ['NameInRequest']);
4             has Ec2TagSet => (is => 'ro', isa => 'Paws::CodeDeploy::EC2TagSet', request_name => 'ec2TagSet', traits => ['NameInRequest']);
5             has TagFilters => (is => 'ro', isa => 'ArrayRef[Paws::CodeDeploy::EC2TagFilter]', request_name => 'tagFilters', traits => ['NameInRequest']);
6             1;
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::CodeDeploy::TargetInstances
13              
14             =head1 USAGE
15              
16             This class represents one of two things:
17              
18             =head3 Arguments in a call to a service
19              
20             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
21             Each attribute should be used as a named argument in the calls that expect this type of object.
22              
23             As an example, if Att1 is expected to be a Paws::CodeDeploy::TargetInstances object:
24              
25             $service_obj->Method(Att1 => { AutoScalingGroups => $value, ..., TagFilters => $value });
26              
27             =head3 Results returned from an API call
28              
29             Use accessors for each attribute. If Att1 is expected to be an Paws::CodeDeploy::TargetInstances object:
30              
31             $result = $service_obj->Method(...);
32             $result->Att1->AutoScalingGroups
33              
34             =head1 DESCRIPTION
35              
36             Information about the instances to be used in the replacement
37             environment in a blue/green deployment.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 AutoScalingGroups => ArrayRef[Str|Undef]
43              
44             The names of one or more Auto Scaling groups to identify a replacement
45             environment for a blue/green deployment.
46              
47              
48             =head2 Ec2TagSet => L<Paws::CodeDeploy::EC2TagSet>
49              
50             Information about the groups of EC2 instance tags that an instance must
51             be identified by in order for it to be included in the replacement
52             environment for a blue/green deployment. Cannot be used in the same
53             call as tagFilters.
54              
55              
56             =head2 TagFilters => ArrayRef[L<Paws::CodeDeploy::EC2TagFilter>]
57              
58             The tag filter key, type, and value used to identify Amazon EC2
59             instances in a replacement environment for a blue/green deployment.
60             Cannot be used in the same call as ec2TagSet.
61              
62              
63              
64             =head1 SEE ALSO
65              
66             This class forms part of L<Paws>, describing an object used in L<Paws::CodeDeploy>
67              
68             =head1 BUGS and CONTRIBUTIONS
69              
70             The source code is located here: https://github.com/pplu/aws-sdk-perl
71              
72             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
73              
74             =cut
75