Interface FindingAction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FindingAction.Builder,FindingAction>,SdkBuilder<FindingAction.Builder,FindingAction>,SdkPojo
- Enclosing class:
- FindingAction
public static interface FindingAction.Builder extends SdkPojo, CopyableBuilder<FindingAction.Builder,FindingAction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description FindingAction.BuilderactionType(String actionType)The type of action that occurred for the affected resource.FindingAction.BuilderactionType(FindingActionType actionType)The type of action that occurred for the affected resource.default FindingAction.BuilderapiCallDetails(Consumer<ApiCallDetails.Builder> apiCallDetails)The invocation details of the API operation that an entity invoked for the affected resource, if the value for the actionType property is AWS_API_CALL.FindingAction.BuilderapiCallDetails(ApiCallDetails apiCallDetails)The invocation details of the API operation that an entity invoked for the affected resource, if the value for the actionType property is AWS_API_CALL.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
actionType
FindingAction.Builder actionType(String actionType)
The type of action that occurred for the affected resource. This value is typically AWS_API_CALL, which indicates that an entity invoked an API operation for the resource.
- Parameters:
actionType- The type of action that occurred for the affected resource. This value is typically AWS_API_CALL, which indicates that an entity invoked an API operation for the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FindingActionType,FindingActionType
-
actionType
FindingAction.Builder actionType(FindingActionType actionType)
The type of action that occurred for the affected resource. This value is typically AWS_API_CALL, which indicates that an entity invoked an API operation for the resource.
- Parameters:
actionType- The type of action that occurred for the affected resource. This value is typically AWS_API_CALL, which indicates that an entity invoked an API operation for the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FindingActionType,FindingActionType
-
apiCallDetails
FindingAction.Builder apiCallDetails(ApiCallDetails apiCallDetails)
The invocation details of the API operation that an entity invoked for the affected resource, if the value for the actionType property is AWS_API_CALL.
- Parameters:
apiCallDetails- The invocation details of the API operation that an entity invoked for the affected resource, if the value for the actionType property is AWS_API_CALL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
apiCallDetails
default FindingAction.Builder apiCallDetails(Consumer<ApiCallDetails.Builder> apiCallDetails)
The invocation details of the API operation that an entity invoked for the affected resource, if the value for the actionType property is AWS_API_CALL.
This is a convenience method that creates an instance of theApiCallDetails.Builderavoiding the need to create one manually viaApiCallDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toapiCallDetails(ApiCallDetails).- Parameters:
apiCallDetails- a consumer that will call methods onApiCallDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
apiCallDetails(ApiCallDetails)
-
-