File Coverage

blib/lib/Paws/IAM/CreateRole.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::IAM::CreateRole;
3 1     1   666 use Moose;
  1     1   3  
  1         8  
  1         660  
  1         2  
  1         7  
4             has AssumeRolePolicyDocument => (is => 'ro', isa => 'Str', required => 1);
5             has Description => (is => 'ro', isa => 'Str');
6             has Path => (is => 'ro', isa => 'Str');
7             has RoleName => (is => 'ro', isa => 'Str', required => 1);
8              
9 1     1   7377 use MooseX::ClassAttribute;
  1     1   3  
  1         10  
  1         6831  
  1         3  
  1         9  
10              
11             class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateRole');
12             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::IAM::CreateRoleResponse');
13             class_has _result_key => (isa => 'Str', is => 'ro', default => 'CreateRoleResult');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::IAM::CreateRole - Arguments for method CreateRole on Paws::IAM
21              
22             =head1 DESCRIPTION
23              
24             This class represents the parameters used for calling the method CreateRole on the
25             AWS Identity and Access Management service. Use the attributes of this class
26             as arguments to method CreateRole.
27              
28             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateRole.
29              
30             As an example:
31              
32             $service_obj->CreateRole(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 B<REQUIRED> AssumeRolePolicyDocument => Str
40              
41             The trust relationship policy document that grants an entity permission
42             to assume the role.
43              
44             The regex pattern used to validate this parameter is a string of
45             characters consisting of any printable ASCII character ranging from the
46             space character (\u0020) through end of the ASCII character range as
47             well as the printable characters in the Basic Latin and Latin-1
48             Supplement character set (through \u00FF). It also includes the special
49             characters tab (\u0009), line feed (\u000A), and carriage return
50             (\u000D).
51              
52              
53              
54             =head2 Description => Str
55              
56             A customer-provided description of the role.
57              
58              
59              
60             =head2 Path => Str
61              
62             The path to the role. For more information about paths, see IAM
63             Identifiers in the I<IAM User Guide>.
64              
65             This parameter is optional. If it is not included, it defaults to a
66             slash (/).
67              
68             This paramater allows (per its regex pattern) a string of characters
69             consisting of either a forward slash (/) by itself or a string that
70             must begin and end with forward slashes, containing any ASCII character
71             from the ! (\u0021) thru the DEL character (\u007F), including most
72             punctuation characters, digits, and upper and lowercased letters.
73              
74              
75              
76             =head2 B<REQUIRED> RoleName => Str
77              
78             The name of the role to create.
79              
80             This parameter allows (per its regex pattern) a string of characters
81             consisting of upper and lowercase alphanumeric characters with no
82             spaces. You can also include any of the following characters: _+=,.@-
83              
84             Role names are not distinguished by case. For example, you cannot
85             create roles named both "PRODROLE" and "prodrole".
86              
87              
88              
89              
90             =head1 SEE ALSO
91              
92             This class forms part of L<Paws>, documenting arguments for method CreateRole in L<Paws::IAM>
93              
94             =head1 BUGS and CONTRIBUTIONS
95              
96             The source code is located here: https://github.com/pplu/aws-sdk-perl
97              
98             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
99              
100             =cut
101