@aws-sdk/client-sagemaker 3.687.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21,7 +21,7 @@ export interface UpdateUserProfileRequest {
21
21
  * <p>A collection of settings.</p>
22
22
  * @public
23
23
  */
24
- UserSettings?: UserSettings;
24
+ UserSettings?: UserSettings | undefined;
25
25
  }
26
26
  /**
27
27
  * @public
@@ -31,7 +31,7 @@ export interface UpdateUserProfileResponse {
31
31
  * <p>The user profile Amazon Resource Name (ARN).</p>
32
32
  * @public
33
33
  */
34
- UserProfileArn?: string;
34
+ UserProfileArn?: string | undefined;
35
35
  }
36
36
  /**
37
37
  * @public
@@ -49,18 +49,18 @@ export interface UpdateWorkforceRequest {
49
49
  * <p>Maximum: Ten CIDR values</p>
50
50
  * @public
51
51
  */
52
- SourceIpConfig?: SourceIpConfig;
52
+ SourceIpConfig?: SourceIpConfig | undefined;
53
53
  /**
54
54
  * <p>Use this parameter to update your OIDC Identity Provider (IdP)
55
55
  * configuration for a workforce made using your own IdP.</p>
56
56
  * @public
57
57
  */
58
- OidcConfig?: OidcConfig;
58
+ OidcConfig?: OidcConfig | undefined;
59
59
  /**
60
60
  * <p>Use this parameter to update your VPC configuration for a workforce.</p>
61
61
  * @public
62
62
  */
63
- WorkforceVpcConfig?: WorkforceVpcConfigRequest;
63
+ WorkforceVpcConfig?: WorkforceVpcConfigRequest | undefined;
64
64
  }
65
65
  /**
66
66
  * @public
@@ -106,22 +106,22 @@ export interface UpdateWorkteamRequest {
106
106
  * associated with the work team you update. </p>
107
107
  * @public
108
108
  */
109
- MemberDefinitions?: MemberDefinition[];
109
+ MemberDefinitions?: MemberDefinition[] | undefined;
110
110
  /**
111
111
  * <p>An updated description for the work team.</p>
112
112
  * @public
113
113
  */
114
- Description?: string;
114
+ Description?: string | undefined;
115
115
  /**
116
116
  * <p>Configures SNS topic notifications for available or expiring work items</p>
117
117
  * @public
118
118
  */
119
- NotificationConfiguration?: NotificationConfiguration;
119
+ NotificationConfiguration?: NotificationConfiguration | undefined;
120
120
  /**
121
121
  * <p>Use this optional parameter to constrain access to an Amazon S3 resource based on the IP address using supported IAM global condition keys. The Amazon S3 resource is accessed in the worker portal using a Amazon S3 presigned URL.</p>
122
122
  * @public
123
123
  */
124
- WorkerAccessConfiguration?: WorkerAccessConfiguration;
124
+ WorkerAccessConfiguration?: WorkerAccessConfiguration | undefined;
125
125
  }
126
126
  /**
127
127
  * @public
@@ -166,17 +166,17 @@ export interface SearchExpression {
166
166
  * <p>A list of filter objects.</p>
167
167
  * @public
168
168
  */
169
- Filters?: Filter[];
169
+ Filters?: Filter[] | undefined;
170
170
  /**
171
171
  * <p>A list of nested filter objects.</p>
172
172
  * @public
173
173
  */
174
- NestedFilters?: NestedFilters[];
174
+ NestedFilters?: NestedFilters[] | undefined;
175
175
  /**
176
176
  * <p>A list of search expression objects.</p>
177
177
  * @public
178
178
  */
179
- SubExpressions?: SearchExpression[];
179
+ SubExpressions?: SearchExpression[] | undefined;
180
180
  /**
181
181
  * <p>A Boolean operator used to evaluate the search expression. If you want every
182
182
  * conditional statement in all lists to be satisfied for the entire search expression to
@@ -185,7 +185,7 @@ export interface SearchExpression {
185
185
  * value is <code>And</code>.</p>
186
186
  * @public
187
187
  */
188
- Operator?: BooleanOperator;
188
+ Operator?: BooleanOperator | undefined;
189
189
  }
190
190
  /**
191
191
  * @public
@@ -204,19 +204,19 @@ export interface SearchRequest {
204
204
  * <code>SearchExpression</code> object is 50.</p>
205
205
  * @public
206
206
  */
207
- SearchExpression?: SearchExpression;
207
+ SearchExpression?: SearchExpression | undefined;
208
208
  /**
209
209
  * <p>The name of the resource property used to sort the <code>SearchResults</code>. The
210
210
  * default is <code>LastModifiedTime</code>.</p>
211
211
  * @public
212
212
  */
213
- SortBy?: string;
213
+ SortBy?: string | undefined;
214
214
  /**
215
215
  * <p>How <code>SearchResults</code> are ordered. Valid values are <code>Ascending</code> or
216
216
  * <code>Descending</code>. The default is <code>Descending</code>.</p>
217
217
  * @public
218
218
  */
219
- SortOrder?: SearchSortOrder;
219
+ SortOrder?: SearchSortOrder | undefined;
220
220
  /**
221
221
  * <p>If more than <code>MaxResults</code> resources match the specified
222
222
  * <code>SearchExpression</code>, the response includes a
@@ -224,12 +224,12 @@ export interface SearchRequest {
224
224
  * <code>SearchRequest</code> to continue retrieving results.</p>
225
225
  * @public
226
226
  */
227
- NextToken?: string;
227
+ NextToken?: string | undefined;
228
228
  /**
229
229
  * <p>The maximum number of results to return.</p>
230
230
  * @public
231
231
  */
232
- MaxResults?: number;
232
+ MaxResults?: number | undefined;
233
233
  /**
234
234
  * <p>
235
235
  * A cross account filter option. When the value is <code>"CrossAccount"</code> the
@@ -243,14 +243,14 @@ export interface SearchRequest {
243
243
  * </p>
244
244
  * @public
245
245
  */
246
- CrossAccountFilterOption?: CrossAccountFilterOption;
246
+ CrossAccountFilterOption?: CrossAccountFilterOption | undefined;
247
247
  /**
248
248
  * <p>
249
249
  * Limits the results of your search request to the resources that you can access.
250
250
  * </p>
251
251
  * @public
252
252
  */
253
- VisibilityConditions?: VisibilityConditions[];
253
+ VisibilityConditions?: VisibilityConditions[] | undefined;
254
254
  }
255
255
  /**
256
256
  * @internal