Class: Aws::SecretsManager::Types::ListSecretVersionIdsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecretsManager::Types::ListSecretVersionIdsResponse
- Defined in:
- gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the secret.
-
#name ⇒ String
The name of the secret.
-
#next_token ⇒ String
Secrets Manager includes this value if there's more output available than what is included in the current response.
-
#versions ⇒ Array<Types::SecretVersionsListEntry>
A list of the versions of the secret.
Instance Attribute Details
#arn ⇒ String
The ARN of the secret.
1106 1107 1108 1109 1110 1111 1112 1113 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 1106 class ListSecretVersionIdsResponse < Struct.new( :versions, :next_token, :arn, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the secret.
1106 1107 1108 1109 1110 1111 1112 1113 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 1106 class ListSecretVersionIdsResponse < Struct.new( :versions, :next_token, :arn, :name) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Secrets Manager includes this value if there's more output
available than what is included in the current response. This can
occur even when the response includes no values at all, such as when
you ask for a filtered view of a long list. To get the next results,
call ListSecretVersionIds
again with this value.
1106 1107 1108 1109 1110 1111 1112 1113 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 1106 class ListSecretVersionIdsResponse < Struct.new( :versions, :next_token, :arn, :name) SENSITIVE = [] include Aws::Structure end |
#versions ⇒ Array<Types::SecretVersionsListEntry>
A list of the versions of the secret.
1106 1107 1108 1109 1110 1111 1112 1113 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 1106 class ListSecretVersionIdsResponse < Struct.new( :versions, :next_token, :arn, :name) SENSITIVE = [] include Aws::Structure end |