Interface ApplicationTagResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ApplicationTagResult.Builder,ApplicationTagResult>,SdkBuilder<ApplicationTagResult.Builder,ApplicationTagResult>,SdkPojo
- Enclosing class:
- ApplicationTagResult
public static interface ApplicationTagResult.Builder extends SdkPojo, CopyableBuilder<ApplicationTagResult.Builder,ApplicationTagResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationTagResult.BuilderapplicationTagStatus(String applicationTagStatus)The application tag is in the process of being applied to a resource, was successfully applied to a resource, or failed to apply to a resource.ApplicationTagResult.BuilderapplicationTagStatus(ApplicationTagStatus applicationTagStatus)The application tag is in the process of being applied to a resource, was successfully applied to a resource, or failed to apply to a resource.ApplicationTagResult.BuildererrorMessage(String errorMessage)The message returned if the call fails.ApplicationTagResult.BuildernextToken(String nextToken)A unique pagination token for each page of results.ApplicationTagResult.Builderresources(Collection<ResourcesListItem> resources)The resources associated with an applicationApplicationTagResult.Builderresources(Consumer<ResourcesListItem.Builder>... resources)The resources associated with an applicationApplicationTagResult.Builderresources(ResourcesListItem... resources)The resources associated with an application-
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
-
applicationTagStatus
ApplicationTagResult.Builder applicationTagStatus(String applicationTagStatus)
The application tag is in the process of being applied to a resource, was successfully applied to a resource, or failed to apply to a resource.
- Parameters:
applicationTagStatus- The application tag is in the process of being applied to a resource, was successfully applied to a resource, or failed to apply to a resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationTagStatus,ApplicationTagStatus
-
applicationTagStatus
ApplicationTagResult.Builder applicationTagStatus(ApplicationTagStatus applicationTagStatus)
The application tag is in the process of being applied to a resource, was successfully applied to a resource, or failed to apply to a resource.
- Parameters:
applicationTagStatus- The application tag is in the process of being applied to a resource, was successfully applied to a resource, or failed to apply to a resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationTagStatus,ApplicationTagStatus
-
errorMessage
ApplicationTagResult.Builder errorMessage(String errorMessage)
The message returned if the call fails.
- Parameters:
errorMessage- The message returned if the call fails.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resources
ApplicationTagResult.Builder resources(Collection<ResourcesListItem> resources)
The resources associated with an application
- Parameters:
resources- The resources associated with an application- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resources
ApplicationTagResult.Builder resources(ResourcesListItem... resources)
The resources associated with an application
- Parameters:
resources- The resources associated with an application- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resources
ApplicationTagResult.Builder resources(Consumer<ResourcesListItem.Builder>... resources)
The resources associated with an application
This is a convenience method that creates an instance of theResourcesListItem.Builderavoiding the need to create one manually viaResourcesListItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#resources(List.) - Parameters:
resources- a consumer that will call methods onResourcesListItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#resources(java.util.Collection)
-
nextToken
ApplicationTagResult.Builder nextToken(String nextToken)
A unique pagination token for each page of results. Make the call again with the returned token to retrieve the next page of results.
- Parameters:
nextToken- A unique pagination token for each page of results. Make the call again with the returned token to retrieve the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-