aws-sdk 2.1661.0 → 2.1663.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.
- package/README.md +1 -1
- package/apis/appsync-2017-07-25.min.json +4 -1
- package/apis/appsync-2017-07-25.paginators.json +60 -0
- package/apis/cleanrooms-2022-02-17.min.json +1329 -202
- package/apis/cleanrooms-2022-02-17.paginators.json +18 -0
- package/apis/cleanroomsml-2023-09-06.min.json +305 -287
- package/apis/cleanroomsml-2023-09-06.waiters2.json +5 -0
- package/apis/connect-2017-08-08.min.json +155 -144
- package/apis/connect-contact-lens-2020-08-21.min.json +18 -1
- package/apis/datazone-2018-05-10.min.json +0 -49
- package/apis/entityresolution-2018-05-10.min.json +162 -94
- package/apis/iotsitewise-2019-12-02.min.json +113 -98
- package/apis/mediapackagev2-2022-12-25.min.json +0 -3
- package/apis/medical-imaging-2023-07-19.min.json +75 -35
- package/apis/pinpoint-sms-voice-v2-2022-03-31.min.json +6 -0
- package/clients/cleanrooms.d.ts +1079 -16
- package/clients/cleanroomsml.d.ts +284 -257
- package/clients/cleanroomsml.js +1 -0
- package/clients/connect.d.ts +26 -5
- package/clients/connectcontactlens.d.ts +24 -3
- package/clients/datazone.d.ts +0 -64
- package/clients/dynamodb.d.ts +6 -6
- package/clients/entityresolution.d.ts +105 -22
- package/clients/iotsitewise.d.ts +37 -25
- package/clients/mediapackagev2.d.ts +1 -1
- package/clients/medicalimaging.d.ts +38 -0
- package/clients/pinpointsmsvoicev2.d.ts +56 -56
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +134 -127
- package/dist/aws-sdk.js +158 -147
- package/dist/aws-sdk.min.js +11 -11
- package/lib/core.js +1 -1
- package/package.json +1 -1
| @@ -214,6 +214,7 @@ declare class CleanRoomsML extends Service { | |
| 214 214 | 
             
            }
         | 
