You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aws-android-sdk-rekognition/src/main/java/com/amazonaws/services/rekognition/model/CreateStreamProcessorRequest.java
+36-27Lines changed: 36 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -183,9 +183,10 @@ public class CreateStreamProcessorRequest extends AmazonWebServiceRequest implem
183
183
/**
184
184
* <p>
185
185
* Specifies locations in the frames where Amazon Rekognition checks for
186
-
* objects or people. You can specify up to 10 regions of interest. This is
187
-
* an optional parameter for label detection stream processors and should
188
-
* not be used to create a face search stream processor.
186
+
* objects or people. You can specify up to 10 regions of interest, and each
187
+
* region has either a polygon or a bounding box. This is an optional
188
+
* parameter for label detection stream processors and should not be used to
Copy file name to clipboardExpand all lines: aws-android-sdk-rekognition/src/main/java/com/amazonaws/services/rekognition/model/ProjectVersionDescription.java
+88-1Lines changed: 88 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -140,6 +140,18 @@ public class ProjectVersionDescription implements Serializable {
140
140
*/
141
141
privateStringkmsKeyId;
142
142
143
+
/**
144
+
* <p>
145
+
* The maximum number of inference units Amazon Rekognition Custom Labels
146
+
* uses to auto-scale the model. For more information, see
147
+
* <a>StartProjectVersion</a>.
148
+
* </p>
149
+
* <p>
150
+
* <b>Constraints:</b><br/>
151
+
* <b>Range: </b>1 - <br/>
152
+
*/
153
+
privateIntegermaxInferenceUnits;
154
+
143
155
/**
144
156
* <p>
145
157
* The Amazon Resource Name (ARN) of the model version.
@@ -870,6 +882,72 @@ public ProjectVersionDescription withKmsKeyId(String kmsKeyId) {
870
882
returnthis;
871
883
}
872
884
885
+
/**
886
+
* <p>
887
+
* The maximum number of inference units Amazon Rekognition Custom Labels
888
+
* uses to auto-scale the model. For more information, see
889
+
* <a>StartProjectVersion</a>.
890
+
* </p>
891
+
* <p>
892
+
* <b>Constraints:</b><br/>
893
+
* <b>Range: </b>1 - <br/>
894
+
*
895
+
* @return <p>
896
+
* The maximum number of inference units Amazon Rekognition Custom
897
+
* Labels uses to auto-scale the model. For more information, see
898
+
* <a>StartProjectVersion</a>.
899
+
* </p>
900
+
*/
901
+
publicIntegergetMaxInferenceUnits() {
902
+
returnmaxInferenceUnits;
903
+
}
904
+
905
+
/**
906
+
* <p>
907
+
* The maximum number of inference units Amazon Rekognition Custom Labels
908
+
* uses to auto-scale the model. For more information, see
909
+
* <a>StartProjectVersion</a>.
910
+
* </p>
911
+
* <p>
912
+
* <b>Constraints:</b><br/>
913
+
* <b>Range: </b>1 - <br/>
914
+
*
915
+
* @param maxInferenceUnits <p>
916
+
* The maximum number of inference units Amazon Rekognition
917
+
* Custom Labels uses to auto-scale the model. For more
0 commit comments