Interface CommonControlFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CommonControlFilter.Builder,CommonControlFilter>,SdkBuilder<CommonControlFilter.Builder,CommonControlFilter>,SdkPojo
- Enclosing class:
- CommonControlFilter
public static interface CommonControlFilter.Builder extends SdkPojo, CopyableBuilder<CommonControlFilter.Builder,CommonControlFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommonControlFilter.Builderobjectives(Collection<ObjectiveResourceFilter> objectives)The objective that's used as filter criteria.CommonControlFilter.Builderobjectives(Consumer<ObjectiveResourceFilter.Builder>... objectives)The objective that's used as filter criteria.CommonControlFilter.Builderobjectives(ObjectiveResourceFilter... objectives)The objective that's used as filter criteria.-
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
-
objectives
CommonControlFilter.Builder objectives(Collection<ObjectiveResourceFilter> objectives)
The objective that's used as filter criteria.
You can use this parameter to specify one objective ARN at a time. Passing multiple ARNs in the
CommonControlFilterisn’t currently supported.- Parameters:
objectives- The objective that's used as filter criteria.You can use this parameter to specify one objective ARN at a time. Passing multiple ARNs in the
CommonControlFilterisn’t currently supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectives
CommonControlFilter.Builder objectives(ObjectiveResourceFilter... objectives)
The objective that's used as filter criteria.
You can use this parameter to specify one objective ARN at a time. Passing multiple ARNs in the
CommonControlFilterisn’t currently supported.- Parameters:
objectives- The objective that's used as filter criteria.You can use this parameter to specify one objective ARN at a time. Passing multiple ARNs in the
CommonControlFilterisn’t currently supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectives
CommonControlFilter.Builder objectives(Consumer<ObjectiveResourceFilter.Builder>... objectives)
The objective that's used as filter criteria.
You can use this parameter to specify one objective ARN at a time. Passing multiple ARNs in the
This is a convenience method that creates an instance of theCommonControlFilterisn’t currently supported.ObjectiveResourceFilter.Builderavoiding the need to create one manually viaObjectiveResourceFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#objectives(List.) - Parameters:
objectives- a consumer that will call methods onObjectiveResourceFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#objectives(java.util.Collection)
-
-