Interface DescribeTagsResponse.Builder
-
- All Superinterfaces:
ApplicationDiscoveryResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<DescribeTagsResponse.Builder,DescribeTagsResponse>,SdkBuilder<DescribeTagsResponse.Builder,DescribeTagsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeTagsResponse
public static interface DescribeTagsResponse.Builder extends ApplicationDiscoveryResponse.Builder, SdkPojo, CopyableBuilder<DescribeTagsResponse.Builder,DescribeTagsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeTagsResponse.BuildernextToken(String nextToken)The call returns a token.DescribeTagsResponse.Buildertags(Collection<ConfigurationTag> tags)Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.DescribeTagsResponse.Buildertags(Consumer<ConfigurationTag.Builder>... tags)Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.DescribeTagsResponse.Buildertags(ConfigurationTag... tags)Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.-
Methods inherited from interface software.amazon.awssdk.services.applicationdiscovery.model.ApplicationDiscoveryResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
tags
DescribeTagsResponse.Builder tags(Collection<ConfigurationTag> tags)
Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.
- Parameters:
tags- Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
DescribeTagsResponse.Builder tags(ConfigurationTag... tags)
Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.
- Parameters:
tags- Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
DescribeTagsResponse.Builder tags(Consumer<ConfigurationTag.Builder>... tags)
Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.
This is a convenience method that creates an instance of theConfigurationTag.Builderavoiding the need to create one manually viaConfigurationTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onConfigurationTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
nextToken
DescribeTagsResponse.Builder nextToken(String nextToken)
The call returns a token. Use this token to get the next set of results.
- Parameters:
nextToken- The call returns a token. Use this token to get the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-