Interface BatchGetRepositoriesError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchGetRepositoriesError.Builder,BatchGetRepositoriesError>,SdkBuilder<BatchGetRepositoriesError.Builder,BatchGetRepositoriesError>,SdkPojo
- Enclosing class:
- BatchGetRepositoriesError
public static interface BatchGetRepositoriesError.Builder extends SdkPojo, CopyableBuilder<BatchGetRepositoriesError.Builder,BatchGetRepositoriesError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetRepositoriesError.BuildererrorCode(String errorCode)An error code that specifies the type of failure.BatchGetRepositoriesError.BuildererrorCode(BatchGetRepositoriesErrorCodeEnum errorCode)An error code that specifies the type of failure.BatchGetRepositoriesError.BuildererrorMessage(String errorMessage)An error message that provides detail about why the repository either was not found or was not in a valid state.BatchGetRepositoriesError.BuilderrepositoryId(String repositoryId)The ID of a repository that either could not be found or was not in a valid state.BatchGetRepositoriesError.BuilderrepositoryName(String repositoryName)The name of a repository that either could not be found or was not in a valid state.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
repositoryId
BatchGetRepositoriesError.Builder repositoryId(String repositoryId)
The ID of a repository that either could not be found or was not in a valid state.
- Parameters:
repositoryId- The ID of a repository that either could not be found or was not in a valid state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
repositoryName
BatchGetRepositoriesError.Builder repositoryName(String repositoryName)
The name of a repository that either could not be found or was not in a valid state.
- Parameters:
repositoryName- The name of a repository that either could not be found or was not in a valid state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorCode
BatchGetRepositoriesError.Builder errorCode(String errorCode)
An error code that specifies the type of failure.
- Parameters:
errorCode- An error code that specifies the type of failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BatchGetRepositoriesErrorCodeEnum,BatchGetRepositoriesErrorCodeEnum
-
errorCode
BatchGetRepositoriesError.Builder errorCode(BatchGetRepositoriesErrorCodeEnum errorCode)
An error code that specifies the type of failure.
- Parameters:
errorCode- An error code that specifies the type of failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BatchGetRepositoriesErrorCodeEnum,BatchGetRepositoriesErrorCodeEnum
-
errorMessage
BatchGetRepositoriesError.Builder errorMessage(String errorMessage)
An error message that provides detail about why the repository either was not found or was not in a valid state.
- Parameters:
errorMessage- An error message that provides detail about why the repository either was not found or was not in a valid state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-