Interface ApiCallDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ApiCallDetails.Builder,ApiCallDetails>,SdkBuilder<ApiCallDetails.Builder,ApiCallDetails>,SdkPojo
- Enclosing class:
- ApiCallDetails
public static interface ApiCallDetails.Builder extends SdkPojo, CopyableBuilder<ApiCallDetails.Builder,ApiCallDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApiCallDetails.Builderapi(String api)The name of the operation that was invoked most recently and produced the finding.ApiCallDetails.BuilderapiServiceName(String apiServiceName)The URL of the Amazon Web Services service that provides the operation, for example: s3.amazonaws.com.ApiCallDetails.BuilderfirstSeen(Instant firstSeen)The first date and time, in UTC and extended ISO 8601 format, when any operation was invoked and produced the finding.ApiCallDetails.BuilderlastSeen(Instant lastSeen)The most recent date and time, in UTC and extended ISO 8601 format, when the specified operation (api) was invoked and produced the finding.-
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
-
api
ApiCallDetails.Builder api(String api)
The name of the operation that was invoked most recently and produced the finding.
- Parameters:
api- The name of the operation that was invoked most recently and produced the finding.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
apiServiceName
ApiCallDetails.Builder apiServiceName(String apiServiceName)
The URL of the Amazon Web Services service that provides the operation, for example: s3.amazonaws.com.
- Parameters:
apiServiceName- The URL of the Amazon Web Services service that provides the operation, for example: s3.amazonaws.com.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
firstSeen
ApiCallDetails.Builder firstSeen(Instant firstSeen)
The first date and time, in UTC and extended ISO 8601 format, when any operation was invoked and produced the finding.
- Parameters:
firstSeen- The first date and time, in UTC and extended ISO 8601 format, when any operation was invoked and produced the finding.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastSeen
ApiCallDetails.Builder lastSeen(Instant lastSeen)
The most recent date and time, in UTC and extended ISO 8601 format, when the specified operation (api) was invoked and produced the finding.
- Parameters:
lastSeen- The most recent date and time, in UTC and extended ISO 8601 format, when the specified operation (api) was invoked and produced the finding.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-