Class: Aws::DirectoryService::Types::CertificateInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::CertificateInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directoryservice/types.rb
Overview
Contains general information about a certificate.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_id ⇒ String
The identifier of the certificate.
-
#common_name ⇒ String
The common name for the certificate.
-
#expiry_date_time ⇒ Time
The date and time when the certificate will expire.
-
#state ⇒ String
The state of the certificate.
-
#type ⇒ String
The function that the registered certificate performs.
Instance Attribute Details
#certificate_id ⇒ String
The identifier of the certificate.
401 402 403 404 405 406 407 408 409 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 401 class CertificateInfo < Struct.new( :certificate_id, :common_name, :state, :expiry_date_time, :type) SENSITIVE = [] include Aws::Structure end |
#common_name ⇒ String
The common name for the certificate.
401 402 403 404 405 406 407 408 409 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 401 class CertificateInfo < Struct.new( :certificate_id, :common_name, :state, :expiry_date_time, :type) SENSITIVE = [] include Aws::Structure end |
#expiry_date_time ⇒ Time
The date and time when the certificate will expire.
401 402 403 404 405 406 407 408 409 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 401 class CertificateInfo < Struct.new( :certificate_id, :common_name, :state, :expiry_date_time, :type) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The state of the certificate.
401 402 403 404 405 406 407 408 409 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 401 class CertificateInfo < Struct.new( :certificate_id, :common_name, :state, :expiry_date_time, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The function that the registered certificate performs. Valid values include ‘ClientLDAPS` or `ClientCertAuth`. The default value is `ClientLDAPS`.
401 402 403 404 405 406 407 408 409 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 401 class CertificateInfo < Struct.new( :certificate_id, :common_name, :state, :expiry_date_time, :type) SENSITIVE = [] include Aws::Structure end |