Interface BatchGetRepositoryScanningConfigurationResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<BatchGetRepositoryScanningConfigurationResponse.Builder,BatchGetRepositoryScanningConfigurationResponse>
,EcrResponse.Builder
,SdkBuilder<BatchGetRepositoryScanningConfigurationResponse.Builder,BatchGetRepositoryScanningConfigurationResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- BatchGetRepositoryScanningConfigurationResponse
public static interface BatchGetRepositoryScanningConfigurationResponse.Builder extends EcrResponse.Builder, SdkPojo, CopyableBuilder<BatchGetRepositoryScanningConfigurationResponse.Builder,BatchGetRepositoryScanningConfigurationResponse>
-
-
Method Summary
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ecr.model.EcrResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
scanningConfigurations
BatchGetRepositoryScanningConfigurationResponse.Builder scanningConfigurations(Collection<RepositoryScanningConfiguration> scanningConfigurations)
The scanning configuration for the requested repositories.
- Parameters:
scanningConfigurations
- The scanning configuration for the requested repositories.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scanningConfigurations
BatchGetRepositoryScanningConfigurationResponse.Builder scanningConfigurations(RepositoryScanningConfiguration... scanningConfigurations)
The scanning configuration for the requested repositories.
- Parameters:
scanningConfigurations
- The scanning configuration for the requested repositories.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scanningConfigurations
BatchGetRepositoryScanningConfigurationResponse.Builder scanningConfigurations(Consumer<RepositoryScanningConfiguration.Builder>... scanningConfigurations)
The scanning configuration for the requested repositories.
This is a convenience method that creates an instance of theRepositoryScanningConfiguration.Builder
avoiding the need to create one manually viaRepositoryScanningConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#scanningConfigurations(List
.) - Parameters:
scanningConfigurations
- a consumer that will call methods onRepositoryScanningConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#scanningConfigurations(java.util.Collection
)
-
failures
BatchGetRepositoryScanningConfigurationResponse.Builder failures(Collection<RepositoryScanningConfigurationFailure> failures)
Any failures associated with the call.
- Parameters:
failures
- Any failures associated with the call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failures
BatchGetRepositoryScanningConfigurationResponse.Builder failures(RepositoryScanningConfigurationFailure... failures)
Any failures associated with the call.
- Parameters:
failures
- Any failures associated with the call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failures
BatchGetRepositoryScanningConfigurationResponse.Builder failures(Consumer<RepositoryScanningConfigurationFailure.Builder>... failures)
Any failures associated with the call.
This is a convenience method that creates an instance of theRepositoryScanningConfigurationFailure.Builder
avoiding the need to create one manually viaRepositoryScanningConfigurationFailure.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#failures(List
.) - Parameters:
failures
- a consumer that will call methods onRepositoryScanningConfigurationFailure.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#failures(java.util.Collection
)
-
-