File Coverage

blib/lib/Paws/Inspector/DescribeCrossAccountAccessRoleResponse.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::Inspector::DescribeCrossAccountAccessRoleResponse;
3 1     1   624 use Moose;
  1         4  
  1         10  
4             has RegisteredAt => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'registeredAt' , required => 1);
5             has RoleArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'roleArn' , required => 1);
6             has Valid => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'valid' , required => 1);
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::Inspector::DescribeCrossAccountAccessRoleResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 B<REQUIRED> RegisteredAt => Str
20              
21             The date when the cross-account access role was registered.
22              
23              
24             =head2 B<REQUIRED> RoleArn => Str
25              
26             The ARN that specifies the IAM role that Amazon Inspector uses to
27             access your AWS account.
28              
29              
30             =head2 B<REQUIRED> Valid => Bool
31              
32             A Boolean value that specifies whether the IAM role has the necessary
33             policies attached to enable Amazon Inspector to access your AWS
34             account.
35              
36              
37             =head2 _request_id => Str
38              
39              
40             =cut
41              
42             1;