Interface EnrollmentFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EnrollmentFilter.Builder,EnrollmentFilter>,SdkBuilder<EnrollmentFilter.Builder,EnrollmentFilter>,SdkPojo
- Enclosing class:
- EnrollmentFilter
public static interface EnrollmentFilter.Builder extends SdkPojo, CopyableBuilder<EnrollmentFilter.Builder,EnrollmentFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnrollmentFilter.Buildername(String name)The name of the filter.EnrollmentFilter.Buildername(EnrollmentFilterName name)The name of the filter.EnrollmentFilter.Buildervalues(String... values)The value of the filter.EnrollmentFilter.Buildervalues(Collection<String> values)The value of the filter.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
name
EnrollmentFilter.Builder name(String name)
The name of the filter.
Specify
Statusto return accounts with a specific enrollment status (for example,Active).- Parameters:
name- The name of the filter.Specify
Statusto return accounts with a specific enrollment status (for example,Active).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EnrollmentFilterName,EnrollmentFilterName
-
name
EnrollmentFilter.Builder name(EnrollmentFilterName name)
The name of the filter.
Specify
Statusto return accounts with a specific enrollment status (for example,Active).- Parameters:
name- The name of the filter.Specify
Statusto return accounts with a specific enrollment status (for example,Active).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EnrollmentFilterName,EnrollmentFilterName
-
values
EnrollmentFilter.Builder values(Collection<String> values)
The value of the filter.
The valid values are
Active,Inactive,Pending, andFailed.- Parameters:
values- The value of the filter.The valid values are
Active,Inactive,Pending, andFailed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
EnrollmentFilter.Builder values(String... values)
The value of the filter.
The valid values are
Active,Inactive,Pending, andFailed.- Parameters:
values- The value of the filter.The valid values are
Active,Inactive,Pending, andFailed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-