File Coverage

blib/lib/Paws/RedShift/AuthorizeClusterSecurityGroupIngress.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::RedShift::AuthorizeClusterSecurityGroupIngress;
3 1     1   275 use Moose;
  1     1   2  
  1         6  
  1         468  
  1         2  
  1         9  
4             has CIDRIP => (is => 'ro', isa => 'Str');
5             has ClusterSecurityGroupName => (is => 'ro', isa => 'Str', required => 1);
6             has EC2SecurityGroupName => (is => 'ro', isa => 'Str');
7             has EC2SecurityGroupOwnerId => (is => 'ro', isa => 'Str');
8              
9 1     1   5294 use MooseX::ClassAttribute;
  1     1   2  
  1         7  
  1         5874  
  1         2  
  1         7  
10              
11             class_has _api_call => (isa => 'Str', is => 'ro', default => 'AuthorizeClusterSecurityGroupIngress');
12             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::RedShift::AuthorizeClusterSecurityGroupIngressResult');
13             class_has _result_key => (isa => 'Str', is => 'ro', default => 'AuthorizeClusterSecurityGroupIngressResult');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::RedShift::AuthorizeClusterSecurityGroupIngress - Arguments for method AuthorizeClusterSecurityGroupIngress on Paws::RedShift
21              
22             =head1 DESCRIPTION
23              
24             This class represents the parameters used for calling the method AuthorizeClusterSecurityGroupIngress on the
25             Amazon Redshift service. Use the attributes of this class
26             as arguments to method AuthorizeClusterSecurityGroupIngress.
27              
28             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to AuthorizeClusterSecurityGroupIngress.
29              
30             As an example:
31              
32             $service_obj->AuthorizeClusterSecurityGroupIngress(Att1 => $value1, Att2 => $value2, ...);
33              
34             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
35              
36             =head1 ATTRIBUTES
37              
38              
39             =head2 CIDRIP => Str
40              
41             The IP range to be added the Amazon Redshift security group.
42              
43              
44              
45             =head2 B<REQUIRED> ClusterSecurityGroupName => Str
46              
47             The name of the security group to which the ingress rule is added.
48              
49              
50              
51             =head2 EC2SecurityGroupName => Str
52              
53             The EC2 security group to be added the Amazon Redshift security group.
54              
55              
56              
57             =head2 EC2SecurityGroupOwnerId => Str
58              
59             The AWS account number of the owner of the security group specified by
60             the I<EC2SecurityGroupName> parameter. The AWS Access Key ID is not an
61             acceptable value.
62              
63             Example: C<111122223333>
64              
65              
66              
67              
68             =head1 SEE ALSO
69              
70             This class forms part of L<Paws>, documenting arguments for method AuthorizeClusterSecurityGroupIngress in L<Paws::RedShift>
71              
72             =head1 BUGS and CONTRIBUTIONS
73              
74             The source code is located here: https://github.com/pplu/aws-sdk-perl
75              
76             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
77              
78             =cut
79