Interface ResourceTagsSearchCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ResourceTagsSearchCriteria.Builder,ResourceTagsSearchCriteria>,SdkBuilder<ResourceTagsSearchCriteria.Builder,ResourceTagsSearchCriteria>,SdkPojo
- Enclosing class:
- ResourceTagsSearchCriteria
public static interface ResourceTagsSearchCriteria.Builder extends SdkPojo, CopyableBuilder<ResourceTagsSearchCriteria.Builder,ResourceTagsSearchCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ResourceTagsSearchCriteria.BuildertagSearchCondition(Consumer<TagSearchCondition.Builder> tagSearchCondition)The search criteria to be used to return tags.ResourceTagsSearchCriteria.BuildertagSearchCondition(TagSearchCondition tagSearchCondition)The search criteria to be used to return tags.-
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
-
tagSearchCondition
ResourceTagsSearchCriteria.Builder tagSearchCondition(TagSearchCondition tagSearchCondition)
The search criteria to be used to return tags.
- Parameters:
tagSearchCondition- The search criteria to be used to return tags.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagSearchCondition
default ResourceTagsSearchCriteria.Builder tagSearchCondition(Consumer<TagSearchCondition.Builder> tagSearchCondition)
The search criteria to be used to return tags.
This is a convenience method that creates an instance of theTagSearchCondition.Builderavoiding the need to create one manually viaTagSearchCondition.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totagSearchCondition(TagSearchCondition).- Parameters:
tagSearchCondition- a consumer that will call methods onTagSearchCondition.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
tagSearchCondition(TagSearchCondition)
-
-