Class: Aws::ComputeOptimizer::Types::EnrollmentFilter

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

Overview

Describes a filter that returns a more specific list of account enrollment statuses. Use this filter with the GetEnrollmentStatusesForOrganization action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the filter.

Specify Status to return accounts with a specific enrollment status (for example, Active).

Returns:

  • (String)


1451
1452
1453
1454
1455
1456
# File 'gems/aws-sdk-computeoptimizer/lib/aws-sdk-computeoptimizer/types.rb', line 1451

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

#valuesArray<String>

The value of the filter.

The valid values are Active, Inactive, Pending, and Failed.

Returns:

  • (Array<String>)


1451
1452
1453
1454
1455
1456
# File 'gems/aws-sdk-computeoptimizer/lib/aws-sdk-computeoptimizer/types.rb', line 1451

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