Class: Aws::SecretsManager::Types::RestoreSecretRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-secretsmanager/types.rb

Overview

Note:

When making an API call, you may pass RestoreSecretRequest data as a hash:

{
  secret_id: "SecretIdType", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#secret_idString

The ARN or name of the secret to restore.

For an ARN, we recommend that you specify a complete ARN rather than a partial ARN.

Returns:

  • (String)


1605
1606
1607
1608
1609
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1605

class RestoreSecretRequest < Struct.new(
  :secret_id)
  SENSITIVE = []
  include Aws::Structure
end