aws-sdk 2.1591.0 → 2.1593.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. package/README.md +1 -1
  2. package/apis/cleanrooms-2022-02-17.min.json +366 -265
  3. package/apis/cleanroomsml-2023-09-06.min.json +7 -24
  4. package/apis/cloudformation-2010-05-15.min.json +43 -42
  5. package/apis/datazone-2018-05-10.min.json +611 -324
  6. package/apis/datazone-2018-05-10.paginators.json +6 -0
  7. package/apis/docdb-2014-10-31.min.json +22 -0
  8. package/apis/emr-containers-2020-10-01.min.json +5 -0
  9. package/apis/groundstation-2019-05-23.min.json +12 -0
  10. package/apis/ivs-2020-07-14.min.json +76 -66
  11. package/apis/medialive-2017-10-14.min.json +287 -232
  12. package/apis/medical-imaging-2023-07-19.min.json +50 -8
  13. package/apis/transfer-2018-11-05.min.json +90 -79
  14. package/apis/verifiedpermissions-2021-12-01.min.json +127 -82
  15. package/clients/b2bi.d.ts +2 -2
  16. package/clients/cleanrooms.d.ts +101 -4
  17. package/clients/cleanroomsml.d.ts +13 -30
  18. package/clients/cloudformation.d.ts +5 -0
  19. package/clients/datazone.d.ts +303 -2
  20. package/clients/docdb.d.ts +21 -0
  21. package/clients/ec2.d.ts +1 -1
  22. package/clients/emrcontainers.d.ts +5 -0
  23. package/clients/groundstation.d.ts +20 -4
  24. package/clients/ivs.d.ts +18 -2
  25. package/clients/lambda.d.ts +1 -1
  26. package/clients/medialive.d.ts +59 -0
  27. package/clients/medicalimaging.d.ts +53 -5
  28. package/clients/transfer.d.ts +42 -14
  29. package/clients/verifiedpermissions.d.ts +51 -6
  30. package/dist/aws-sdk-core-react-native.js +1 -1
  31. package/dist/aws-sdk-react-native.js +17 -14
  32. package/dist/aws-sdk.js +46 -45
  33. package/dist/aws-sdk.min.js +54 -54
  34. package/lib/core.js +1 -1
  35. package/lib/services/cloudsearchdomain.js +3 -0
  36. package/package.json +1 -1
