Class: Aws::ElasticInference::Types::Filter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elasticinference/lib/aws-sdk-elasticinference/types.rb

Overview

A filter expression for the Elastic Inference Accelerator list.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

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.

Returns:

  • (String)


253
254
255
256
257
258
# File 'gems/aws-sdk-elasticinference/lib/aws-sdk-elasticinference/types.rb', line 253

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

#valuesArray<String>

The values for the filter of the Elastic Inference Accelerator list.

Returns:

  • (Array<String>)


253
254
255
256
257
258
# File 'gems/aws-sdk-elasticinference/lib/aws-sdk-elasticinference/types.rb', line 253

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