Class: Aws::SecretsManager::Types::SecretVersionsListEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecretsManager::Types::SecretVersionsListEntry
- Includes:
- Aws::Structure
- Defined in:
- 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.
1883 1884 1885 1886 1887 1888 1889 1890 1891 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1883 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.
1883 1884 1885 1886 1887 1888 1889 1890 1891 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1883 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.
1883 1884 1885 1886 1887 1888 1889 1890 1891 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1883 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.
1883 1884 1885 1886 1887 1888 1889 1890 1891 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1883 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.
1883 1884 1885 1886 1887 1888 1889 1890 1891 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1883 class SecretVersionsListEntry < Struct.new( :version_id, :version_stages, :last_accessed_date, :created_date, :kms_key_ids) SENSITIVE = [] include Aws::Structure end |