You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SecretsManager::Types::Filter

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Filter as input to an Aws::Client method, you can use a vanilla Hash:

{
  key: "description", # accepts description, name, tag-key, tag-value, all
  values: ["FilterValueStringType"],
}

Allows you to filter your list of secrets.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

Filters your list of secrets by a specific key.

Possible values:

  • description
  • name
  • tag-key
  • tag-value
  • all

Returns:

  • (String)

    Filters your list of secrets by a specific key.

#valuesArray<String>

Filters your list of secrets by a specific value.

Returns:

  • (Array<String>)

    Filters your list of secrets by a specific value.