listSecretVersionIds
abstract suspend fun listSecretVersionIds(input: ListSecretVersionIdsRequest): ListSecretVersionIdsResponse
Lists the versions of a secret. Secrets Manager uses staging labels to indicate the different versions of a secret. For more information, see Secrets Manager concepts: Versions.
To list the secrets in the account, use ListSecrets.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see Logging Secrets Manager events with CloudTrail.
**Required permissions: **secretsmanager:ListSecretVersionIds
. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
Samples
fun main() {
//sampleStart
// The following example shows how to retrieve a list of all of the versions of a secret, including
// those without any staging labels.
val resp = secretsManagerClient.listSecretVersionIds {
secretId = "MyTestDatabaseSecret"
includeDeprecated = true
}
//sampleEnd
}