| 215 215 | 
             
            declare namespace CleanRoomsML {
         | 
| 216 216 | 
             
              export type AccountId = string;
         | 
| 217 | 
            +
              export type AnalysisTemplateArn = string;
         | 
| 217 218 | 
             
              export interface AudienceDestination {
         | 
| 218 219 | 
             
                /**
         | 
| 219 220 | 
             
                 * The Amazon S3 bucket and path for the configured audience.
         | 
| @@ -223,130 +224,134 @@ declare namespace CleanRoomsML { | |
| 223 224 | 
             
              export type AudienceExportJobList = AudienceExportJobSummary[];
         | 
| 224 225 | 
             
              export type AudienceExportJobStatus = "CREATE_PENDING"|"CREATE_IN_PROGRESS"|"CREATE_FAILED"|"ACTIVE"|string;
         | 
| 225 226 | 
             
              export interface AudienceExportJobSummary {
         | 
| 226 | 
            -
                /**
         | 
| 227 | 
            -
                 * The Amazon Resource Name (ARN) of the audience generation job that was exported.
         | 
| 228 | 
            -
                 */
         | 
| 229 | 
            -
                audienceGenerationJobArn: AudienceGenerationJobArn;
         | 
| 230 | 
            -
                audienceSize: AudienceSize;
         | 
| 231 227 | 
             
                /**
         | 
| 232 228 | 
             
                 * The time at which the audience export job was created.
         | 
| 233 229 | 
             
                 */
         | 
| 234 230 | 
             
                createTime: SyntheticTimestamp_date_time;
         | 
| 235 231 | 
             
                /**
         | 
| 236 | 
            -
                 * The  | 
| 232 | 
            +
                 * The most recent time at which the audience export job was updated.
         | 
| 237 233 | 
             
                 */
         | 
| 238 | 
            -
                 | 
| 234 | 
            +
                updateTime: SyntheticTimestamp_date_time;
         | 
| 239 235 | 
             
                /**
         | 
| 240 236 | 
             
                 * The name of the audience export job.
         | 
| 241 237 | 
             
                 */
         | 
| 242 238 | 
             
                name: NameString;
         | 
| 243 239 | 
             
                /**
         | 
| 244 | 
            -
                 * The Amazon  | 
| 240 | 
            +
                 * The Amazon Resource Name (ARN) of the audience generation job that was exported.
         | 
| 245 241 | 
             
                 */
         | 
| 246 | 
            -
                 | 
| 242 | 
            +
                audienceGenerationJobArn: AudienceGenerationJobArn;
         | 
| 243 | 
            +
                audienceSize: AudienceSize;
         | 
| 244 | 
            +
                /**
         | 
| 245 | 
            +
                 * The description of the audience export job.
         | 
| 246 | 
            +
                 */
         | 
| 247 | 
            +
                description?: ResourceDescription;
         | 
| 247 248 | 
             
                /**
         | 
| 248 249 | 
             
                 * The status of the audience export job.
         | 
| 249 250 | 
             
                 */
         | 
| 250 251 | 
             
                status: AudienceExportJobStatus;
         | 
| 251 252 | 
             
                statusDetails?: StatusDetails;
         | 
| 252 253 | 
             
                /**
         | 
| 253 | 
            -
                 * The  | 
| 254 | 
            +
                 * The Amazon S3 bucket where the audience export is stored.
         | 
| 254 255 | 
             
                 */
         | 
| 255 | 
            -
                 | 
| 256 | 
            +
                outputLocation?: S3Path;
         | 
| 256 257 | 
             
              }
         | 
| 257 258 | 
             
              export type AudienceGenerationJobArn = string;
         | 
| 258 259 | 
             
              export interface AudienceGenerationJobDataSource {
         | 
| 259 260 | 
             
                /**
         | 
| 260 261 | 
             
                 * Defines the Amazon S3 bucket where the seed audience for the generating audience is stored. A valid data source is a JSON line file in the following format:  {"user_id": "111111"}   {"user_id": "222222"}   ... 
         | 
| 261 262 | 
             
                 */
         | 
| 262 | 
            -
                dataSource | 
| 263 | 
            +
                dataSource?: S3ConfigMap;
         | 
| 263 264 | 
             
                /**
         | 
| 264 | 
            -
                 * The ARN of the IAM role that can read the Amazon S3 bucket where the  | 
| 265 | 
            +
                 * The ARN of the IAM role that can read the Amazon S3 bucket where the seed audience is stored.
         | 
| 265 266 | 
             
                 */
         | 
| 266 267 | 
             
                roleArn: IamRoleArn;
         | 
| 268 | 
            +
                /**
         | 
| 269 | 
            +
                 * The protected SQL query parameters.
         | 
| 270 | 
            +
                 */
         | 
| 271 | 
            +
                sqlParameters?: ProtectedQuerySQLParameters;
         | 
| 267 272 | 
             
              }
         | 
| 268 273 | 
             
              export type AudienceGenerationJobList = AudienceGenerationJobSummary[];
         | 
| 269 274 | 
             
              export type AudienceGenerationJobStatus = "CREATE_PENDING"|"CREATE_IN_PROGRESS"|"CREATE_FAILED"|"ACTIVE"|"DELETE_PENDING"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|string;
         | 
| 270 275 | 
             
              export interface AudienceGenerationJobSummary {
         | 
| 271 276 | 
             
                /**
         | 
| 272 | 
            -
                 * The  | 
| 277 | 
            +
                 * The time at which the audience generation job was created.
         | 
| 273 278 | 
             
                 */
         | 
| 274 | 
            -
                 | 
| 279 | 
            +
                createTime: SyntheticTimestamp_date_time;
         | 
| 275 280 | 
             
                /**
         | 
| 276 | 
            -
                 * The  | 
| 281 | 
            +
                 * The most recent time at which the audience generation job was updated.
         | 
| 277 282 | 
             
                 */
         | 
| 278 | 
            -
                 | 
| 283 | 
            +
                updateTime: SyntheticTimestamp_date_time;
         | 
| 279 284 | 
             
                /**
         | 
| 280 | 
            -
                 * The Amazon Resource Name (ARN) of the  | 
| 285 | 
            +
                 * The Amazon Resource Name (ARN) of the audience generation job.
         | 
| 281 286 | 
             
                 */
         | 
| 282 | 
            -
                 | 
| 287 | 
            +
                audienceGenerationJobArn: AudienceGenerationJobArn;
         | 
| 283 288 | 
             
                /**
         | 
| 284 | 
            -
                 * The  | 
| 289 | 
            +
                 * The name of the audience generation job.
         | 
| 285 290 | 
             
                 */
         | 
| 286 | 
            -
                 | 
| 291 | 
            +
                name: NameString;
         | 
| 287 292 | 
             
                /**
         | 
| 288 293 | 
             
                 * The description of the audience generation job.
         | 
| 289 294 | 
             
                 */
         | 
| 290 295 | 
             
                description?: ResourceDescription;
         | 
| 291 296 | 
             
                /**
         | 
| 292 | 
            -
                 * The  | 
| 297 | 
            +
                 * The status of the audience generation job.
         | 
| 293 298 | 
             
                 */
         | 
| 294 | 
            -
                 | 
| 299 | 
            +
                status: AudienceGenerationJobStatus;
         | 
| 295 300 | 
             
                /**
         | 
| 296 | 
            -
                 * The  | 
| 301 | 
            +
                 * The Amazon Resource Name (ARN) of the configured audience model that was used for this audience generation job.
         | 
| 297 302 | 
             
                 */
         | 
| 298 | 
            -
                 | 
| 303 | 
            +
                configuredAudienceModelArn: ConfiguredAudienceModelArn;
         | 
| 299 304 | 
             
                /**
         | 
| 300 | 
            -
                 * The  | 
| 305 | 
            +
                 * The identifier of the collaboration that contains this audience generation job.
         | 
| 301 306 | 
             
                 */
         | 
| 302 | 
            -
                 | 
| 307 | 
            +
                collaborationId?: UUID;
         | 
| 303 308 | 
             
                /**
         | 
| 304 | 
            -
                 * The  | 
| 309 | 
            +
                 * The AWS Account that submitted the job.
         | 
| 305 310 | 
             
                 */
         | 
| 306 | 
            -
                 | 
| 311 | 
            +
                startedBy?: AccountId;
         | 
| 307 312 | 
             
              }
         | 
| 308 313 | 
             
              export type AudienceModelArn = string;
         | 
| 309 314 | 
             
              export type AudienceModelList = AudienceModelSummary[];
         | 
| 310 315 | 
             
              export type AudienceModelStatus = "CREATE_PENDING"|"CREATE_IN_PROGRESS"|"CREATE_FAILED"|"ACTIVE"|"DELETE_PENDING"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|string;
         | 
| 311 316 | 
             
              export interface AudienceModelSummary {
         | 
| 312 | 
            -
                /**
         | 
| 313 | 
            -
                 * The Amazon Resource Name (ARN) of the audience model.
         | 
| 314 | 
            -
                 */
         | 
| 315 | 
            -
                audienceModelArn: AudienceModelArn;
         | 
| 316 317 | 
             
                /**
         | 
| 317 318 | 
             
                 * The time at which the audience model was created.
         | 
| 318 319 | 
             
                 */
         | 
| 319 320 | 
             
                createTime: SyntheticTimestamp_date_time;
         | 
| 320 321 | 
             
                /**
         | 
| 321 | 
            -
                 * The  | 
| 322 | 
            +
                 * The most recent time at which the audience model was updated.
         | 
| 322 323 | 
             
                 */
         | 
| 323 | 
            -
                 | 
| 324 | 
            +
                updateTime: SyntheticTimestamp_date_time;
         | 
| 324 325 | 
             
                /**
         | 
| 325 | 
            -
                 * The  | 
| 326 | 
            +
                 * The Amazon Resource Name (ARN) of the audience model.
         | 
| 326 327 | 
             
                 */
         | 
| 327 | 
            -
                 | 
| 328 | 
            +
                audienceModelArn: AudienceModelArn;
         | 
| 328 329 | 
             
                /**
         | 
| 329 | 
            -
                 * The  | 
| 330 | 
            +
                 * The name of the audience model.
         | 
| 330 331 | 
             
                 */
         | 
| 331 | 
            -
                 | 
| 332 | 
            +
                name: NameString;
         | 
| 332 333 | 
             
                /**
         | 
| 333 334 | 
             
                 * The Amazon Resource Name (ARN) of the training dataset that was used for the audience model.
         | 
| 334 335 | 
             
                 */
         | 
| 335 336 | 
             
                trainingDatasetArn: TrainingDatasetArn;
         | 
| 336 337 | 
             
                /**
         | 
| 337 | 
            -
                 * The  | 
| 338 | 
            +
                 * The status of the audience model.
         | 
| 338 339 | 
             
                 */
         | 
| 339 | 
            -
                 | 
| 340 | 
            -
              }
         | 
| 341 | 
            -
              export interface AudienceQualityMetrics {
         | 
| 340 | 
            +
                status: AudienceModelStatus;
         | 
| 342 341 | 
             
                /**
         | 
| 343 | 
            -
                 * The  | 
| 342 | 
            +
                 * The description of the audience model.
         | 
| 344 343 | 
             
                 */
         | 
| 345 | 
            -
                 | 
| 344 | 
            +
                description?: ResourceDescription;
         | 
| 345 | 
            +
              }
         | 
| 346 | 
            +
              export interface AudienceQualityMetrics {
         | 
| 346 347 | 
             
                /**
         | 
| 347 348 | 
             
                 * The relevance scores of the generated audience.
         | 
| 348 349 | 
             
                 */
         | 
| 349 350 | 
             
                relevanceMetrics: RelevanceMetrics;
         | 
| 351 | 
            +
                /**
         | 
| 352 | 
            +
                 * The recall score of the generated audience. Recall is the percentage of the most similar users (by default, the most similar 20%) from a sample of the training data that are included in the seed audience by the audience generation job. Values range from 0-1, larger values indicate a better audience. A recall value approximately equal to the maximum bin size indicates that the audience model is equivalent to random selection. 
         | 
| 353 | 
            +
                 */
         | 
| 354 | 
            +
                recallMetric?: Double;
         | 
| 350 355 | 
             
              }
         | 
| 351 356 | 
             
              export interface AudienceSize {
         | 
| 352 357 | 
             
                /**
         | 
| @@ -360,14 +365,14 @@ declare namespace CleanRoomsML { | |
| 360 365 | 
             
              }
         | 
| 361 366 | 
             
              export type AudienceSizeBins = AudienceSizeValue[];
         | 
| 362 367 | 
             
              export interface AudienceSizeConfig {
         | 
| 363 | 
            -
                /**
         | 
| 364 | 
            -
                 * An array of the different audience output sizes.
         | 
| 365 | 
            -
                 */
         | 
| 366 | 
            -
                audienceSizeBins: AudienceSizeBins;
         | 
| 367 368 | 
             
                /**
         | 
| 368 369 | 
             
                 * Whether the audience output sizes are defined as an absolute number or a percentage.
         | 
| 369 370 | 
             
                 */
         | 
| 370 371 | 
             
                audienceSizeType: AudienceSizeType;
         | 
| 372 | 
            +
                /**
         | 
| 373 | 
            +
                 * An array of the different audience output sizes.
         | 
| 374 | 
            +
                 */
         | 
| 375 | 
            +
                audienceSizeBins: AudienceSizeBins;
         | 
| 371 376 | 
             
              }
         | 
| 372 377 | 
             
              export type AudienceSizeType = "ABSOLUTE"|"PERCENTAGE"|string;
         | 
| 373 378 | 
             
              export type AudienceSizeValue = number;
         | 
| @@ -396,68 +401,68 @@ declare namespace CleanRoomsML { | |
| 396 401 | 
             
              }
         | 
| 397 402 | 
             
              export type ConfiguredAudienceModelStatus = "ACTIVE"|string;
         | 
| 398 403 | 
             
              export interface ConfiguredAudienceModelSummary {
         | 
| 399 | 
            -
                /**
         | 
| 400 | 
            -
                 * The Amazon Resource Name (ARN) of the audience model that was used to create the configured audience model.
         | 
| 401 | 
            -
                 */
         | 
| 402 | 
            -
                audienceModelArn: AudienceModelArn;
         | 
| 403 | 
            -
                /**
         | 
| 404 | 
            -
                 * The Amazon Resource Name (ARN) of the configured audience model that you are interested in.
         | 
| 405 | 
            -
                 */
         | 
| 406 | 
            -
                configuredAudienceModelArn: ConfiguredAudienceModelArn;
         | 
| 407 404 | 
             
                /**
         | 
| 408 405 | 
             
                 * The time at which the configured audience model was created.
         | 
| 409 406 | 
             
                 */
         | 
| 410 407 | 
             
                createTime: SyntheticTimestamp_date_time;
         | 
| 411 408 | 
             
                /**
         | 
| 412 | 
            -
                 * The  | 
| 409 | 
            +
                 * The most recent time at which the configured audience model was updated.
         | 
| 413 410 | 
             
                 */
         | 
| 414 | 
            -
                 | 
| 411 | 
            +
                updateTime: SyntheticTimestamp_date_time;
         | 
| 415 412 | 
             
                /**
         | 
| 416 413 | 
             
                 * The name of the configured audience model.
         | 
| 417 414 | 
             
                 */
         | 
| 418 415 | 
             
                name: NameString;
         | 
| 416 | 
            +
                /**
         | 
| 417 | 
            +
                 * The Amazon Resource Name (ARN) of the audience model that was used to create the configured audience model.
         | 
| 418 | 
            +
                 */
         | 
| 419 | 
            +
                audienceModelArn: AudienceModelArn;
         | 
| 419 420 | 
             
                /**
         | 
| 420 421 | 
             
                 * The output configuration of the configured audience model.
         | 
| 421 422 | 
             
                 */
         | 
| 422 423 | 
             
                outputConfig: ConfiguredAudienceModelOutputConfig;
         | 
| 423 424 | 
             
                /**
         | 
| 424 | 
            -
                 * The  | 
| 425 | 
            +
                 * The description of the configured audience model.
         | 
| 425 426 | 
             
                 */
         | 
| 426 | 
            -
                 | 
| 427 | 
            +
                description?: ResourceDescription;
         | 
| 427 428 | 
             
                /**
         | 
| 428 | 
            -
                 * The  | 
| 429 | 
            +
                 * The Amazon Resource Name (ARN) of the configured audience model that you are interested in.
         | 
| 429 430 | 
             
                 */
         | 
| 430 | 
            -
                 | 
| 431 | 
            +
                configuredAudienceModelArn: ConfiguredAudienceModelArn;
         | 
| 432 | 
            +
                /**
         | 
| 433 | 
            +
                 * The status of the configured audience model.
         | 
| 434 | 
            +
                 */
         | 
| 435 | 
            +
                status: ConfiguredAudienceModelStatus;
         | 
| 431 436 | 
             
              }
         | 
| 432 437 | 
             
              export interface CreateAudienceModelRequest {
         | 
| 433 438 | 
             
                /**
         | 
| 434 | 
            -
                 * The  | 
| 439 | 
            +
                 * The start date and time of the training window.
         | 
| 435 440 | 
             
                 */
         | 
| 436 | 
            -
                 | 
| 441 | 
            +
                trainingDataStartTime?: SyntheticTimestamp_date_time;
         | 
| 437 442 | 
             
                /**
         | 
| 438 | 
            -
                 * The  | 
| 443 | 
            +
                 * The end date and time of the training window.
         | 
| 439 444 | 
             
                 */
         | 
| 440 | 
            -
                 | 
| 445 | 
            +
                trainingDataEndTime?: SyntheticTimestamp_date_time;
         | 
| 441 446 | 
             
                /**
         | 
| 442 447 | 
             
                 * The name of the audience model resource.
         | 
| 443 448 | 
             
                 */
         | 
| 444 449 | 
             
                name: NameString;
         | 
| 445 450 | 
             
                /**
         | 
| 446 | 
            -
                 * The  | 
| 451 | 
            +
                 * The Amazon Resource Name (ARN) of the training dataset for this audience model.
         | 
| 447 452 | 
             
                 */
         | 
| 448 | 
            -
                 | 
| 453 | 
            +
                trainingDatasetArn: TrainingDatasetArn;
         | 
| 449 454 | 
             
                /**
         | 
| 450 | 
            -
                 * The  | 
| 455 | 
            +
                 * The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the trained ML model and the associated data.
         | 
| 451 456 | 
             
                 */
         | 
| 452 | 
            -
                 | 
| 457 | 
            +
                kmsKeyArn?: KmsKeyArn;
         | 
| 453 458 | 
             
                /**
         | 
| 454 | 
            -
                 * The  | 
| 459 | 
            +
                 * The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. The following basic restrictions apply to tags:   Maximum number of tags per resource - 50.   For each resource, each tag key must be unique, and each tag key can have only one value.   Maximum key length - 128 Unicode characters in UTF-8.   Maximum value length - 256 Unicode characters in UTF-8.   If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.   Tag keys and values are case sensitive.   Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.  
         | 
| 455 460 | 
             
                 */
         | 
| 456 | 
            -
                 | 
| 461 | 
            +
                tags?: TagMap;
         | 
| 457 462 | 
             
                /**
         | 
| 458 | 
            -
                 * The  | 
| 463 | 
            +
                 * The description of the audience model.
         | 
| 459 464 | 
             
                 */
         | 
| 460 | 
            -
                 | 
| 465 | 
            +
                description?: ResourceDescription;
         | 
| 461 466 | 
             
              }
         | 
| 462 467 | 
             
              export interface CreateAudienceModelResponse {
         | 
| 463 468 | 
             
                /**
         | 
| @@ -467,41 +472,41 @@ declare namespace CleanRoomsML { | |
| 467 472 | 
             
              }
         | 
| 468 473 | 
             
              export interface CreateConfiguredAudienceModelRequest {
         | 
| 469 474 | 
             
                /**
         | 
| 470 | 
            -
                 * The  | 
| 475 | 
            +
                 * The name of the configured audience model.
         | 
| 471 476 | 
             
                 */
         | 
| 472 | 
            -
                 | 
| 477 | 
            +
                name: NameString;
         | 
| 473 478 | 
             
                /**
         | 
| 474 | 
            -
                 *  | 
| 479 | 
            +
                 * The Amazon Resource Name (ARN) of the audience model to use for the configured audience model.
         | 
| 475 480 | 
             
                 */
         | 
| 476 | 
            -
                 | 
| 481 | 
            +
                audienceModelArn: AudienceModelArn;
         | 
| 477 482 | 
             
                /**
         | 
| 478 | 
            -
                 * Configure  | 
| 483 | 
            +
                 * Configure the Amazon S3 location and IAM Role for audiences created using this configured audience model. Each audience will have a unique location. The IAM Role must have s3:PutObject permission on the destination Amazon S3 location. If the destination is protected with Amazon S3 KMS-SSE, then the Role must also have the required KMS permissions.
         | 
| 479 484 | 
             
                 */
         | 
| 480 | 
            -
                 | 
| 485 | 
            +
                outputConfig: ConfiguredAudienceModelOutputConfig;
         | 
| 481 486 | 
             
                /**
         | 
| 482 487 | 
             
                 * The description of the configured audience model.
         | 
| 483 488 | 
             
                 */
         | 
| 484 489 | 
             
                description?: ResourceDescription;
         | 
| 485 490 | 
             
                /**
         | 
| 486 | 
            -
                 *  | 
| 487 | 
            -
                 */
         | 
| 488 | 
            -
                minMatchingSeedSize?: MinMatchingSeedSize;
         | 
| 489 | 
            -
                /**
         | 
| 490 | 
            -
                 * The name of the configured audience model.
         | 
| 491 | 
            +
                 * Whether audience metrics are shared.
         | 
| 491 492 | 
             
                 */
         | 
| 492 | 
            -
                 | 
| 493 | 
            +
                sharedAudienceMetrics: MetricsList;
         | 
| 493 494 | 
             
                /**
         | 
| 494 | 
            -
                 *  | 
| 495 | 
            +
                 * The minimum number of users from the seed audience that must match with users in the training data of the audience model. The default value is 500.
         | 
| 495 496 | 
             
                 */
         | 
| 496 | 
            -
                 | 
| 497 | 
            +
                minMatchingSeedSize?: MinMatchingSeedSize;
         | 
| 497 498 | 
             
                /**
         | 
| 498 | 
            -
                 *  | 
| 499 | 
            +
                 * Configure the list of output sizes of audiences that can be created using this configured audience model. A request to StartAudienceGenerationJob that uses this configured audience model must have an audienceSize selected from this list. You can use the ABSOLUTE AudienceSize to configure out audience sizes using the count of identifiers in the output. You can use the Percentage AudienceSize to configure sizes in the range 1-100 percent.
         | 
| 499 500 | 
             
                 */
         | 
| 500 | 
            -
                 | 
| 501 | 
            +
                audienceSizeConfig?: AudienceSizeConfig;
         | 
| 501 502 | 
             
                /**
         | 
| 502 503 | 
             
                 * The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. The following basic restrictions apply to tags:   Maximum number of tags per resource - 50.   For each resource, each tag key must be unique, and each tag key can have only one value.   Maximum key length - 128 Unicode characters in UTF-8.   Maximum value length - 256 Unicode characters in UTF-8.   If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.   Tag keys and values are case sensitive.   Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.  
         | 
| 503 504 | 
             
                 */
         | 
| 504 505 | 
             
                tags?: TagMap;
         | 
| 506 | 
            +
                /**
         | 
| 507 | 
            +
                 * Configure how the service tags audience generation jobs created using this configured audience model. If you specify NONE, the tags from the StartAudienceGenerationJob request determine the tags of the audience generation job. If you specify FROM_PARENT_RESOURCE, the audience generation job inherits the tags from the configured audience model, by default. Tags in the StartAudienceGenerationJob will override the default. When the client is in a different account than the configured audience model, the tags from the client are never applied to a resource in the caller's account.
         | 
| 508 | 
            +
                 */
         | 
| 509 | 
            +
                childResourceTagOnCreatePolicy?: TagOnCreatePolicy;
         | 
| 505 510 | 
             
              }
         | 
| 506 511 | 
             
              export interface CreateConfiguredAudienceModelResponse {
         | 
| 507 512 | 
             
                /**
         | 
| @@ -510,10 +515,6 @@ declare namespace CleanRoomsML { | |
| 510 515 | 
             
                configuredAudienceModelArn: ConfiguredAudienceModelArn;
         | 
| 511 516 | 
             
              }
         | 
| 512 517 | 
             
              export interface CreateTrainingDatasetRequest {
         | 
| 513 | 
            -
                /**
         | 
| 514 | 
            -
                 * The description of the training dataset.
         | 
| 515 | 
            -
                 */
         | 
| 516 | 
            -
                description?: ResourceDescription;
         | 
| 517 518 | 
             
                /**
         | 
| 518 519 | 
             
                 * The name of the training dataset. This name must be unique in your account and region.
         | 
| 519 520 | 
             
                 */
         | 
| @@ -522,14 +523,18 @@ declare namespace CleanRoomsML { | |
| 522 523 | 
             
                 * The ARN of the IAM role that Clean Rooms ML can assume to read the data referred to in the dataSource field of each dataset. Passing a role across AWS accounts is not allowed. If you pass a role that isn't in your account, you get an AccessDeniedException error.
         | 
| 523 524 | 
             
                 */
         | 
| 524 525 | 
             
                roleArn: IamRoleArn;
         | 
| 526 | 
            +
                /**
         | 
| 527 | 
            +
                 * An array of information that lists the Dataset objects, which specifies the dataset type and details on its location and schema. You must provide a role that has read access to these tables.
         | 
| 528 | 
            +
                 */
         | 
| 529 | 
            +
                trainingData: CreateTrainingDatasetRequestTrainingDataList;
         | 
| 525 530 | 
             
                /**
         | 
| 526 531 | 
             
                 * The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. The following basic restrictions apply to tags:   Maximum number of tags per resource - 50.   For each resource, each tag key must be unique, and each tag key can have only one value.   Maximum key length - 128 Unicode characters in UTF-8.   Maximum value length - 256 Unicode characters in UTF-8.   If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.   Tag keys and values are case sensitive.   Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.  
         | 
| 527 532 | 
             
                 */
         | 
| 528 533 | 
             
                tags?: TagMap;
         | 
| 529 534 | 
             
                /**
         | 
| 530 | 
            -
                 *  | 
| 535 | 
            +
                 * The description of the training dataset.
         | 
| 531 536 | 
             
                 */
         | 
| 532 | 
            -
                 | 
| 537 | 
            +
                description?: ResourceDescription;
         | 
| 533 538 | 
             
              }
         | 
| 534 539 | 
             
              export type CreateTrainingDatasetRequestTrainingDataList = Dataset[];
         | 
| 535 540 | 
             
              export interface CreateTrainingDatasetResponse {
         | 
| @@ -545,24 +550,24 @@ declare namespace CleanRoomsML { | |
| 545 550 | 
             
                glueDataSource: GlueDataSource;
         | 
| 546 551 | 
             
              }
         | 
| 547 552 | 
             
              export interface Dataset {
         | 
| 548 | 
            -
                /**
         | 
| 549 | 
            -
                 * A DatasetInputConfig object that defines the data source and schema mapping.
         | 
| 550 | 
            -
                 */
         | 
| 551 | 
            -
                inputConfig: DatasetInputConfig;
         | 
| 552 553 | 
             
                /**
         | 
| 553 554 | 
             
                 * What type of information is found in the dataset.
         | 
| 554 555 | 
             
                 */
         | 
| 555 556 | 
             
                type: DatasetType;
         | 
| 556 | 
            -
              }
         | 
| 557 | 
            -
              export interface DatasetInputConfig {
         | 
| 558 557 | 
             
                /**
         | 
| 559 | 
            -
                 * A  | 
| 558 | 
            +
                 * A DatasetInputConfig object that defines the data source and schema mapping.
         | 
| 560 559 | 
             
                 */
         | 
| 561 | 
            -
                 | 
| 560 | 
            +
                inputConfig: DatasetInputConfig;
         | 
| 561 | 
            +
              }
         | 
| 562 | 
            +
              export interface DatasetInputConfig {
         | 
| 562 563 | 
             
                /**
         | 
| 563 564 | 
             
                 * The schema information for the training data.
         | 
| 564 565 | 
             
                 */
         | 
| 565 566 | 
             
                schema: DatasetInputConfigSchemaList;
         | 
| 567 | 
            +
                /**
         | 
| 568 | 
            +
                 * A DataSource object that specifies the Glue data source for the training data.
         | 
| 569 | 
            +
                 */
         | 
| 570 | 
            +
                dataSource: DataSource;
         | 
| 566 571 | 
             
              }
         | 
| 567 572 | 
             
              export type DatasetInputConfigSchemaList = ColumnSchema[];
         | 
| 568 573 | 
             
              export type DatasetList = Dataset[];
         | 
| @@ -606,61 +611,65 @@ declare namespace CleanRoomsML { | |
| 606 611 | 
             
              }
         | 
| 607 612 | 
             
              export interface GetAudienceGenerationJobResponse {
         | 
| 608 613 | 
             
                /**
         | 
| 609 | 
            -
                 * The  | 
| 614 | 
            +
                 * The time at which the audience generation job was created.
         | 
| 610 615 | 
             
                 */
         | 
| 611 | 
            -
                 | 
| 616 | 
            +
                createTime: SyntheticTimestamp_date_time;
         | 
| 612 617 | 
             
                /**
         | 
| 613 | 
            -
                 * The  | 
| 618 | 
            +
                 * The most recent time at which the audience generation job was updated.
         | 
| 614 619 | 
             
                 */
         | 
| 615 | 
            -
                 | 
| 620 | 
            +
                updateTime: SyntheticTimestamp_date_time;
         | 
| 616 621 | 
             
                /**
         | 
| 617 | 
            -
                 * The Amazon Resource Name (ARN) of the  | 
| 622 | 
            +
                 * The Amazon Resource Name (ARN) of the audience generation job.
         | 
| 618 623 | 
             
                 */
         | 
| 619 | 
            -
                 | 
| 624 | 
            +
                audienceGenerationJobArn: AudienceGenerationJobArn;
         | 
| 620 625 | 
             
                /**
         | 
| 621 | 
            -
                 * The  | 
| 626 | 
            +
                 * The name of the audience generation job.
         | 
| 622 627 | 
             
                 */
         | 
| 623 | 
            -
                 | 
| 628 | 
            +
                name: NameString;
         | 
| 624 629 | 
             
                /**
         | 
| 625 630 | 
             
                 * The description of the audience generation job.
         | 
| 626 631 | 
             
                 */
         | 
| 627 632 | 
             
                description?: ResourceDescription;
         | 
| 628 633 | 
             
                /**
         | 
| 629 | 
            -
                 *  | 
| 634 | 
            +
                 * The status of the audience generation job.
         | 
| 630 635 | 
             
                 */
         | 
| 631 | 
            -
                 | 
| 636 | 
            +
                status: AudienceGenerationJobStatus;
         | 
| 632 637 | 
             
                /**
         | 
| 633 | 
            -
                 *  | 
| 638 | 
            +
                 * Details about the status of the audience generation job.
         | 
| 634 639 | 
             
                 */
         | 
| 635 | 
            -
                 | 
| 640 | 
            +
                statusDetails?: StatusDetails;
         | 
| 636 641 | 
             
                /**
         | 
| 637 | 
            -
                 * The  | 
| 642 | 
            +
                 * The Amazon Resource Name (ARN) of the configured audience model used for this audience generation job.
         | 
| 638 643 | 
             
                 */
         | 
| 639 | 
            -
                 | 
| 644 | 
            +
                configuredAudienceModelArn: ConfiguredAudienceModelArn;
         | 
| 640 645 | 
             
                /**
         | 
| 641 646 | 
             
                 * The seed audience that was used for this audience generation job. This field will be null if the account calling the API is the account that started this audience generation job. 
         | 
| 642 647 | 
             
                 */
         | 
| 643 648 | 
             
                seedAudience?: AudienceGenerationJobDataSource;
         | 
| 644 649 | 
             
                /**
         | 
| 645 | 
            -
                 *  | 
| 650 | 
            +
                 * Configure whether the seed users are included in the output audience. By default, Clean Rooms ML removes seed users from the output audience. If you specify TRUE, the seed users will appear first in the output. Clean Rooms ML does not explicitly reveal whether a user was in the seed, but the recipient of the audience will know that the first minimumSeedSize count of users are from the seed.
         | 
| 646 651 | 
             
                 */
         | 
| 647 | 
            -
                 | 
| 652 | 
            +
                includeSeedInOutput?: Boolean;
         | 
| 648 653 | 
             
                /**
         | 
| 649 | 
            -
                 * The  | 
| 654 | 
            +
                 * The identifier of the collaboration that this audience generation job is associated with.
         | 
| 650 655 | 
             
                 */
         | 
| 651 | 
            -
                 | 
| 656 | 
            +
                collaborationId?: UUID;
         | 
| 652 657 | 
             
                /**
         | 
| 653 | 
            -
                 *  | 
| 658 | 
            +
                 * The relevance scores for different audience sizes and the recall score of the generated audience. 
         | 
| 654 659 | 
             
                 */
         | 
| 655 | 
            -
                 | 
| 660 | 
            +
                metrics?: AudienceQualityMetrics;
         | 
| 661 | 
            +
                /**
         | 
| 662 | 
            +
                 * The AWS account that started this audience generation job.
         | 
| 663 | 
            +
                 */
         | 
| 664 | 
            +
                startedBy?: AccountId;
         | 
| 656 665 | 
             
                /**
         | 
| 657 666 | 
             
                 * The tags that are associated to this audience generation job.
         | 
| 658 667 | 
             
                 */
         | 
| 659 668 | 
             
                tags?: TagMap;
         | 
| 660 669 | 
             
                /**
         | 
| 661 | 
            -
                 * The  | 
| 670 | 
            +
                 * The unique identifier of the protected query for this audience generation job.
         | 
| 662 671 | 
             
                 */
         | 
| 663 | 
            -
                 | 
| 672 | 
            +
                protectedQueryIdentifier?: String;
         | 
| 664 673 | 
             
              }
         | 
| 665 674 | 
             
              export interface GetAudienceModelRequest {
         | 
| 666 675 | 
             
                /**
         | 
| @@ -669,26 +678,34 @@ declare namespace CleanRoomsML { | |
| 669 678 | 
             
                audienceModelArn: AudienceModelArn;
         | 
| 670 679 | 
             
              }
         | 
| 671 680 | 
             
              export interface GetAudienceModelResponse {
         | 
| 672 | 
            -
                /**
         | 
| 673 | 
            -
                 * The Amazon Resource Name (ARN) of the audience model.
         | 
| 674 | 
            -
                 */
         | 
| 675 | 
            -
                audienceModelArn: AudienceModelArn;
         | 
| 676 681 | 
             
                /**
         | 
| 677 682 | 
             
                 * The time at which the audience model was created.
         | 
| 678 683 | 
             
                 */
         | 
| 679 684 | 
             
                createTime: SyntheticTimestamp_date_time;
         | 
| 680 685 | 
             
                /**
         | 
| 681 | 
            -
                 * The  | 
| 686 | 
            +
                 * The most recent time at which the audience model was updated.
         | 
| 687 | 
            +
                 */
         | 
| 688 | 
            +
                updateTime: SyntheticTimestamp_date_time;
         | 
| 689 | 
            +
                /**
         | 
| 690 | 
            +
                 * The start date specified for the training window.
         | 
| 691 | 
            +
                 */
         | 
| 692 | 
            +
                trainingDataStartTime?: SyntheticTimestamp_date_time;
         | 
| 693 | 
            +
                /**
         | 
| 694 | 
            +
                 * The end date specified for the training window.
         | 
| 682 695 | 
             
                 */
         | 
| 683 | 
            -
                 | 
| 696 | 
            +
                trainingDataEndTime?: SyntheticTimestamp_date_time;
         | 
| 684 697 | 
             
                /**
         | 
| 685 | 
            -
                 * The  | 
| 698 | 
            +
                 * The Amazon Resource Name (ARN) of the audience model.
         | 
| 686 699 | 
             
                 */
         | 
| 687 | 
            -
                 | 
| 700 | 
            +
                audienceModelArn: AudienceModelArn;
         | 
| 688 701 | 
             
                /**
         | 
| 689 702 | 
             
                 * The name of the audience model.
         | 
| 690 703 | 
             
                 */
         | 
| 691 704 | 
             
                name: NameString;
         | 
| 705 | 
            +
                /**
         | 
| 706 | 
            +
                 * The Amazon Resource Name (ARN) of the training dataset that was used for this audience model.
         | 
| 707 | 
            +
                 */
         | 
| 708 | 
            +
                trainingDatasetArn: TrainingDatasetArn;
         | 
| 692 709 | 
             
                /**
         | 
| 693 710 | 
             
                 * The status of the audience model.
         | 
| 694 711 | 
             
                 */
         | 
| @@ -698,25 +715,17 @@ declare namespace CleanRoomsML { | |
| 698 715 | 
             
                 */
         | 
| 699 716 | 
             
                statusDetails?: StatusDetails;
         | 
| 700 717 | 
             
                /**
         | 
| 701 | 
            -
                 * The  | 
| 702 | 
            -
                 */
         | 
| 703 | 
            -
                tags?: TagMap;
         | 
| 704 | 
            -
                /**
         | 
| 705 | 
            -
                 * The end date specified for the training window.
         | 
| 706 | 
            -
                 */
         | 
| 707 | 
            -
                trainingDataEndTime?: SyntheticTimestamp_date_time;
         | 
| 708 | 
            -
                /**
         | 
| 709 | 
            -
                 * The start date specified for the training window.
         | 
| 718 | 
            +
                 * The KMS key ARN used for the audience model.
         | 
| 710 719 | 
             
                 */
         | 
| 711 | 
            -
                 | 
| 720 | 
            +
                kmsKeyArn?: KmsKeyArn;
         | 
| 712 721 | 
             
                /**
         | 
| 713 | 
            -
                 * The  | 
| 722 | 
            +
                 * The tags that are assigned to the audience model.
         | 
| 714 723 | 
             
                 */
         | 
| 715 | 
            -
                 | 
| 724 | 
            +
                tags?: TagMap;
         | 
| 716 725 | 
             
                /**
         | 
| 717 | 
            -
                 * The  | 
| 726 | 
            +
                 * The description of the audience model.
         | 
| 718 727 | 
             
                 */
         | 
| 719 | 
            -
                 | 
| 728 | 
            +
                description?: ResourceDescription;
         | 
| 720 729 | 
             
              }
         | 
| 721 730 | 
             
              export interface GetConfiguredAudienceModelPolicyRequest {
         | 
| 722 731 | 
             
                /**
         | 
| @@ -746,57 +755,57 @@ declare namespace CleanRoomsML { | |
| 746 755 | 
             
              }
         | 
| 747 756 | 
             
              export interface GetConfiguredAudienceModelResponse {
         | 
| 748 757 | 
             
                /**
         | 
| 749 | 
            -
                 * The  | 
| 750 | 
            -
                 */
         | 
| 751 | 
            -
                audienceModelArn: AudienceModelArn;
         | 
| 752 | 
            -
                /**
         | 
| 753 | 
            -
                 * The list of output sizes of audiences that can be created using this configured audience model. A request to StartAudienceGenerationJob that uses this configured audience model must have an audienceSize selected from this list. You can use the ABSOLUTE AudienceSize to configure out audience sizes using the count of identifiers in the output. You can use the Percentage AudienceSize to configure sizes in the range 1-100 percent.
         | 
| 758 | 
            +
                 * The time at which the configured audience model was created.
         | 
| 754 759 | 
             
                 */
         | 
| 755 | 
            -
                 | 
| 760 | 
            +
                createTime: SyntheticTimestamp_date_time;
         | 
| 756 761 | 
             
                /**
         | 
| 757 | 
            -
                 *  | 
| 762 | 
            +
                 * The most recent time at which the configured audience model was updated.
         | 
| 758 763 | 
             
                 */
         | 
| 759 | 
            -
                 | 
| 764 | 
            +
                updateTime: SyntheticTimestamp_date_time;
         | 
| 760 765 | 
             
                /**
         | 
| 761 766 | 
             
                 * The Amazon Resource Name (ARN) of the configured audience model.
         | 
| 762 767 | 
             
                 */
         | 
| 763 768 | 
             
                configuredAudienceModelArn: ConfiguredAudienceModelArn;
         | 
| 764 769 | 
             
                /**
         | 
| 765 | 
            -
                 * The  | 
| 770 | 
            +
                 * The name of the configured audience model.
         | 
| 766 771 | 
             
                 */
         | 
| 767 | 
            -
                 | 
| 772 | 
            +
                name: NameString;
         | 
| 768 773 | 
             
                /**
         | 
| 769 | 
            -
                 * The  | 
| 774 | 
            +
                 * The Amazon Resource Name (ARN) of the audience model used for this configured audience model.
         | 
| 770 775 | 
             
                 */
         | 
| 771 | 
            -
                 | 
| 776 | 
            +
                audienceModelArn: AudienceModelArn;
         | 
| 772 777 | 
             
                /**
         | 
| 773 | 
            -
                 * The  | 
| 778 | 
            +
                 * The output configuration of the configured audience model
         | 
| 774 779 | 
             
                 */
         | 
| 775 | 
            -
                 | 
| 780 | 
            +
                outputConfig: ConfiguredAudienceModelOutputConfig;
         | 
| 776 781 | 
             
                /**
         | 
| 777 | 
            -
                 * The  | 
| 782 | 
            +
                 * The description of the configured audience model.
         | 
| 778 783 | 
             
                 */
         | 
| 779 | 
            -
                 | 
| 784 | 
            +
                description?: ResourceDescription;
         | 
| 780 785 | 
             
                /**
         | 
| 781 | 
            -
                 * The  | 
| 786 | 
            +
                 * The status of the configured audience model.
         | 
| 782 787 | 
             
                 */
         | 
| 783 | 
            -
                 | 
| 788 | 
            +
                status: ConfiguredAudienceModelStatus;
         | 
| 784 789 | 
             
                /**
         | 
| 785 790 | 
             
                 * Whether audience metrics are shared.
         | 
| 786 791 | 
             
                 */
         | 
| 787 792 | 
             
                sharedAudienceMetrics: MetricsList;
         | 
| 788 793 | 
             
                /**
         | 
| 789 | 
            -
                 * The  | 
| 794 | 
            +
                 * The minimum number of users from the seed audience that must match with users in the training data of the audience model.
         | 
| 790 795 | 
             
                 */
         | 
| 791 | 
            -
                 | 
| 796 | 
            +
                minMatchingSeedSize?: MinMatchingSeedSize;
         | 
| 797 | 
            +
                /**
         | 
| 798 | 
            +
                 * The list of output sizes of audiences that can be created using this configured audience model. A request to StartAudienceGenerationJob that uses this configured audience model must have an audienceSize selected from this list. You can use the ABSOLUTE AudienceSize to configure out audience sizes using the count of identifiers in the output. You can use the Percentage AudienceSize to configure sizes in the range 1-100 percent.
         | 
| 799 | 
            +
                 */
         | 
| 800 | 
            +
                audienceSizeConfig?: AudienceSizeConfig;
         | 
| 792 801 | 
             
                /**
         | 
| 793 802 | 
             
                 * The tags that are associated to this configured audience model.
         | 
| 794 803 | 
             
                 */
         | 
| 795 804 | 
             
                tags?: TagMap;
         | 
| 796 805 | 
             
                /**
         | 
| 797 | 
            -
                 *  | 
| 806 | 
            +
                 * Provides the childResourceTagOnCreatePolicy that was used for this configured audience model.
         | 
| 798 807 | 
             
                 */
         | 
| 799 | 
            -
                 | 
| 808 | 
            +
                childResourceTagOnCreatePolicy?: TagOnCreatePolicy;
         | 
| 800 809 | 
             
              }
         | 
| 801 810 | 
             
              export interface GetTrainingDatasetRequest {
         | 
| 802 811 | 
             
                /**
         | 
| @@ -810,51 +819,51 @@ declare namespace CleanRoomsML { | |
| 810 819 | 
             
                 */
         | 
| 811 820 | 
             
                createTime: SyntheticTimestamp_date_time;
         | 
| 812 821 | 
             
                /**
         | 
| 813 | 
            -
                 * The  | 
| 822 | 
            +
                 * The most recent time at which the training dataset was updated.
         | 
| 814 823 | 
             
                 */
         | 
| 815 | 
            -
                 | 
| 824 | 
            +
                updateTime: SyntheticTimestamp_date_time;
         | 
| 825 | 
            +
                /**
         | 
| 826 | 
            +
                 * The Amazon Resource Name (ARN) of the training dataset.
         | 
| 827 | 
            +
                 */
         | 
| 828 | 
            +
                trainingDatasetArn: TrainingDatasetArn;
         | 
| 816 829 | 
             
                /**
         | 
| 817 830 | 
             
                 * The name of the training dataset.
         | 
| 818 831 | 
             
                 */
         | 
| 819 832 | 
             
                name: NameString;
         | 
| 820 833 | 
             
                /**
         | 
| 821 | 
            -
                 *  | 
| 834 | 
            +
                 * Metadata about the requested training data. 
         | 
| 822 835 | 
             
                 */
         | 
| 823 | 
            -
                 | 
| 836 | 
            +
                trainingData: DatasetList;
         | 
| 824 837 | 
             
                /**
         | 
| 825 838 | 
             
                 * The status of the training dataset.
         | 
| 826 839 | 
             
                 */
         | 
| 827 840 | 
             
                status: TrainingDatasetStatus;
         | 
| 828 841 | 
             
                /**
         | 
| 829 | 
            -
                 * The  | 
| 830 | 
            -
                 */
         | 
| 831 | 
            -
                tags?: TagMap;
         | 
| 832 | 
            -
                /**
         | 
| 833 | 
            -
                 * Metadata about the requested training data. 
         | 
| 842 | 
            +
                 * The IAM role used to read the training data.
         | 
| 834 843 | 
             
                 */
         | 
| 835 | 
            -
                 | 
| 844 | 
            +
                roleArn: IamRoleArn;
         | 
| 836 845 | 
             
                /**
         | 
| 837 | 
            -
                 * The  | 
| 846 | 
            +
                 * The tags that are assigned to this training dataset.
         | 
| 838 847 | 
             
                 */
         | 
| 839 | 
            -
                 | 
| 848 | 
            +
                tags?: TagMap;
         | 
| 840 849 | 
             
                /**
         | 
| 841 | 
            -
                 * The  | 
| 850 | 
            +
                 * The description of the training dataset.
         | 
| 842 851 | 
             
                 */
         | 
| 843 | 
            -
                 | 
| 852 | 
            +
                description?: ResourceDescription;
         | 
| 844 853 | 
             
              }
         | 
| 845 854 | 
             
              export interface GlueDataSource {
         | 
| 846 855 | 
             
                /**
         | 
| 847 | 
            -
                 * The Glue  | 
| 856 | 
            +
                 * The Glue table that contains the training data.
         | 
| 848 857 | 
             
                 */
         | 
| 849 | 
            -
                 | 
| 858 | 
            +
                tableName: GlueTableName;
         | 
| 850 859 | 
             
                /**
         | 
| 851 860 | 
             
                 * The Glue database that contains the training data.
         | 
| 852 861 | 
             
                 */
         | 
| 853 862 | 
             
                databaseName: GlueDatabaseName;
         | 
| 854 863 | 
             
                /**
         | 
| 855 | 
            -
                 * The Glue  | 
| 864 | 
            +
                 * The Glue catalog that contains the training data.
         | 
| 856 865 | 
             
                 */
         | 
| 857 | 
            -
                 | 
| 866 | 
            +
                catalogId?: AccountId;
         | 
| 858 867 | 
             
              }
         | 
| 859 868 | 
             
              export type GlueDatabaseName = string;
         | 
| 860 869 | 
             
              export type GlueTableName = string;
         | 
| @@ -863,95 +872,95 @@ declare namespace CleanRoomsML { | |
| 863 872 | 
             
              export type KmsKeyArn = string;
         | 
| 864 873 | 
             
              export interface ListAudienceExportJobsRequest {
         | 
| 865 874 | 
             
                /**
         | 
| 866 | 
            -
                 * The  | 
| 875 | 
            +
                 * The token value retrieved from a previous call to access the next page of results.
         | 
| 867 876 | 
             
                 */
         | 
| 868 | 
            -
                 | 
| 877 | 
            +
                nextToken?: NextToken;
         | 
| 869 878 | 
             
                /**
         | 
| 870 879 | 
             
                 * The maximum size of the results that is returned per call.
         | 
| 871 880 | 
             
                 */
         | 
| 872 881 | 
             
                maxResults?: MaxResults;
         | 
| 873 882 | 
             
                /**
         | 
| 874 | 
            -
                 * The  | 
| 883 | 
            +
                 * The Amazon Resource Name (ARN) of the audience generation job that you are interested in.
         | 
| 875 884 | 
             
                 */
         | 
| 876 | 
            -
                 | 
| 885 | 
            +
                audienceGenerationJobArn?: AudienceGenerationJobArn;
         | 
| 877 886 | 
             
              }
         | 
| 878 887 | 
             
              export interface ListAudienceExportJobsResponse {
         | 
| 888 | 
            +
                /**
         | 
| 889 | 
            +
                 * The token value retrieved from a previous call to access the next page of results.
         | 
| 890 | 
            +
                 */
         | 
| 891 | 
            +
                nextToken?: NextToken;
         | 
| 879 892 | 
             
                /**
         | 
| 880 893 | 
             
                 * The audience export jobs that match the request.
         | 
| 881 894 | 
             
                 */
         | 
| 882 895 | 
             
                audienceExportJobs: AudienceExportJobList;
         | 
| 896 | 
            +
              }
         | 
| 897 | 
            +
              export interface ListAudienceGenerationJobsRequest {
         | 
| 883 898 | 
             
                /**
         | 
| 884 899 | 
             
                 * The token value retrieved from a previous call to access the next page of results.
         | 
| 885 900 | 
             
                 */
         | 
| 886 901 | 
             
                nextToken?: NextToken;
         | 
| 887 | 
            -
              }
         | 
| 888 | 
            -
              export interface ListAudienceGenerationJobsRequest {
         | 
| 889 902 | 
             
                /**
         | 
| 890 | 
            -
                 * The  | 
| 903 | 
            +
                 * The maximum size of the results that is returned per call.
         | 
| 891 904 | 
             
                 */
         | 
| 892 | 
            -
                 | 
| 905 | 
            +
                maxResults?: MaxResults;
         | 
| 893 906 | 
             
                /**
         | 
| 894 907 | 
             
                 * The Amazon Resource Name (ARN) of the configured audience model that was used for the audience generation jobs that you are interested in.
         | 
| 895 908 | 
             
                 */
         | 
| 896 909 | 
             
                configuredAudienceModelArn?: ConfiguredAudienceModelArn;
         | 
| 897 910 | 
             
                /**
         | 
| 898 | 
            -
                 * The  | 
| 911 | 
            +
                 * The identifier of the collaboration that contains the audience generation jobs that you are interested in.
         | 
| 899 912 | 
             
                 */
         | 
| 900 | 
            -
                 | 
| 913 | 
            +
                collaborationId?: UUID;
         | 
| 914 | 
            +
              }
         | 
| 915 | 
            +
              export interface ListAudienceGenerationJobsResponse {
         | 
| 901 916 | 
             
                /**
         | 
| 902 917 | 
             
                 * The token value retrieved from a previous call to access the next page of results.
         | 
| 903 918 | 
             
                 */
         | 
| 904 919 | 
             
                nextToken?: NextToken;
         | 
| 905 | 
            -
              }
         | 
| 906 | 
            -
              export interface ListAudienceGenerationJobsResponse {
         | 
| 907 920 | 
             
                /**
         | 
| 908 921 | 
             
                 * The audience generation jobs that match the request.
         | 
| 909 922 | 
             
                 */
         | 
| 910 923 | 
             
                audienceGenerationJobs: AudienceGenerationJobList;
         | 
| 924 | 
            +
              }
         | 
| 925 | 
            +
              export interface ListAudienceModelsRequest {
         | 
| 911 926 | 
             
                /**
         | 
| 912 927 | 
             
                 * The token value retrieved from a previous call to access the next page of results.
         | 
| 913 928 | 
             
                 */
         | 
| 914 929 | 
             
                nextToken?: NextToken;
         | 
| 915 | 
            -
              }
         | 
| 916 | 
            -
              export interface ListAudienceModelsRequest {
         | 
| 917 930 | 
             
                /**
         | 
| 918 931 | 
             
                 * The maximum size of the results that is returned per call.
         | 
| 919 932 | 
             
                 */
         | 
| 920 933 | 
             
                maxResults?: MaxResults;
         | 
| 934 | 
            +
              }
         | 
| 935 | 
            +
              export interface ListAudienceModelsResponse {
         | 
| 921 936 | 
             
                /**
         | 
| 922 937 | 
             
                 * The token value retrieved from a previous call to access the next page of results.
         | 
| 923 938 | 
             
                 */
         | 
| 924 939 | 
             
                nextToken?: NextToken;
         | 
| 925 | 
            -
              }
         | 
| 926 | 
            -
              export interface ListAudienceModelsResponse {
         | 
| 927 940 | 
             
                /**
         | 
| 928 941 | 
             
                 * The audience models that match the request.
         | 
| 929 942 | 
             
                 */
         | 
| 930 943 | 
             
                audienceModels: AudienceModelList;
         | 
| 944 | 
            +
              }
         | 
| 945 | 
            +
              export interface ListConfiguredAudienceModelsRequest {
         | 
| 931 946 | 
             
                /**
         | 
| 932 947 | 
             
                 * The token value retrieved from a previous call to access the next page of results.
         | 
| 933 948 | 
             
                 */
         | 
| 934 949 | 
             
                nextToken?: NextToken;
         | 
| 935 | 
            -
              }
         | 
| 936 | 
            -
              export interface ListConfiguredAudienceModelsRequest {
         | 
| 937 950 | 
             
                /**
         | 
| 938 951 | 
             
                 * The maximum size of the results that is returned per call.
         | 
| 939 952 | 
             
                 */
         | 
| 940 953 | 
             
                maxResults?: MaxResults;
         | 
| 954 | 
            +
              }
         | 
| 955 | 
            +
              export interface ListConfiguredAudienceModelsResponse {
         | 
| 941 956 | 
             
                /**
         | 
| 942 957 | 
             
                 * The token value retrieved from a previous call to access the next page of results.
         | 
| 943 958 | 
             
                 */
         | 
| 944 959 | 
             
                nextToken?: NextToken;
         | 
| 945 | 
            -
              }
         | 
| 946 | 
            -
              export interface ListConfiguredAudienceModelsResponse {
         | 
| 947 960 | 
             
                /**
         | 
| 948 961 | 
             
                 * The configured audience models.
         | 
| 949 962 | 
             
                 */
         | 
| 950 963 | 
             
                configuredAudienceModels: ConfiguredAudienceModelList;
         | 
| 951 | 
            -
                /**
         | 
| 952 | 
            -
                 * The token value retrieved from a previous call to access the next page of results.
         | 
| 953 | 
            -
                 */
         | 
| 954 | 
            -
                nextToken?: NextToken;
         | 
| 955 964 | 
             
              }
         | 
| 956 965 | 
             
              export interface ListTagsForResourceRequest {
         | 
| 957 966 | 
             
                /**
         | 
| @@ -966,14 +975,14 @@ declare namespace CleanRoomsML { | |
| 966 975 | 
             
                tags: TagMap;
         | 
| 967 976 | 
             
              }
         | 
| 968 977 | 
             
              export interface ListTrainingDatasetsRequest {
         | 
| 969 | 
            -
                /**
         | 
| 970 | 
            -
                 * The maximum size of the results that is returned per call.
         | 
| 971 | 
            -
                 */
         | 
| 972 | 
            -
                maxResults?: MaxResults;
         | 
| 973 978 | 
             
                /**
         | 
| 974 979 | 
             
                 * The token value retrieved from a previous call to access the next page of results.
         | 
| 975 980 | 
             
                 */
         | 
| 976 981 | 
             
                nextToken?: NextToken;
         | 
| 982 | 
            +
                /**
         | 
| 983 | 
            +
                 * The maximum size of the results that is returned per call.
         | 
| 984 | 
            +
                 */
         | 
| 985 | 
            +
                maxResults?: MaxResults;
         | 
| 977 986 | 
             
              }
         | 
| 978 987 | 
             
              export interface ListTrainingDatasetsResponse {
         | 
| 979 988 | 
             
                /**
         | 
| @@ -990,7 +999,25 @@ declare namespace CleanRoomsML { | |
| 990 999 | 
             
              export type MinMatchingSeedSize = number;
         | 
| 991 1000 | 
             
              export type NameString = string;
         | 
| 992 1001 | 
             
              export type NextToken = string;
         | 
| 1002 | 
            +
              export type ParameterKey = string;
         | 
| 1003 | 
            +
              export type ParameterMap = {[key: string]: ParameterValue};
         | 
| 1004 | 
            +
              export type ParameterValue = string;
         | 
| 993 1005 | 
             
              export type PolicyExistenceCondition = "POLICY_MUST_EXIST"|"POLICY_MUST_NOT_EXIST"|string;
         | 
| 1006 | 
            +
              export interface ProtectedQuerySQLParameters {
         | 
| 1007 | 
            +
                /**
         | 
| 1008 | 
            +
                 * The query string to be submitted.
         | 
| 1009 | 
            +
                 */
         | 
| 1010 | 
            +
                queryString?: ProtectedQuerySQLParametersQueryStringString;
         | 
| 1011 | 
            +
                /**
         | 
| 1012 | 
            +
                 * The Amazon Resource Name (ARN) associated with the analysis template within a collaboration.
         | 
| 1013 | 
            +
                 */
         | 
| 1014 | 
            +
                analysisTemplateArn?: AnalysisTemplateArn;
         | 
| 1015 | 
            +
                /**
         | 
| 1016 | 
            +
                 * The protected query SQL parameters.
         | 
| 1017 | 
            +
                 */
         | 
| 1018 | 
            +
                parameters?: ParameterMap;
         | 
| 1019 | 
            +
              }
         | 
| 1020 | 
            +
              export type ProtectedQuerySQLParametersQueryStringString = string;
         | 
| 994 1021 | 
             
              export interface PutConfiguredAudienceModelPolicyRequest {
         | 
| 995 1022 | 
             
                /**
         | 
| 996 1023 | 
             
                 * The Amazon Resource Name (ARN) of the configured audience model that the resource policy will govern.
         | 
| @@ -1000,14 +1027,14 @@ declare namespace CleanRoomsML { | |
| 1000 1027 | 
             
                 * The IAM resource policy.
         | 
| 1001 1028 | 
             
                 */
         | 
| 1002 1029 | 
             
                configuredAudienceModelPolicy: ResourcePolicy;
         | 
| 1003 | 
            -
                /**
         | 
| 1004 | 
            -
                 * Use this to prevent unexpected concurrent modification of the policy.
         | 
| 1005 | 
            -
                 */
         | 
| 1006 | 
            -
                policyExistenceCondition?: PolicyExistenceCondition;
         | 
| 1007 1030 | 
             
                /**
         | 
| 1008 1031 | 
             
                 * A cryptographic hash of the contents of the policy used to prevent unexpected concurrent modification of the policy.
         | 
| 1009 1032 | 
             
                 */
         | 
| 1010 1033 | 
             
                previousPolicyHash?: Hash;
         | 
| 1034 | 
            +
                /**
         | 
| 1035 | 
            +
                 * Use this to prevent unexpected concurrent modification of the policy.
         | 
| 1036 | 
            +
                 */
         | 
| 1037 | 
            +
                policyExistenceCondition?: PolicyExistenceCondition;
         | 
| 1011 1038 | 
             
              }
         | 
| 1012 1039 | 
             
              export interface PutConfiguredAudienceModelPolicyResponse {
         | 
| 1013 1040 | 
             
                /**
         | 
| @@ -1038,6 +1065,10 @@ declare namespace CleanRoomsML { | |
| 1038 1065 | 
             
              export type S3Path = string;
         | 
| 1039 1066 | 
             
              export type SharedAudienceMetrics = "ALL"|"NONE"|string;
         | 
| 1040 1067 | 
             
              export interface StartAudienceExportJobRequest {
         | 
| 1068 | 
            +
                /**
         | 
| 1069 | 
            +
                 * The name of the audience export job.
         | 
| 1070 | 
            +
                 */
         | 
| 1071 | 
            +
                name: NameString;
         | 
| 1041 1072 | 
             
                /**
         | 
| 1042 1073 | 
             
                 * The Amazon Resource Name (ARN) of the audience generation job that you want to export.
         | 
| 1043 1074 | 
             
                 */
         | 
| @@ -1047,36 +1078,32 @@ declare namespace CleanRoomsML { | |
| 1047 1078 | 
             
                 * The description of the audience export job.
         | 
| 1048 1079 | 
             
                 */
         | 
| 1049 1080 | 
             
                description?: ResourceDescription;
         | 
| 1050 | 
            -
                /**
         | 
| 1051 | 
            -
                 * The name of the audience export job.
         | 
| 1052 | 
            -
                 */
         | 
| 1053 | 
            -
                name: NameString;
         | 
| 1054 1081 | 
             
              }
         | 
| 1055 1082 | 
             
              export interface StartAudienceGenerationJobRequest {
         | 
| 1056 1083 | 
             
                /**
         | 
| 1057 | 
            -
                 * The  | 
| 1084 | 
            +
                 * The name of the audience generation job.
         | 
| 1058 1085 | 
             
                 */
         | 
| 1059 | 
            -
                 | 
| 1086 | 
            +
                name: NameString;
         | 
| 1060 1087 | 
             
                /**
         | 
| 1061 1088 | 
             
                 * The Amazon Resource Name (ARN) of the configured audience model that is used for this audience generation job.
         | 
| 1062 1089 | 
             
                 */
         | 
| 1063 1090 | 
             
                configuredAudienceModelArn: ConfiguredAudienceModelArn;
         | 
| 1064 1091 | 
             
                /**
         | 
| 1065 | 
            -
                 * The  | 
| 1092 | 
            +
                 * The seed audience that is used to generate the audience.
         | 
| 1066 1093 | 
             
                 */
         | 
| 1067 | 
            -
                 | 
| 1094 | 
            +
                seedAudience: AudienceGenerationJobDataSource;
         | 
| 1068 1095 | 
             
                /**
         | 
| 1069 1096 | 
             
                 * Whether the seed audience is included in the audience generation output.
         | 
| 1070 1097 | 
             
                 */
         | 
| 1071 1098 | 
             
                includeSeedInOutput?: Boolean;
         | 
| 1072 1099 | 
             
                /**
         | 
| 1073 | 
            -
                 * The  | 
| 1100 | 
            +
                 * The identifier of the collaboration that contains the audience generation job.
         | 
| 1074 1101 | 
             
                 */
         | 
| 1075 | 
            -
                 | 
| 1102 | 
            +
                collaborationId?: UUID;
         | 
| 1076 1103 | 
             
                /**
         | 
| 1077 | 
            -
                 * The  | 
| 1104 | 
            +
                 * The description of the audience generation job.
         | 
| 1078 1105 | 
             
                 */
         | 
| 1079 | 
            -
                 | 
| 1106 | 
            +
                description?: ResourceDescription;
         | 
| 1080 1107 | 
             
                /**
         | 
| 1081 1108 | 
             
                 * The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. The following basic restrictions apply to tags:   Maximum number of tags per resource - 50.   For each resource, each tag key must be unique, and each tag key can have only one value.   Maximum key length - 128 Unicode characters in UTF-8.   Maximum value length - 256 Unicode characters in UTF-8.   If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.   Tag keys and values are case sensitive.   Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.  
         | 
| 1082 1109 | 
             
                 */
         | 
| @@ -1089,14 +1116,14 @@ declare namespace CleanRoomsML { | |
| 1089 1116 | 
             
                audienceGenerationJobArn: AudienceGenerationJobArn;
         | 
| 1090 1117 | 
             
              }
         | 
| 1091 1118 | 
             
              export interface StatusDetails {
         | 
| 1092 | 
            -
                /**
         | 
| 1093 | 
            -
                 * The error message that was returned. The message is intended for human consumption and can change at any time. Use the statusCode for programmatic error handling.
         | 
| 1094 | 
            -
                 */
         | 
| 1095 | 
            -
                message?: String;
         | 
| 1096 1119 | 
             
                /**
         | 
| 1097 1120 | 
             
                 * The status code that was returned. The status code is intended for programmatic error handling. Clean Rooms ML will not change the status code for existing error conditions.
         | 
| 1098 1121 | 
             
                 */
         | 
| 1099 1122 | 
             
                statusCode?: String;
         | 
| 1123 | 
            +
                /**
         | 
| 1124 | 
            +
                 * The error message that was returned. The message is intended for human consumption and can change at any time. Use the statusCode for programmatic error handling.
         | 
| 1125 | 
            +
                 */
         | 
| 1126 | 
            +
                message?: String;
         | 
| 1100 1127 | 
             
              }
         | 
| 1101 1128 | 
             
              export type String = string;
         | 
| 1102 1129 | 
             
              export type SyntheticTimestamp_date_time = Date;
         | 
| @@ -1127,9 +1154,13 @@ declare namespace CleanRoomsML { | |
| 1127 1154 | 
             
                 */
         | 
| 1128 1155 | 
             
                createTime: SyntheticTimestamp_date_time;
         | 
| 1129 1156 | 
             
                /**
         | 
| 1130 | 
            -
                 * The  | 
| 1157 | 
            +
                 * The most recent time at which the training dataset was updated.
         | 
| 1131 1158 | 
             
                 */
         | 
| 1132 | 
            -
                 | 
| 1159 | 
            +
                updateTime: SyntheticTimestamp_date_time;
         | 
| 1160 | 
            +
                /**
         | 
| 1161 | 
            +
                 * The Amazon Resource Name (ARN) of the training dataset.
         | 
| 1162 | 
            +
                 */
         | 
| 1163 | 
            +
                trainingDatasetArn: TrainingDatasetArn;
         | 
| 1133 1164 | 
             
                /**
         | 
| 1134 1165 | 
             
                 * The name of the training dataset.
         | 
| 1135 1166 | 
             
                 */
         | 
| @@ -1139,13 +1170,9 @@ declare namespace CleanRoomsML { | |
| 1139 1170 | 
             
                 */
         | 
| 1140 1171 | 
             
                status: TrainingDatasetStatus;
         | 
| 1141 1172 | 
             
                /**
         | 
| 1142 | 
            -
                 * The  | 
| 1143 | 
            -
                 */
         | 
| 1144 | 
            -
                trainingDatasetArn: TrainingDatasetArn;
         | 
| 1145 | 
            -
                /**
         | 
| 1146 | 
            -
                 * The most recent time at which the training dataset was updated.
         | 
| 1173 | 
            +
                 * The description of the training dataset.
         | 
| 1147 1174 | 
             
                 */
         | 
| 1148 | 
            -
                 | 
| 1175 | 
            +
                description?: ResourceDescription;
         | 
| 1149 1176 | 
             
              }
         | 
| 1150 1177 | 
             
              export type UUID = string;
         | 
| 1151 1178 | 
             
              export interface UntagResourceRequest {
         | 
| @@ -1162,33 +1189,33 @@ declare namespace CleanRoomsML { | |
| 1162 1189 | 
             
              }
         | 
| 1163 1190 | 
             
              export interface UpdateConfiguredAudienceModelRequest {
         | 
| 1164 1191 | 
             
                /**
         | 
| 1165 | 
            -
                 * The Amazon Resource Name (ARN) of the  | 
| 1192 | 
            +
                 * The Amazon Resource Name (ARN) of the configured audience model that you want to update.
         | 
| 1166 1193 | 
             
                 */
         | 
| 1167 | 
            -
                 | 
| 1194 | 
            +
                configuredAudienceModelArn: ConfiguredAudienceModelArn;
         | 
| 1168 1195 | 
             
                /**
         | 
| 1169 | 
            -
                 * The new  | 
| 1196 | 
            +
                 * The new output configuration.
         | 
| 1170 1197 | 
             
                 */
         | 
| 1171 | 
            -
                 | 
| 1198 | 
            +
                outputConfig?: ConfiguredAudienceModelOutputConfig;
         | 
| 1172 1199 | 
             
                /**
         | 
| 1173 | 
            -
                 * The Amazon Resource Name (ARN) of the  | 
| 1200 | 
            +
                 * The Amazon Resource Name (ARN) of the new audience model that you want to use.
         | 
| 1174 1201 | 
             
                 */
         | 
| 1175 | 
            -
                 | 
| 1202 | 
            +
                audienceModelArn?: AudienceModelArn;
         | 
| 1176 1203 | 
             
                /**
         | 
| 1177 | 
            -
                 * The new  | 
| 1204 | 
            +
                 * The new value for whether to share audience metrics.
         | 
| 1178 1205 | 
             
                 */
         | 
| 1179 | 
            -
                 | 
| 1206 | 
            +
                sharedAudienceMetrics?: MetricsList;
         | 
| 1180 1207 | 
             
                /**
         | 
| 1181 1208 | 
             
                 * The minimum number of users from the seed audience that must match with users in the training data of the audience model.
         | 
| 1182 1209 | 
             
                 */
         | 
| 1183 1210 | 
             
                minMatchingSeedSize?: MinMatchingSeedSize;
         | 
| 1184 1211 | 
             
                /**
         | 
| 1185 | 
            -
                 * The new  | 
| 1212 | 
            +
                 * The new audience size configuration.
         | 
| 1186 1213 | 
             
                 */
         | 
| 1187 | 
            -
                 | 
| 1214 | 
            +
                audienceSizeConfig?: AudienceSizeConfig;
         | 
| 1188 1215 | 
             
                /**
         | 
| 1189 | 
            -
                 * The new  | 
| 1216 | 
            +
                 * The new description of the configured audience model.
         | 
| 1190 1217 | 
             
                 */
         | 
| 1191 | 
            -
                 | 
| 1218 | 
            +
                description?: ResourceDescription;
         | 
| 1192 1219 | 
             
              }
         | 
| 1193 1220 | 
             
              export interface UpdateConfiguredAudienceModelResponse {
         | 
| 1194 1221 | 
             
                /**
         |