Class: Aws::RDS::Types::CertificateMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::CertificateMessage
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
Data returned by the DescribeCertificates action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificates ⇒ Array<Types::Certificate>
The list of
Certificateobjects for the Amazon Web Services account. -
#default_certificate_for_new_launches ⇒ String
The default root CA for new databases created by your Amazon Web Services account.
-
#marker ⇒ String
An optional pagination token provided by a previous
DescribeCertificatesrequest.
Instance Attribute Details
#certificates ⇒ Array<Types::Certificate>
The list of Certificate objects for the Amazon Web Services
account.
1030 1031 1032 1033 1034 1035 1036 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 1030 class CertificateMessage < Struct.new( :default_certificate_for_new_launches, :certificates, :marker) SENSITIVE = [] include Aws::Structure end |
#default_certificate_for_new_launches ⇒ String
The default root CA for new databases created by your Amazon Web
Services account. This is either the root CA override set on your
Amazon Web Services account or the system default CA for the Region
if no override exists. To override the default CA, use the
ModifyCertificates operation.
1030 1031 1032 1033 1034 1035 1036 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 1030 class CertificateMessage < Struct.new( :default_certificate_for_new_launches, :certificates, :marker) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
An optional pagination token provided by a previous
DescribeCertificates request. If this parameter is specified, the
response includes only records beyond the marker, up to the value
specified by MaxRecords .
1030 1031 1032 1033 1034 1035 1036 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 1030 class CertificateMessage < Struct.new( :default_certificate_for_new_launches, :certificates, :marker) SENSITIVE = [] include Aws::Structure end |