Class: Aws::ComputeOptimizer::Types::EnrollmentFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ComputeOptimizer::Types::EnrollmentFilter
- 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
-
#name ⇒ String
The name of the filter.
-
#values ⇒ Array<String>
The value of the filter.
Instance Attribute Details
#name ⇒ String
The name of the filter.
Specify Status
to return accounts with a specific enrollment
status (for example, Active
).
1507 1508 1509 1510 1511 1512 |
# File 'gems/aws-sdk-computeoptimizer/lib/aws-sdk-computeoptimizer/types.rb', line 1507 class EnrollmentFilter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The value of the filter.
The valid values are Active
, Inactive
, Pending
, and Failed
.
1507 1508 1509 1510 1511 1512 |
# File 'gems/aws-sdk-computeoptimizer/lib/aws-sdk-computeoptimizer/types.rb', line 1507 class EnrollmentFilter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |