Interface BatchGetApplicationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodeDeployResponse.Builder,CopyableBuilder<BatchGetApplicationsResponse.Builder,BatchGetApplicationsResponse>,SdkBuilder<BatchGetApplicationsResponse.Builder,BatchGetApplicationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchGetApplicationsResponse
public static interface BatchGetApplicationsResponse.Builder extends CodeDeployResponse.Builder, SdkPojo, CopyableBuilder<BatchGetApplicationsResponse.Builder,BatchGetApplicationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetApplicationsResponse.BuilderapplicationsInfo(Collection<ApplicationInfo> applicationsInfo)Information about the applications.BatchGetApplicationsResponse.BuilderapplicationsInfo(Consumer<ApplicationInfo.Builder>... applicationsInfo)Information about the applications.BatchGetApplicationsResponse.BuilderapplicationsInfo(ApplicationInfo... applicationsInfo)Information about the applications.-
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
-
applicationsInfo
BatchGetApplicationsResponse.Builder applicationsInfo(Collection<ApplicationInfo> applicationsInfo)
Information about the applications.
- Parameters:
applicationsInfo- Information about the applications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationsInfo
BatchGetApplicationsResponse.Builder applicationsInfo(ApplicationInfo... applicationsInfo)
Information about the applications.
- Parameters:
applicationsInfo- Information about the applications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationsInfo
BatchGetApplicationsResponse.Builder applicationsInfo(Consumer<ApplicationInfo.Builder>... applicationsInfo)
Information about the applications.
This is a convenience method that creates an instance of theApplicationInfo.Builderavoiding the need to create one manually viaApplicationInfo.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#applicationsInfo(List.) - Parameters:
applicationsInfo- a consumer that will call methods onApplicationInfo.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#applicationsInfo(java.util.Collection)
-
-