File Coverage

blib/lib/Paws/Batch/CreateComputeEnvironment.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              
2             package Paws::Batch::CreateComputeEnvironment;
3 1     1   297 use Moose;
  1         3  
  1         5  
4             has ComputeEnvironmentName => (is => 'ro', isa => 'Str', required => 1);
5             has ComputeResources => (is => 'ro', isa => 'Paws::Batch::ComputeResource');
6             has ServiceRole => (is => 'ro', isa => 'Str', required => 1);
7             has State => (is => 'ro', isa => 'Str');
8             has Type => (is => 'ro', isa => 'Str', required => 1);
9              
10 1     1   5436 use MooseX::ClassAttribute;
  1         2  
  1         8  
11              
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateComputeEnvironment');
13             class_has _api_uri => (isa => 'Str', is => 'ro', default => '/v1/createcomputeenvironment');
14             class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST');
15             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Batch::CreateComputeEnvironmentResponse');
16             class_has _result_key => (isa => 'Str', is => 'ro');
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::Batch::CreateComputeEnvironment - Arguments for method CreateComputeEnvironment on Paws::Batch
24              
25             =head1 DESCRIPTION
26              
27             This class represents the parameters used for calling the method CreateComputeEnvironment on the
28             AWS Batch service. Use the attributes of this class
29             as arguments to method CreateComputeEnvironment.
30              
31             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateComputeEnvironment.
32              
33             As an example:
34              
35             $service_obj->CreateComputeEnvironment(Att1 => $value1, Att2 => $value2, ...);
36              
37             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.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 B<REQUIRED> ComputeEnvironmentName => Str
43              
44             The name for your compute environment. Up to 128 letters (uppercase and
45             lowercase), numbers, and underscores are allowed.
46              
47              
48              
49             =head2 ComputeResources => L<Paws::Batch::ComputeResource>
50              
51             Details of the compute resources managed by the compute environment.
52             This parameter is required for managed compute environments.
53              
54              
55              
56             =head2 B<REQUIRED> ServiceRole => Str
57              
58             The full Amazon Resource Name (ARN) of the IAM role that allows AWS
59             Batch to make calls to other AWS services on your behalf.
60              
61             If your specified role has a path other than C</>, then you must either
62             specify the full role ARN (this is recommended) or prefix the role name
63             with the path.
64              
65             Depending on how you created your AWS Batch service role, its ARN may
66             contain the C<service-role> path prefix. When you only specify the name
67             of the service role, AWS Batch assumes that your ARN does not use the
68             C<service-role> path prefix. Because of this, we recommend that you
69             specify the full ARN of your service role when you create compute
70             environments.
71              
72              
73              
74             =head2 State => Str
75              
76             The state of the compute environment. If the state is C<ENABLED>, then
77             the compute environment accepts jobs from a queue and can scale out
78             automatically based on queues.
79              
80             Valid values are: C<"ENABLED">, C<"DISABLED">
81              
82             =head2 B<REQUIRED> Type => Str
83              
84             The type of the compute environment.
85              
86             Valid values are: C<"MANAGED">, C<"UNMANAGED">
87              
88              
89             =head1 SEE ALSO
90              
91             This class forms part of L<Paws>, documenting arguments for method CreateComputeEnvironment in L<Paws::Batch>
92              
93             =head1 BUGS and CONTRIBUTIONS
94              
95             The source code is located here: https://github.com/pplu/aws-sdk-perl
96              
97             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
98              
99             =cut
100