Interface CollectionConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CollectionConfiguration.Builder,CollectionConfiguration>,SdkBuilder<CollectionConfiguration.Builder,CollectionConfiguration>,SdkPojo
- Enclosing class:
- CollectionConfiguration
@Mutable @NotThreadSafe public static interface CollectionConfiguration.Builder extends SdkPojo, CopyableBuilder<CollectionConfiguration.Builder,CollectionConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CollectionConfiguration.BuildercollectionName(String collectionName)The name of the tensor collection.CollectionConfiguration.BuildercollectionParameters(Map<String,String> collectionParameters)Parameter values for the tensor collection.-
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
-
collectionName
CollectionConfiguration.Builder collectionName(String collectionName)
The name of the tensor collection. The name must be unique relative to other rule configuration names.
- Parameters:
collectionName- The name of the tensor collection. The name must be unique relative to other rule configuration names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
collectionParameters
CollectionConfiguration.Builder collectionParameters(Map<String,String> collectionParameters)
Parameter values for the tensor collection. The allowed parameters are
"name","include_regex","reduction_config","save_config","tensor_names", and"save_histogram".- Parameters:
collectionParameters- Parameter values for the tensor collection. The allowed parameters are"name","include_regex","reduction_config","save_config","tensor_names", and"save_histogram".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-