Interface FailedDeleteRemediationExceptionsBatch.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<FailedDeleteRemediationExceptionsBatch.Builder,
,FailedDeleteRemediationExceptionsBatch> SdkBuilder<FailedDeleteRemediationExceptionsBatch.Builder,
,FailedDeleteRemediationExceptionsBatch> SdkPojo
- Enclosing class:
FailedDeleteRemediationExceptionsBatch
public static interface FailedDeleteRemediationExceptionsBatch.Builder
extends SdkPojo, CopyableBuilder<FailedDeleteRemediationExceptionsBatch.Builder,FailedDeleteRemediationExceptionsBatch>
-
Method Summary
Modifier and TypeMethodDescriptionfailedItems
(Collection<RemediationExceptionResourceKey> failedItems) Returns remediation exception resource key object of the failed items.failedItems
(Consumer<RemediationExceptionResourceKey.Builder>... failedItems) Returns remediation exception resource key object of the failed items.failedItems
(RemediationExceptionResourceKey... failedItems) Returns remediation exception resource key object of the failed items.failureMessage
(String failureMessage) Returns a failure message for delete remediation exception.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 Details
-
failureMessage
Returns a failure message for delete remediation exception. For example, Config creates an exception due to an internal error.
- Parameters:
failureMessage
- Returns a failure message for delete remediation exception. For example, Config creates an exception due to an internal error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedItems
FailedDeleteRemediationExceptionsBatch.Builder failedItems(Collection<RemediationExceptionResourceKey> failedItems) Returns remediation exception resource key object of the failed items.
- Parameters:
failedItems
- Returns remediation exception resource key object of the failed items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedItems
FailedDeleteRemediationExceptionsBatch.Builder failedItems(RemediationExceptionResourceKey... failedItems) Returns remediation exception resource key object of the failed items.
- Parameters:
failedItems
- Returns remediation exception resource key object of the failed items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedItems
FailedDeleteRemediationExceptionsBatch.Builder failedItems(Consumer<RemediationExceptionResourceKey.Builder>... failedItems) Returns remediation exception resource key object of the failed items.
This is a convenience method that creates an instance of theRemediationExceptionResourceKey.Builder
avoiding the need to create one manually viaRemediationExceptionResourceKey.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofailedItems(List<RemediationExceptionResourceKey>)
.- Parameters:
failedItems
- a consumer that will call methods onRemediationExceptionResourceKey.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-