Interface GetBehaviorModelTrainingSummariesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<GetBehaviorModelTrainingSummariesResponse.Builder,GetBehaviorModelTrainingSummariesResponse>
,IotResponse.Builder
,SdkBuilder<GetBehaviorModelTrainingSummariesResponse.Builder,GetBehaviorModelTrainingSummariesResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- GetBehaviorModelTrainingSummariesResponse
public static interface GetBehaviorModelTrainingSummariesResponse.Builder extends IotResponse.Builder, SdkPojo, CopyableBuilder<GetBehaviorModelTrainingSummariesResponse.Builder,GetBehaviorModelTrainingSummariesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetBehaviorModelTrainingSummariesResponse.Builder
nextToken(String nextToken)
A token that can be used to retrieve the next set of results, ornull
if there are no additional results.GetBehaviorModelTrainingSummariesResponse.Builder
summaries(Collection<BehaviorModelTrainingSummary> summaries)
A list of all ML Detect behaviors and their model status for a given Security Profile.GetBehaviorModelTrainingSummariesResponse.Builder
summaries(Consumer<BehaviorModelTrainingSummary.Builder>... summaries)
A list of all ML Detect behaviors and their model status for a given Security Profile.GetBehaviorModelTrainingSummariesResponse.Builder
summaries(BehaviorModelTrainingSummary... summaries)
A list of all ML Detect behaviors and their model status for a given Security Profile.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iot.model.IotResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
summaries
GetBehaviorModelTrainingSummariesResponse.Builder summaries(Collection<BehaviorModelTrainingSummary> summaries)
A list of all ML Detect behaviors and their model status for a given Security Profile.
- Parameters:
summaries
- A list of all ML Detect behaviors and their model status for a given Security Profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summaries
GetBehaviorModelTrainingSummariesResponse.Builder summaries(BehaviorModelTrainingSummary... summaries)
A list of all ML Detect behaviors and their model status for a given Security Profile.
- Parameters:
summaries
- A list of all ML Detect behaviors and their model status for a given Security Profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summaries
GetBehaviorModelTrainingSummariesResponse.Builder summaries(Consumer<BehaviorModelTrainingSummary.Builder>... summaries)
A list of all ML Detect behaviors and their model status for a given Security Profile.
This is a convenience method that creates an instance of theBehaviorModelTrainingSummary.Builder
avoiding the need to create one manually viaBehaviorModelTrainingSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#summaries(List
.) - Parameters:
summaries
- a consumer that will call methods onBehaviorModelTrainingSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#summaries(java.util.Collection
)
-
nextToken
GetBehaviorModelTrainingSummariesResponse.Builder nextToken(String nextToken)
A token that can be used to retrieve the next set of results, or
null
if there are no additional results.- Parameters:
nextToken
- A token that can be used to retrieve the next set of results, ornull
if there are no additional results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-