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.
2248 2249 2250 2251 2252 2253 2254 2255 2256 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 2248 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.
2248 2249 2250 2251 2252 2253 2254 2255 2256 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 2248 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.
2248 2249 2250 2251 2252 2253 2254 2255 2256 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 2248 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.
2248 2249 2250 2251 2252 2253 2254 2255 2256 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 2248 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.
2248 2249 2250 2251 2252 2253 2254 2255 2256 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 2248 class SecretVersionsListEntry < Struct.new( :version_id, :version_stages, :last_accessed_date, :created_date, :kms_key_ids) SENSITIVE = [] include Aws::Structure end |