File Coverage

blib/lib/Paws/IAM/GetSAMLProviderResponse.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::IAM::GetSAMLProviderResponse;
3 1     1   658 use Moose;
  1         4  
  1         9  
4             has CreateDate => (is => 'ro', isa => 'Str');
5             has SAMLMetadataDocument => (is => 'ro', isa => 'Str');
6             has ValidUntil => (is => 'ro', isa => 'Str');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::IAM::GetSAMLProviderResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 CreateDate => Str
21              
22             The date and time when the SAML provider was created.
23              
24              
25             =head2 SAMLMetadataDocument => Str
26              
27             The XML metadata document that includes information about an identity
28             provider.
29              
30              
31             =head2 ValidUntil => Str
32              
33             The expiration date and time for the SAML provider.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40