File Coverage

blib/lib/Paws/RDS/EC2SecurityGroup.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Paws::RDS::EC2SecurityGroup;
2 1     1   695 use Moose;
  1     1   3  
  1         10  
  1         597  
  1         4  
  1         10  
3             has EC2SecurityGroupId => (is => 'ro', isa => 'Str');
4             has EC2SecurityGroupName => (is => 'ro', isa => 'Str');
5             has EC2SecurityGroupOwnerId => (is => 'ro', isa => 'Str');
6             has Status => (is => 'ro', isa => 'Str');
7             1;
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::RDS::EC2SecurityGroup
14              
15             =head1 USAGE
16              
17             This class represents one of two things:
18              
19             =head3 Arguments in a call to a service
20              
21             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
22             Each attribute should be used as a named argument in the calls that expect this type of object.
23              
24             As an example, if Att1 is expected to be a Paws::RDS::EC2SecurityGroup object:
25              
26             $service_obj->Method(Att1 => { EC2SecurityGroupId => $value, ..., Status => $value });
27              
28             =head3 Results returned from an API call
29              
30             Use accessors for each attribute. If Att1 is expected to be an Paws::RDS::EC2SecurityGroup object:
31              
32             $result = $service_obj->Method(...);
33             $result->Att1->EC2SecurityGroupId
34              
35             =head1 DESCRIPTION
36              
37             This data type is used as a response element in the following actions:
38              
39             =over
40              
41             =item *
42              
43             AuthorizeDBSecurityGroupIngress
44              
45             =item *
46              
47             DescribeDBSecurityGroups
48              
49             =item *
50              
51             RevokeDBSecurityGroupIngress
52              
53             =back
54              
55              
56             =head1 ATTRIBUTES
57              
58              
59             =head2 EC2SecurityGroupId => Str
60              
61             Specifies the id of the EC2 security group.
62              
63              
64             =head2 EC2SecurityGroupName => Str
65              
66             Specifies the name of the EC2 security group.
67              
68              
69             =head2 EC2SecurityGroupOwnerId => Str
70              
71             Specifies the AWS ID of the owner of the EC2 security group specified
72             in the C<EC2SecurityGroupName> field.
73              
74              
75             =head2 Status => Str
76              
77             Provides the status of the EC2 security group. Status can be
78             "authorizing", "authorized", "revoking", and "revoked".
79              
80              
81              
82             =head1 SEE ALSO
83              
84             This class forms part of L<Paws>, describing an object used in L<Paws::RDS>
85              
86             =head1 BUGS and CONTRIBUTIONS
87              
88             The source code is located here: https://github.com/pplu/aws-sdk-perl
89              
90             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
91              
92             =cut
93