Interface ResourceResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ResourceResult.Builder,ResourceResult>,SdkBuilder<ResourceResult.Builder,ResourceResult>,SdkPojo
- Enclosing class:
- ResourceResult
public static interface ResourceResult.Builder extends SdkPojo, CopyableBuilder<ResourceResult.Builder,ResourceResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResourceResult.BuildercomponentId(String componentId)The component id of the resource.ResourceResult.BuilderlastCheckedTimestamp(Instant lastCheckedTimestamp)The time (UTC) that the resource was last checked for readiness, in ISO-8601 format.ResourceResult.Builderreadiness(String readiness)The readiness of a resource.ResourceResult.Builderreadiness(Readiness readiness)The readiness of a resource.ResourceResult.BuilderresourceArn(String resourceArn)The Amazon Resource Name (ARN) of the resource.-
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
-
componentId
ResourceResult.Builder componentId(String componentId)
The component id of the resource.
- Parameters:
componentId- The component id of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastCheckedTimestamp
ResourceResult.Builder lastCheckedTimestamp(Instant lastCheckedTimestamp)
The time (UTC) that the resource was last checked for readiness, in ISO-8601 format.
- Parameters:
lastCheckedTimestamp- The time (UTC) that the resource was last checked for readiness, in ISO-8601 format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
readiness
ResourceResult.Builder readiness(String readiness)
The readiness of a resource.
-
readiness
ResourceResult.Builder readiness(Readiness readiness)
The readiness of a resource.
-
resourceArn
ResourceResult.Builder resourceArn(String resourceArn)
The Amazon Resource Name (ARN) of the resource.
- Parameters:
resourceArn- The Amazon Resource Name (ARN) of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-