Class: Aws::IAM::Types::SigningCertificate
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::IAM::Types::SigningCertificate
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains information about an X.509 signing certificate.
This data type is used as a response element in the UploadSigningCertificate and ListSigningCertificates operations.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #certificate_body  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The contents of the signing certificate. 
- 
  
    
      #certificate_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID for the signing certificate. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of the signing certificate. 
- 
  
    
      #upload_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The date when the signing certificate was uploaded. 
- 
  
    
      #user_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the user the signing certificate is associated with. 
Instance Attribute Details
#certificate_body ⇒ String
The contents of the signing certificate.
| 9737 9738 9739 9740 9741 9742 9743 9744 9745 | # File 'lib/aws-sdk-iam/types.rb', line 9737 class SigningCertificate < Struct.new( :user_name, :certificate_id, :certificate_body, :status, :upload_date) SENSITIVE = [] include Aws::Structure end | 
#certificate_id ⇒ String
The ID for the signing certificate.
| 9737 9738 9739 9740 9741 9742 9743 9744 9745 | # File 'lib/aws-sdk-iam/types.rb', line 9737 class SigningCertificate < Struct.new( :user_name, :certificate_id, :certificate_body, :status, :upload_date) SENSITIVE = [] include Aws::Structure end | 
#status ⇒ String
The status of the signing certificate. ‘Active` means that the key is valid for API calls, while `Inactive` means it is not.
| 9737 9738 9739 9740 9741 9742 9743 9744 9745 | # File 'lib/aws-sdk-iam/types.rb', line 9737 class SigningCertificate < Struct.new( :user_name, :certificate_id, :certificate_body, :status, :upload_date) SENSITIVE = [] include Aws::Structure end | 
#upload_date ⇒ Time
The date when the signing certificate was uploaded.
| 9737 9738 9739 9740 9741 9742 9743 9744 9745 | # File 'lib/aws-sdk-iam/types.rb', line 9737 class SigningCertificate < Struct.new( :user_name, :certificate_id, :certificate_body, :status, :upload_date) SENSITIVE = [] include Aws::Structure end | 
#user_name ⇒ String
The name of the user the signing certificate is associated with.
| 9737 9738 9739 9740 9741 9742 9743 9744 9745 | # File 'lib/aws-sdk-iam/types.rb', line 9737 class SigningCertificate < Struct.new( :user_name, :certificate_id, :certificate_body, :status, :upload_date) SENSITIVE = [] include Aws::Structure end |