Class: Aws::Omics::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Omics::Types::Filter
- Defined in:
- gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb
Overview
Use filters to return a subset of resources. You can define filters for specific parameters, such as the resource status.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arns ⇒ Array<String>
Filter based on the Amazon Resource Number (ARN) of the resource.
-
#status ⇒ Array<String>
Filter based on the resource status.
-
#type ⇒ Array<String>
The type of resources to be filtered.
Instance Attribute Details
#resource_arns ⇒ Array<String>
Filter based on the Amazon Resource Number (ARN) of the resource. You can specify up to 10 values.
1644 1645 1646 1647 1648 1649 1650 |
# File 'gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb', line 1644 class Filter < Struct.new( :resource_arns, :status, :type) SENSITIVE = [] include Aws::Structure end |
#status ⇒ Array<String>
Filter based on the resource status. You can specify up to 10 values.
1644 1645 1646 1647 1648 1649 1650 |
# File 'gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb', line 1644 class Filter < Struct.new( :resource_arns, :status, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ Array<String>
The type of resources to be filtered. You can specify one or more of the resource types.
1644 1645 1646 1647 1648 1649 1650 |
# File 'gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb', line 1644 class Filter < Struct.new( :resource_arns, :status, :type) SENSITIVE = [] include Aws::Structure end |