Class: Aws::ElasticInference::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticInference::Types::Filter
- Defined in:
- gems/aws-sdk-elasticinference/lib/aws-sdk-elasticinference/types.rb
Overview
Note:
When making an API call, you may pass Filter data as a hash:
{
name: "FilterName",
values: ["String"],
}
A filter expression for the Elastic Inference Accelerator list.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The filter name for the Elastic Inference Accelerator list.
-
#values ⇒ Array<String>
The values for the filter of the Elastic Inference Accelerator list.
Instance Attribute Details
#name ⇒ String
The filter name for the Elastic Inference Accelerator list. It can assume the following values: accelerator-type: the type of Elastic Inference Accelerator to filter for. instance-id: an EC2 instance id to filter for.
284 285 286 287 288 289 |
# File 'gems/aws-sdk-elasticinference/lib/aws-sdk-elasticinference/types.rb', line 284 class Filter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |