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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FailedDeleteRemediationExceptionsBatch.BuilderfailedItems(Collection<RemediationExceptionResourceKey> failedItems)Returns remediation exception resource key object of the failed items.FailedDeleteRemediationExceptionsBatch.BuilderfailedItems(Consumer<RemediationExceptionResourceKey.Builder>... failedItems)Returns remediation exception resource key object of the failed items.FailedDeleteRemediationExceptionsBatch.BuilderfailedItems(RemediationExceptionResourceKey... failedItems)Returns remediation exception resource key object of the failed items.FailedDeleteRemediationExceptionsBatch.BuilderfailureMessage(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 Detail
-
failureMessage
FailedDeleteRemediationExceptionsBatch.Builder failureMessage(String 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.Builderavoiding the need to create one manually viaRemediationExceptionResourceKey.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#failedItems(List.) - 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:
#failedItems(java.util.Collection)
-
-