File Coverage

blib/lib/Paws/RDS/DBSecurityGroup.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::DBSecurityGroup;
2 1     1   598 use Moose;
  1     1   4  
  1         8  
  1         654  
  1         5  
  1         9  
3             has DBSecurityGroupArn => (is => 'ro', isa => 'Str');
4             has DBSecurityGroupDescription => (is => 'ro', isa => 'Str');
5             has DBSecurityGroupName => (is => 'ro', isa => 'Str');
6             has EC2SecurityGroups => (is => 'ro', isa => 'ArrayRef[Paws::RDS::EC2SecurityGroup]', request_name => 'EC2SecurityGroup', traits => ['NameInRequest']);
7             has IPRanges => (is => 'ro', isa => 'ArrayRef[Paws::RDS::IPRange]', request_name => 'IPRange', traits => ['NameInRequest']);
8             has OwnerId => (is => 'ro', isa => 'Str');
9             has VpcId => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::RDS::DBSecurityGroup
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::RDS::DBSecurityGroup object:
28              
29             $service_obj->Method(Att1 => { DBSecurityGroupArn => $value, ..., VpcId => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::RDS::DBSecurityGroup object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->DBSecurityGroupArn
37              
38             =head1 DESCRIPTION
39              
40             Contains the result of a successful invocation of the following
41             actions:
42              
43             =over
44              
45             =item *
46              
47             DescribeDBSecurityGroups
48              
49             =item *
50              
51             AuthorizeDBSecurityGroupIngress
52              
53             =item *
54              
55             CreateDBSecurityGroup
56              
57             =item *
58              
59             RevokeDBSecurityGroupIngress
60              
61             =back
62              
63             This data type is used as a response element in the
64             DescribeDBSecurityGroups action.
65              
66             =head1 ATTRIBUTES
67              
68              
69             =head2 DBSecurityGroupArn => Str
70              
71             The Amazon Resource Name (ARN) for the DB security group.
72              
73              
74             =head2 DBSecurityGroupDescription => Str
75              
76             Provides the description of the DB security group.
77              
78              
79             =head2 DBSecurityGroupName => Str
80              
81             Specifies the name of the DB security group.
82              
83              
84             =head2 EC2SecurityGroups => ArrayRef[L<Paws::RDS::EC2SecurityGroup>]
85              
86             Contains a list of EC2SecurityGroup elements.
87              
88              
89             =head2 IPRanges => ArrayRef[L<Paws::RDS::IPRange>]
90              
91             Contains a list of IPRange elements.
92              
93              
94             =head2 OwnerId => Str
95              
96             Provides the AWS ID of the owner of a specific DB security group.
97              
98              
99             =head2 VpcId => Str
100              
101             Provides the VpcId of the DB security group.
102              
103              
104              
105             =head1 SEE ALSO
106              
107             This class forms part of L<Paws>, describing an object used in L<Paws::RDS>
108              
109             =head1 BUGS and CONTRIBUTIONS
110              
111             The source code is located here: https://github.com/pplu/aws-sdk-perl
112              
113             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
114              
115             =cut
116