Interface DeleteFlowLogsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DeleteFlowLogsResponse.Builder,DeleteFlowLogsResponse>,Ec2Response.Builder,SdkBuilder<DeleteFlowLogsResponse.Builder,DeleteFlowLogsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DeleteFlowLogsResponse
public static interface DeleteFlowLogsResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DeleteFlowLogsResponse.Builder,DeleteFlowLogsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeleteFlowLogsResponse.Builderunsuccessful(Collection<UnsuccessfulItem> unsuccessful)Information about the flow logs that could not be deleted successfully.DeleteFlowLogsResponse.Builderunsuccessful(Consumer<UnsuccessfulItem.Builder>... unsuccessful)Information about the flow logs that could not be deleted successfully.DeleteFlowLogsResponse.Builderunsuccessful(UnsuccessfulItem... unsuccessful)Information about the flow logs that could not be deleted successfully.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Response.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
-
unsuccessful
DeleteFlowLogsResponse.Builder unsuccessful(Collection<UnsuccessfulItem> unsuccessful)
Information about the flow logs that could not be deleted successfully.
- Parameters:
unsuccessful- Information about the flow logs that could not be deleted successfully.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unsuccessful
DeleteFlowLogsResponse.Builder unsuccessful(UnsuccessfulItem... unsuccessful)
Information about the flow logs that could not be deleted successfully.
- Parameters:
unsuccessful- Information about the flow logs that could not be deleted successfully.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unsuccessful
DeleteFlowLogsResponse.Builder unsuccessful(Consumer<UnsuccessfulItem.Builder>... unsuccessful)
Information about the flow logs that could not be deleted successfully.
This is a convenience method that creates an instance of theUnsuccessfulItem.Builderavoiding the need to create one manually viaUnsuccessfulItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#unsuccessful(List.) - Parameters:
unsuccessful- a consumer that will call methods onUnsuccessfulItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#unsuccessful(java.util.Collection)
-
-