Class: Aws::SecretsManager::Types::SecretVersionsListEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecretsManager::Types::SecretVersionsListEntry
- Defined in:
- gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb
Overview
A structure that contains information about one version of a secret.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_date ⇒ Time
The date and time this version of the secret was created.
-
#kms_key_ids ⇒ Array<String>
The KMS keys used to encrypt the secret version.
-
#last_accessed_date ⇒ Time
The date that this version of the secret was last accessed.
-
#version_id ⇒ String
The unique version identifier of this version of the secret.
-
#version_stages ⇒ Array<String>
An array of staging labels that are currently associated with this version of the secret.
Instance Attribute Details
#created_date ⇒ Time
The date and time this version of the secret was created.
2092 2093 2094 2095 2096 2097 2098 2099 2100 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 2092 class SecretVersionsListEntry < Struct.new( :version_id, :version_stages, :last_accessed_date, :created_date, :kms_key_ids) SENSITIVE = [] include Aws::Structure end |
#kms_key_ids ⇒ Array<String>
The KMS keys used to encrypt the secret version.
2092 2093 2094 2095 2096 2097 2098 2099 2100 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 2092 class SecretVersionsListEntry < Struct.new( :version_id, :version_stages, :last_accessed_date, :created_date, :kms_key_ids) SENSITIVE = [] include Aws::Structure end |
#last_accessed_date ⇒ Time
The date that this version of the secret was last accessed. Note that the resolution of this field is at the date level and does not include the time.
2092 2093 2094 2095 2096 2097 2098 2099 2100 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 2092 class SecretVersionsListEntry < Struct.new( :version_id, :version_stages, :last_accessed_date, :created_date, :kms_key_ids) SENSITIVE = [] include Aws::Structure end |
#version_id ⇒ String
The unique version identifier of this version of the secret.
2092 2093 2094 2095 2096 2097 2098 2099 2100 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 2092 class SecretVersionsListEntry < Struct.new( :version_id, :version_stages, :last_accessed_date, :created_date, :kms_key_ids) SENSITIVE = [] include Aws::Structure end |
#version_stages ⇒ Array<String>
An array of staging labels that are currently associated with this version of the secret.
2092 2093 2094 2095 2096 2097 2098 2099 2100 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 2092 class SecretVersionsListEntry < Struct.new( :version_id, :version_stages, :last_accessed_date, :created_date, :kms_key_ids) SENSITIVE = [] include Aws::Structure end |