describeCertificates

abstract suspend fun describeCertificates(input: DescribeCertificatesRequest = DescribeCertificatesRequest { }): DescribeCertificatesResponse

Lists the set of certificate authority (CA) certificates provided by Amazon RDS for this Amazon Web Services account.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

Samples


fun main() { 
   //sampleStart 
   // The following example retrieves the details of the certificate associated with the user s default
// region.
val resp = rdsClient.describeCertificates() 
   //sampleEnd
}