Class: Aws::ApplicationDiscoveryService::Types::ImportTaskFilter

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

Overview

A name-values pair of elements you can use to filter the results when querying your import tasks. Currently, wildcards are not supported for filters.

<note markdown=“1”> When filtering by import status, all other filter values are ignored.

</note>

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name, status, or import task ID for a specific import task.

Returns:

  • (String)


1562
1563
1564
1565
1566
1567
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1562

class ImportTaskFilter < Struct.new(
  :name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

An array of strings that you can provide to match against a specific name, status, or import task ID to filter the results for your import task queries.

Returns:

  • (Array<String>)


1562
1563
1564
1565
1566
1567
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1562

class ImportTaskFilter < Struct.new(
  :name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end