Class: Aws::SecretsManager::Types::UntagResourceRequest

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 UntagResourceRequest data as a hash:

{
  secret_id: "SecretIdType", # required
  tag_keys: ["TagKeyType"], # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#secret_idString

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

Returns:

  • (String)


2175
2176
2177
2178
2179
2180
# File 'lib/aws-sdk-secretsmanager/types.rb', line 2175

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

#tag_keysArray<String>

A list of tag key names to remove from the secret. You don’t specify the value. Both the key and its associated value are removed.

This parameter requires a JSON text string argument.

For storing multiple values, we recommend that you use a JSON text string argument and specify key/value pairs. For more information, see [Specifying parameter values for the Amazon Web Services CLI] in the Amazon Web Services CLI User Guide.

[1]: docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters.html

Returns:

  • (Array<String>)


2175
2176
2177
2178
2179
2180
# File 'lib/aws-sdk-secretsmanager/types.rb', line 2175

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