Interface FailedResource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FailedResource.Builder,FailedResource>,SdkBuilder<FailedResource.Builder,FailedResource>,SdkPojo
- Enclosing class:
- FailedResource
public static interface FailedResource.Builder extends SdkPojo, CopyableBuilder<FailedResource.Builder,FailedResource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FailedResource.BuildererrorCode(String errorCode)The error code associated with the failure.FailedResource.BuildererrorMessage(String errorMessage)The error message text associated with the failure.FailedResource.BuilderresourceArn(String resourceArn)The ARN of the resource that failed to be added or removed.-
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
-
resourceArn
FailedResource.Builder resourceArn(String resourceArn)
The ARN of the resource that failed to be added or removed.
- Parameters:
resourceArn- The ARN of the resource that failed to be added or removed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
FailedResource.Builder errorMessage(String errorMessage)
The error message text associated with the failure.
- Parameters:
errorMessage- The error message text associated with the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorCode
FailedResource.Builder errorCode(String errorCode)
The error code associated with the failure.
- Parameters:
errorCode- The error code associated with the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-