Interface BatchGetApplicationRevisionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodeDeployResponse.Builder,CopyableBuilder<BatchGetApplicationRevisionsResponse.Builder,BatchGetApplicationRevisionsResponse>,SdkBuilder<BatchGetApplicationRevisionsResponse.Builder,BatchGetApplicationRevisionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchGetApplicationRevisionsResponse
public static interface BatchGetApplicationRevisionsResponse.Builder extends CodeDeployResponse.Builder, SdkPojo, CopyableBuilder<BatchGetApplicationRevisionsResponse.Builder,BatchGetApplicationRevisionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetApplicationRevisionsResponse.BuilderapplicationName(String applicationName)The name of the application that corresponds to the revisions.BatchGetApplicationRevisionsResponse.BuildererrorMessage(String errorMessage)Information about errors that might have occurred during the API call.BatchGetApplicationRevisionsResponse.Builderrevisions(Collection<RevisionInfo> revisions)Additional information about the revisions, including the type and location.BatchGetApplicationRevisionsResponse.Builderrevisions(Consumer<RevisionInfo.Builder>... revisions)Additional information about the revisions, including the type and location.BatchGetApplicationRevisionsResponse.Builderrevisions(RevisionInfo... revisions)Additional information about the revisions, including the type and location.-
Methods inherited from interface software.amazon.awssdk.services.codedeploy.model.CodeDeployResponse.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
-
applicationName
BatchGetApplicationRevisionsResponse.Builder applicationName(String applicationName)
The name of the application that corresponds to the revisions.
- Parameters:
applicationName- The name of the application that corresponds to the revisions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
BatchGetApplicationRevisionsResponse.Builder errorMessage(String errorMessage)
Information about errors that might have occurred during the API call.
- Parameters:
errorMessage- Information about errors that might have occurred during the API call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
revisions
BatchGetApplicationRevisionsResponse.Builder revisions(Collection<RevisionInfo> revisions)
Additional information about the revisions, including the type and location.
- Parameters:
revisions- Additional information about the revisions, including the type and location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
revisions
BatchGetApplicationRevisionsResponse.Builder revisions(RevisionInfo... revisions)
Additional information about the revisions, including the type and location.
- Parameters:
revisions- Additional information about the revisions, including the type and location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
revisions
BatchGetApplicationRevisionsResponse.Builder revisions(Consumer<RevisionInfo.Builder>... revisions)
Additional information about the revisions, including the type and location.
This is a convenience method that creates an instance of theRevisionInfo.Builderavoiding the need to create one manually viaRevisionInfo.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#revisions(List.) - Parameters:
revisions- a consumer that will call methods onRevisionInfo.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#revisions(java.util.Collection)
-
-