aws.iam.list_server_certificates
Example SQL Queries
SELECT * FROMaws.iam.list_server_certificates;Description
Lists the server certificates stored in IAM that have the specified path prefix. If none exist, the operation returns an empty list.
You can paginate the results using the MaxItems and Marker parameters.
For more information about working with server certificates, see Working with server certificates in the IAM User Guide. This topic also includes a list of Amazon Web Services services that can use the server certificates that you manage with IAM.
IAM resource-listing operations return a subset of the available attributes for the resource. For example, this operation does not return tags, even though they are an attribute of the returned object. To view all of the information for a servercertificate, see GetServerCertificate.
Table Definition
| Column Name | Column Data Type |
|---|---|
| path_prefix Input Column The path prefix for filtering the results. For example: /company/servercerts would get all server certificates for which the path starts with /company/servercerts. This parameter is optional. If it is not included, it defaults to a slash (/), listing all server certificates. This parameter allows (through its regex pattern) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! (\u0021) through the DEL character (\u007F), including most punctuation characters, digits, and upper and lowercased letters. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| arn The Amazon Resource Name (ARN) specifying the server certificate. For more information about ARNs and how to use them in policies, see IAM identifiers in the IAM User Guide. | VARCHAR |
| expiration The date on which the certificate is set to expire. | TIMESTAMP_S |
| path The path to the server certificate. For more information about paths, see IAM identifiers in the IAM User Guide. | VARCHAR |
| server_certificate_id The stable and unique string identifying the server certificate. For more information about IDs, see IAM identifiers in the IAM User Guide. | VARCHAR |
| server_certificate_name The name that identifies the server certificate. | VARCHAR |
| upload_date The date when the server certificate was uploaded. | TIMESTAMP_S |