Method: Aws::SecretsManager::Types::UpdateSecretRequest#secret_id
- Defined in:
- lib/aws-sdk-secretsmanager/types.rb
#secret_id ⇒ String
The ARN or name of the secret.
For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See [Finding a secret from a partial ARN].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/troubleshoot.html#ARN_secretnamehyphen
2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 2499 class UpdateSecretRequest < Struct.new( :secret_id, :client_request_token, :description, :kms_key_id, :secret_binary, :secret_string, :type) SENSITIVE = [:secret_binary, :secret_string] include Aws::Structure end |