Interface UpdateFindingsFeedbackRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateFindingsFeedbackRequest.Builder,UpdateFindingsFeedbackRequest>,GuardDutyRequest.Builder,SdkBuilder<UpdateFindingsFeedbackRequest.Builder,UpdateFindingsFeedbackRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateFindingsFeedbackRequest
public static interface UpdateFindingsFeedbackRequest.Builder extends GuardDutyRequest.Builder, SdkPojo, CopyableBuilder<UpdateFindingsFeedbackRequest.Builder,UpdateFindingsFeedbackRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateFindingsFeedbackRequest.Buildercomments(String comments)Additional feedback about the GuardDuty findings.UpdateFindingsFeedbackRequest.BuilderdetectorId(String detectorId)The ID of the detector that is associated with the findings for which you want to update the feedback.UpdateFindingsFeedbackRequest.Builderfeedback(String feedback)The feedback for the finding.UpdateFindingsFeedbackRequest.Builderfeedback(Feedback feedback)The feedback for the finding.UpdateFindingsFeedbackRequest.BuilderfindingIds(String... findingIds)The IDs of the findings that you want to mark as useful or not useful.UpdateFindingsFeedbackRequest.BuilderfindingIds(Collection<String> findingIds)The IDs of the findings that you want to mark as useful or not useful.UpdateFindingsFeedbackRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateFindingsFeedbackRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.guardduty.model.GuardDutyRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
detectorId
UpdateFindingsFeedbackRequest.Builder detectorId(String detectorId)
The ID of the detector that is associated with the findings for which you want to update the feedback.
To find the
detectorIdin the current Region, see the Settings page in the GuardDuty console, or run the ListDetectors API.- Parameters:
detectorId- The ID of the detector that is associated with the findings for which you want to update the feedback.To find the
detectorIdin the current Region, see the Settings page in the GuardDuty console, or run the ListDetectors API.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
findingIds
UpdateFindingsFeedbackRequest.Builder findingIds(Collection<String> findingIds)
The IDs of the findings that you want to mark as useful or not useful.
- Parameters:
findingIds- The IDs of the findings that you want to mark as useful or not useful.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
findingIds
UpdateFindingsFeedbackRequest.Builder findingIds(String... findingIds)
The IDs of the findings that you want to mark as useful or not useful.
- Parameters:
findingIds- The IDs of the findings that you want to mark as useful or not useful.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
feedback
UpdateFindingsFeedbackRequest.Builder feedback(String feedback)
The feedback for the finding.
-
feedback
UpdateFindingsFeedbackRequest.Builder feedback(Feedback feedback)
The feedback for the finding.
-
comments
UpdateFindingsFeedbackRequest.Builder comments(String comments)
Additional feedback about the GuardDuty findings.
- Parameters:
comments- Additional feedback about the GuardDuty findings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateFindingsFeedbackRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateFindingsFeedbackRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-