File Coverage

blib/lib/Paws/Lambda/VpcConfig.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::Lambda::VpcConfig;
2 1     1   420 use Moose;
  1     1   3  
  1         6  
  1         594  
  1         3  
  1         6  
3             has SecurityGroupIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
4             has SubnetIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
5             1;
6              
7             ### main pod documentation begin ###
8              
9             =head1 NAME
10              
11             Paws::Lambda::VpcConfig
12              
13             =head1 USAGE
14              
15             This class represents one of two things:
16              
17             =head3 Arguments in a call to a service
18              
19             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
20             Each attribute should be used as a named argument in the calls that expect this type of object.
21              
22             As an example, if Att1 is expected to be a Paws::Lambda::VpcConfig object:
23              
24             $service_obj->Method(Att1 => { SecurityGroupIds => $value, ..., SubnetIds => $value });
25              
26             =head3 Results returned from an API call
27              
28             Use accessors for each attribute. If Att1 is expected to be an Paws::Lambda::VpcConfig object:
29              
30             $result = $service_obj->Method(...);
31             $result->Att1->SecurityGroupIds
32              
33             =head1 DESCRIPTION
34              
35             If your Lambda function accesses resources in a VPC, you provide this
36             parameter identifying the list of security group IDs and subnet IDs.
37             These must belong to the same VPC. You must provide at least one
38             security group and one subnet ID.
39              
40             =head1 ATTRIBUTES
41              
42              
43             =head2 SecurityGroupIds => ArrayRef[Str|Undef]
44              
45             A list of one or more security groups IDs in your VPC.
46              
47              
48             =head2 SubnetIds => ArrayRef[Str|Undef]
49              
50             A list of one or more subnet IDs in your VPC.
51              
52              
53              
54             =head1 SEE ALSO
55              
56             This class forms part of L<Paws>, describing an object used in L<Paws::Lambda>
57              
58             =head1 BUGS and CONTRIBUTIONS
59              
60             The source code is located here: https://github.com/pplu/aws-sdk-perl
61              
62             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
63              
64             =cut
65