Class: Aws::DocDB::Types::Certificate
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::Certificate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-docdb/types.rb
Overview
A certificate authority (CA) certificate for an Amazon Web Services account.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) for the certificate.
-
#certificate_identifier ⇒ String
The unique key that identifies a certificate.
-
#certificate_type ⇒ String
The type of the certificate.
-
#thumbprint ⇒ String
The thumbprint of the certificate.
-
#valid_from ⇒ Time
The starting date-time from which the certificate is valid.
-
#valid_till ⇒ Time
The date-time after which the certificate is no longer valid.
Instance Attribute Details
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) for the certificate.
Example: ‘arn:aws:rds:us-east-1::cert:rds-ca-2019`
191 192 193 194 195 196 197 198 199 200 |
# File 'lib/aws-sdk-docdb/types.rb', line 191 class Certificate < Struct.new( :certificate_identifier, :certificate_type, :thumbprint, :valid_from, :valid_till, :certificate_arn) SENSITIVE = [] include Aws::Structure end |
#certificate_identifier ⇒ String
The unique key that identifies a certificate.
Example: ‘rds-ca-2019`
191 192 193 194 195 196 197 198 199 200 |
# File 'lib/aws-sdk-docdb/types.rb', line 191 class Certificate < Struct.new( :certificate_identifier, :certificate_type, :thumbprint, :valid_from, :valid_till, :certificate_arn) SENSITIVE = [] include Aws::Structure end |
#certificate_type ⇒ String
The type of the certificate.
Example: ‘CA`
191 192 193 194 195 196 197 198 199 200 |
# File 'lib/aws-sdk-docdb/types.rb', line 191 class Certificate < Struct.new( :certificate_identifier, :certificate_type, :thumbprint, :valid_from, :valid_till, :certificate_arn) SENSITIVE = [] include Aws::Structure end |
#thumbprint ⇒ String
The thumbprint of the certificate.
191 192 193 194 195 196 197 198 199 200 |
# File 'lib/aws-sdk-docdb/types.rb', line 191 class Certificate < Struct.new( :certificate_identifier, :certificate_type, :thumbprint, :valid_from, :valid_till, :certificate_arn) SENSITIVE = [] include Aws::Structure end |
#valid_from ⇒ Time
The starting date-time from which the certificate is valid.
Example: ‘2019-07-31T17:57:09Z`
191 192 193 194 195 196 197 198 199 200 |
# File 'lib/aws-sdk-docdb/types.rb', line 191 class Certificate < Struct.new( :certificate_identifier, :certificate_type, :thumbprint, :valid_from, :valid_till, :certificate_arn) SENSITIVE = [] include Aws::Structure end |
#valid_till ⇒ Time
The date-time after which the certificate is no longer valid.
Example: ‘2024-07-31T17:57:09Z`
191 192 193 194 195 196 197 198 199 200 |
# File 'lib/aws-sdk-docdb/types.rb', line 191 class Certificate < Struct.new( :certificate_identifier, :certificate_type, :thumbprint, :valid_from, :valid_till, :certificate_arn) SENSITIVE = [] include Aws::Structure end |