@@ -27,6 +27,14 @@ declare class CleanRooms extends Service {
27
27
  * Retrieves multiple schemas by their identifiers.
28
28
  */
29
29
  batchGetSchema(callback?: (err: AWSError, data: CleanRooms.Types.BatchGetSchemaOutput) => void): Request<CleanRooms.Types.BatchGetSchemaOutput, AWSError>;
30
+ /**
31
+ * Retrieves multiple analysis rule schemas.
32
+ */
33
+ batchGetSchemaAnalysisRule(params: CleanRooms.Types.BatchGetSchemaAnalysisRuleInput, callback?: (err: AWSError, data: CleanRooms.Types.BatchGetSchemaAnalysisRuleOutput) => void): Request<CleanRooms.Types.BatchGetSchemaAnalysisRuleOutput, AWSError>;
34
+ /**
35
+ * Retrieves multiple analysis rule schemas.
36
+ */
37
+ batchGetSchemaAnalysisRule(callback?: (err: AWSError, data: CleanRooms.Types.BatchGetSchemaAnalysisRuleOutput) => void): Request<CleanRooms.Types.BatchGetSchemaAnalysisRuleOutput, AWSError>;
30
38
  /**
31
39
  * Creates a new analysis template.
32
40
  */
@@ -618,11 +626,11 @@ declare namespace CleanRooms {
618
626
  export type AnalysisRuleColumnName = string;
619
627
  export interface AnalysisRuleCustom {
620
628
  /**
621
- * The analysis templates that are allowed by the custom analysis rule.
629
+ * The ARN of the analysis templates that are allowed by the custom analysis rule.
622
630
  */
623
631
  allowedAnalyses: AnalysisRuleCustomAllowedAnalysesList;
624
632
  /**
625
- * The Amazon Web Services accounts that are allowed to query by the custom analysis rule. Required when allowedAnalyses is ANY_QUERY.
633
+ * The IDs of the Amazon Web Services accounts that are allowed to query by the custom analysis rule. Required when allowedAnalyses is ANY_QUERY.
626
634
  */
627
635
  allowedAnalysisProviders?: AnalysisRuleCustomAllowedAnalysisProvidersList;
628
636
  /**
@@ -822,6 +830,45 @@ declare namespace CleanRooms {
822
830
  */
823
831
  errors: BatchGetCollaborationAnalysisTemplateErrorList;
824
832
  }
833
+ export interface BatchGetSchemaAnalysisRuleError {
834
+ /**
835
+ * An error name for the error.
836
+ */
837
+ name: TableAlias;
838
+ /**
839
+ * The analysis rule type.
840
+ */
841
+ type: AnalysisRuleType;
842
+ /**
843
+ * An error code for the error.
844
+ */
845
+ code: String;
846
+ /**
847
+ * A description of why the call failed.
848
+ */
849
+ message: String;
850
+ }
851
+ export type BatchGetSchemaAnalysisRuleErrorList = BatchGetSchemaAnalysisRuleError[];
852
+ export interface BatchGetSchemaAnalysisRuleInput {
853
+ /**
854
+ * The unique identifier of the collaboration that contains the schema analysis rule.
855
+ */
856
+ collaborationIdentifier: CollaborationIdentifier;
857
+ /**
858
+ * The information that's necessary to retrieve a schema analysis rule.
859
+ */
860
+ schemaAnalysisRuleRequests: SchemaAnalysisRuleRequestList;
861
+ }
862
+ export interface BatchGetSchemaAnalysisRuleOutput {
863
+ /**
864
+ * The retrieved list of analysis rules.
865
+ */
866
+ analysisRules: SchemaAnalysisRuleList;
867
+ /**
868
+ * Error reasons for schemas that could not be retrieved. One error is returned for every schema that could not be retrieved.
869
+ */
870
+ errors: BatchGetSchemaAnalysisRuleErrorList;
871
+ }
825
872
  export interface BatchGetSchemaError {
826
873
  /**
827
874
  * An error name for the error.
@@ -843,7 +890,7 @@ declare namespace CleanRooms {
843
890
  */
844
891
  collaborationIdentifier: CollaborationIdentifier;
845
892
  /**
846
- * The names for the schema objects to retrieve.&gt;
893
+ * The names for the schema objects to retrieve.
847
894
  */
848
895
  names: TableAliasList;
849
896
  }
@@ -3259,7 +3306,7 @@ declare namespace CleanRooms {
3259
3306
  export type ResourceDescription = string;
3260
3307
  export type ResultFormat = "CSV"|"PARQUET"|string;
3261
3308
  export type RoleArn = string;
3262
- export type ScalarFunctions = "TRUNC"|"ABS"|"CEILING"|"FLOOR"|"LN"|"LOG"|"ROUND"|"SQRT"|"CAST"|"LOWER"|"RTRIM"|"UPPER"|"COALESCE"|string;
3309
+ export type ScalarFunctions = "ABS"|"CAST"|"CEILING"|"COALESCE"|"CONVERT"|"CURRENT_DATE"|"DATEADD"|"EXTRACT"|"FLOOR"|"GETDATE"|"LN"|"LOG"|"LOWER"|"ROUND"|"RTRIM"|"SQRT"|"SUBSTRING"|"TO_CHAR"|"TO_DATE"|"TO_NUMBER"|"TO_TIMESTAMP"|"TRIM"|"TRUNC"|"UPPER"|string;
3263
3310
  export type ScalarFunctionsList = ScalarFunctions[];
3264
3311
  export interface Schema {
3265
3312
  /**
@@ -3310,8 +3357,58 @@ declare namespace CleanRooms {
3310
3357
  * The type of schema. The only valid value is currently `TABLE`.
3311
3358
  */
3312
3359
  type: SchemaType;
3360
+ /**
3361
+ * Details about the status of the schema. Currently, only one entry is present.
3362
+ */
3363
+ schemaStatusDetails: SchemaStatusDetailList;
3364
+ }
3365
+ export type SchemaAnalysisRuleList = AnalysisRule[];
3366
+ export interface SchemaAnalysisRuleRequest {
3367
+ /**
3368
+ * The name of the analysis rule schema that you are requesting.
3369
+ */
3370
+ name: TableAlias;
3371
+ /**
3372
+ * The type of analysis rule schema that you are requesting.
3373
+ */
3374
+ type: AnalysisRuleType;
3313
3375
  }
3376
+ export type SchemaAnalysisRuleRequestList = SchemaAnalysisRuleRequest[];
3377
+ export type SchemaConfiguration = "DIFFERENTIAL_PRIVACY"|string;
3378
+ export type SchemaConfigurationList = SchemaConfiguration[];
3314
3379
  export type SchemaList = Schema[];
3380
+ export type SchemaStatus = "READY"|"NOT_READY"|string;
3381
+ export interface SchemaStatusDetail {
3382
+ /**
3383
+ * The status of the schema.
3384
+ */
3385
+ status: SchemaStatus;
3386
+ /**
3387
+ * The reasons why the schema status is set to its current state.
3388
+ */
3389
+ reasons?: SchemaStatusReasonList;
3390
+ /**
3391
+ * The analysis rule type for which the schema status has been evaluated.
3392
+ */
3393
+ analysisRuleType?: AnalysisRuleType;
3394
+ /**
3395
+ * The configuration details of the schema analysis rule for the given type.
3396
+ */
3397
+ configurations?: SchemaConfigurationList;
3398
+ }
3399
+ export type SchemaStatusDetailList = SchemaStatusDetail[];
3400
+ export interface SchemaStatusReason {
3401
+ /**
3402
+ * The schema status reason code.
3403
+ */
3404
+ code: SchemaStatusReasonCode;
3405
+ /**
3406
+ * An explanation of the schema status reason code.
3407
+ */
3408
+ message: String;
3409
+ }
3410
+ export type SchemaStatusReasonCode = "ANALYSIS_RULE_MISSING"|"ANALYSIS_TEMPLATES_NOT_CONFIGURED"|"ANALYSIS_PROVIDERS_NOT_CONFIGURED"|"DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED"|string;
3411
+ export type SchemaStatusReasonList = SchemaStatusReason[];
3315
3412
  export interface SchemaSummary {
3316
3413
  /**
3317
3414
  * The name for the schema object.
@@ -28,11 +28,11 @@ declare class CleanRoomsML extends Service {
28
28
  */
29
29
  createConfiguredAudienceModel(callback?: (err: AWSError, data: CleanRoomsML.Types.CreateConfiguredAudienceModelResponse) => void): Request<CleanRoomsML.Types.CreateConfiguredAudienceModelResponse, AWSError>;
30
30
  /**
31
- * Defines the information necessary to create a training dataset, or seed audience. In Clean Rooms ML, the TrainingDataset is metadata that points to a Glue table, which is read only during AudienceModel creation.
31
+ * Defines the information necessary to create a training dataset. In Clean Rooms ML, the TrainingDataset is metadata that points to a Glue table, which is read only during AudienceModel creation.
32
32
  */
33
33
  createTrainingDataset(params: CleanRoomsML.Types.CreateTrainingDatasetRequest, callback?: (err: AWSError, data: CleanRoomsML.Types.CreateTrainingDatasetResponse) => void): Request<CleanRoomsML.Types.CreateTrainingDatasetResponse, AWSError>;
34
34
  /**
35
- * Defines the information necessary to create a training dataset, or seed audience. In Clean Rooms ML, the TrainingDataset is metadata that points to a Glue table, which is read only during AudienceModel creation.
35
+ * Defines the information necessary to create a training dataset. In Clean Rooms ML, the TrainingDataset is metadata that points to a Glue table, which is read only during AudienceModel creation.
36
36
  */
37
37
  createTrainingDataset(callback?: (err: AWSError, data: CleanRoomsML.Types.CreateTrainingDatasetResponse) => void): Request<CleanRoomsML.Types.CreateTrainingDatasetResponse, AWSError>;
38
38
  /**
@@ -257,7 +257,7 @@ declare namespace CleanRoomsML {
257
257
  export type AudienceGenerationJobArn = string;
258
258
  export interface AudienceGenerationJobDataSource {
259
259
  /**
260
- * The Amazon S3 bucket where the training data for the configured audience is stored.
260
+ * 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
261
  */
262
262
  dataSource: S3ConfigMap;
263
263
  /**
@@ -307,22 +307,6 @@ declare namespace CleanRoomsML {
307
307
  }
308
308
  export type AudienceModelArn = string;
309
309
  export type AudienceModelList = AudienceModelSummary[];
310
- export interface AudienceModelMetric {
311
- /**
312
- * The number of users that were used to generate these model metrics.
313
- */
314
- forTopKItemPredictions: Integer;
315
- /**
316
- * The audience model metric.
317
- */
318
- type: AudienceModelMetricType;
319
- /**
320
- * The value of the audience model metric
321
- */
322
- value: Double;
323
- }
324
- export type AudienceModelMetricType = "NORMALIZED_DISCOUNTED_CUMULATIVE_GAIN"|"MEAN_RECIPROCAL_RANK"|"PRECISION"|"RECALL"|string;
325
- export type AudienceModelMetrics = AudienceModelMetric[];
326
310
  export type AudienceModelStatus = "CREATE_PENDING"|"CREATE_IN_PROGRESS"|"CREATE_FAILED"|"ACTIVE"|"DELETE_PENDING"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|string;
327
311
  export interface AudienceModelSummary {
328
312
  /**
@@ -355,6 +339,10 @@ declare namespace CleanRoomsML {
355
339
  updateTime: SyntheticTimestamp_date_time;
356
340
  }
357
341
  export interface AudienceQualityMetrics {
342
+ /**
343
+ * 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.
344
+ */
345
+ recallMetric?: Double;
358
346
  /**
359
347
  * The relevance scores of the generated audience.
360
348
  */
@@ -455,7 +443,7 @@ declare namespace CleanRoomsML {
455
443
  */
456
444
  name: NameString;
457
445
  /**
458
- * 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 Forecast 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.
446
+ * 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.
459
447
  */
460
448
  tags?: TagMap;
461
449
  /**
@@ -495,7 +483,7 @@ declare namespace CleanRoomsML {
495
483
  */
496
484
  description?: ResourceDescription;
497
485
  /**
498
- * The minimum number of users from the seed audience that must match with users in the training data of the audience model.
486
+ * 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.
499
487
  */
500
488
  minMatchingSeedSize?: MinMatchingSeedSize;
501
489
  /**
@@ -511,7 +499,7 @@ declare namespace CleanRoomsML {
511
499
  */
512
500
  sharedAudienceMetrics: MetricsList;
513
501
  /**
514
- * 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 Forecast 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.
502
+ * 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.
515
503
  */
516
504
  tags?: TagMap;
517
505
  }
@@ -642,7 +630,7 @@ declare namespace CleanRoomsML {
642
630
  */
643
631
  includeSeedInOutput?: Boolean;
644
632
  /**
645
- * The relevance scores for different audience sizes.
633
+ * The relevance scores for different audience sizes and the recall score of the generated audience.
646
634
  */
647
635
  metrics?: AudienceQualityMetrics;
648
636
  /**
@@ -697,10 +685,6 @@ declare namespace CleanRoomsML {
697
685
  * The KMS key ARN used for the audience model.
698
686
  */
699
687
  kmsKeyArn?: KmsKeyArn;
700
- /**
701
- * Accuracy metrics for the model.
702
- */
703
- metrics?: AudienceModelMetrics;
704
688
  /**
705
689
  * The name of the audience model.
706
690
  */
@@ -876,7 +860,6 @@ declare namespace CleanRoomsML {
876
860
  export type GlueTableName = string;
877
861
  export type Hash = string;
878
862
  export type IamRoleArn = string;
879
- export type Integer = number;
880
863
  export type KmsKeyArn = string;
881
864
  export interface ListAudienceExportJobsRequest {
882
865
  /**
@@ -1095,7 +1078,7 @@ declare namespace CleanRoomsML {
1095
1078
  */
1096
1079
  seedAudience: AudienceGenerationJobDataSource;
1097
1080
  /**
1098
- * 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 Forecast 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.
1081
+ * 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.
1099
1082
  */
1100
1083
  tags?: TagMap;
1101
1084
  }
@@ -1127,7 +1110,7 @@ declare namespace CleanRoomsML {
1127
1110
  */
1128
1111
  resourceArn: TaggableArn;
1129
1112
  /**
1130
- * 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 Forecast 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.
1113
+ * 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 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.
1131
1114
  */
1132
1115
  tags: TagMap;
1133
1116
  }
@@ -3147,6 +3147,7 @@ declare namespace CloudFormation {
3147
3147
  */
3148
3148
  Value: Value;
3149
3149
  }
3150
+ export type PolicyAction = "Delete"|"Retain"|"Snapshot"|"ReplaceAndDelete"|"ReplaceAndRetain"|"ReplaceAndSnapshot"|string;
3150
3151
  export type PrivateTypeArn = string;
3151
3152
  export type Properties = string;
3152
3153
  export type PropertyDescription = string;
@@ -3317,6 +3318,10 @@ declare namespace CloudFormation {
3317
3318
  export type RequiresRecreation = "Never"|"Conditionally"|"Always"|string;
3318
3319
  export type ResourceAttribute = "Properties"|"Metadata"|"CreationPolicy"|"UpdatePolicy"|"DeletionPolicy"|"UpdateReplacePolicy"|"Tags"|string;
3319
3320
  export interface ResourceChange {
3321
+ /**
3322
+ * The action that will be taken on the physical resource when the change set is executed. Delete The resource will be deleted. Retain The resource will be retained. Snapshot The resource will have a snapshot taken. ReplaceAndDelete The resource will be replaced and then deleted. ReplaceAndRetain The resource will be replaced and then retained. ReplaceAndSnapshot The resource will be replaced and then have a snapshot taken.
3323
+ */
3324
+ PolicyAction?: PolicyAction;
3320
3325
  /**
3321
3326
  * The action that CloudFormation takes on the resource, such as Add (adds a new resource), Modify (changes a resource), Remove (deletes a resource), Import (imports a resource), or Dynamic (exact action for the resource can't be determined).
3322
3327
  */