Class: Aws::IAM::Types::GetCredentialReportResponse
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::IAM::Types::GetCredentialReportResponse
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains the response to a successful GetCredentialReport request.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Contains the credential report. 
- 
  
    
      #generated_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The date and time when the credential report was created, in [ISO 8601 date-time format]. 
- 
  
    
      #report_format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The format (MIME type) of the credential report. 
Instance Attribute Details
#content ⇒ String
Contains the credential report. The report is Base64-encoded.
| 3314 3315 3316 3317 3318 3319 3320 | # File 'lib/aws-sdk-iam/types.rb', line 3314 class GetCredentialReportResponse < Struct.new( :content, :report_format, :generated_time) SENSITIVE = [] include Aws::Structure end | 
#generated_time ⇒ Time
The date and time when the credential report was created, in [ISO 8601 date-time format].
| 3314 3315 3316 3317 3318 3319 3320 | # File 'lib/aws-sdk-iam/types.rb', line 3314 class GetCredentialReportResponse < Struct.new( :content, :report_format, :generated_time) SENSITIVE = [] include Aws::Structure end | 
#report_format ⇒ String
The format (MIME type) of the credential report.
| 3314 3315 3316 3317 3318 3319 3320 | # File 'lib/aws-sdk-iam/types.rb', line 3314 class GetCredentialReportResponse < Struct.new( :content, :report_format, :generated_time) SENSITIVE = [] include Aws::Structure end |