Class: Aws::SecretsManager::Types::APIErrorType
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecretsManager::Types::APIErrorType
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-secretsmanager/types.rb
Overview
The error Secrets Manager encountered while retrieving an individual secret as part of BatchGetSecretValue.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ String
The error Secrets Manager encountered while retrieving an individual secret as part of BatchGetSecretValue, for example ‘ResourceNotFoundException`,`InvalidParameterException`, `InvalidRequestException`, `DecryptionFailure`, or `AccessDeniedException`.
-
#message ⇒ String
A message describing the error.
-
#secret_id ⇒ String
The ARN or name of the secret.
Instance Attribute Details
#error_code ⇒ String
The error Secrets Manager encountered while retrieving an individual secret as part of BatchGetSecretValue, for example ‘ResourceNotFoundException`,`InvalidParameterException`, `InvalidRequestException`, `DecryptionFailure`, or `AccessDeniedException`.
34 35 36 37 38 39 40 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 34 class APIErrorType < Struct.new( :secret_id, :error_code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
A message describing the error.
34 35 36 37 38 39 40 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 34 class APIErrorType < Struct.new( :secret_id, :error_code, :message) SENSITIVE = [] include Aws::Structure end |
#secret_id ⇒ String
The ARN or name of the secret.
34 35 36 37 38 39 40 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 34 class APIErrorType < Struct.new( :secret_id, :error_code, :message) SENSITIVE = [] include Aws::Structure end |