aws-sdk 2.1380.0 → 2.1382.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/CHANGELOG.md +11 -1
- package/README.md +3 -4
- package/apis/backup-2018-11-15.min.json +8 -2
- package/apis/mediapackagev2-2022-12-25.examples.json +5 -0
- package/apis/mediapackagev2-2022-12-25.min.json +1346 -0
- package/apis/mediapackagev2-2022-12-25.paginators.json +22 -0
- package/apis/mediapackagev2-2022-12-25.waiters2.json +5 -0
- package/apis/metadata.json +3 -0
- package/apis/quicksight-2018-04-01.min.json +1005 -383
- package/apis/quicksight-2018-04-01.paginators.json +12 -0
- package/apis/sesv2-2019-09-27.examples.json +19 -0
- package/apis/sesv2-2019-09-27.min.json +38 -13
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/backup.d.ts +22 -6
- package/clients/connectcases.d.ts +1 -1
- package/clients/mediapackagev2.d.ts +1363 -0
- package/clients/mediapackagev2.js +19 -0
- package/clients/pinpoint.d.ts +7 -7
- package/clients/quicksight.d.ts +749 -4
- package/clients/sesv2.d.ts +24 -4
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +52 -8
- package/dist/aws-sdk.js +6 -3
- package/dist/aws-sdk.min.js +9 -9
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
| @@ -6,6 +6,18 @@ | |
| 6 6 | 
             
                  "limit_key": "MaxResults",
         | 
| 7 7 | 
             
                  "result_key": "AnalysisSummaryList"
         | 
| 8 8 | 
             
                },
         | 
| 9 | 
            +
                "ListAssetBundleExportJobs": {
         | 
| 10 | 
            +
                  "input_token": "NextToken",
         | 
| 11 | 
            +
                  "output_token": "NextToken",
         | 
| 12 | 
            +
                  "limit_key": "MaxResults",
         | 
| 13 | 
            +
                  "result_key": "AssetBundleExportJobSummaryList"
         | 
| 14 | 
            +
                },
         | 
| 15 | 
            +
                "ListAssetBundleImportJobs": {
         | 
| 16 | 
            +
                  "input_token": "NextToken",
         | 
| 17 | 
            +
                  "output_token": "NextToken",
         | 
| 18 | 
            +
                  "limit_key": "MaxResults",
         | 
| 19 | 
            +
                  "result_key": "AssetBundleImportJobSummaryList"
         | 
| 20 | 
            +
                },
         | 
| 9 21 | 
             
                "ListDashboardVersions": {
         | 
| 10 22 | 
             
                  "input_token": "NextToken",
         | 
| 11 23 | 
             
                  "output_token": "NextToken",
         | 
| @@ -1,5 +1,24 @@ | |
| 1 1 | 
             
            {
         | 
| 2 2 | 
             
              "version": "1.0",
         | 
| 3 3 | 
             
              "examples": {
         | 
| 4 | 
            +
                "PutDedicatedIpPoolScalingAttributes": [
         | 
| 5 | 
            +
                  {
         | 
| 6 | 
            +
                    "input": {
         | 
| 7 | 
            +
                      "PoolName": "sample-ses-pool",
         | 
| 8 | 
            +
                      "ScalingMode": "MANAGED"
         | 
| 9 | 
            +
                    },
         | 
| 10 | 
            +
                    "output": {
         | 
| 11 | 
            +
                    },
         | 
| 12 | 
            +
                    "comments": {
         | 
| 13 | 
            +
                      "input": {
         | 
| 14 | 
            +
                      },
         | 
| 15 | 
            +
                      "output": {
         | 
| 16 | 
            +
                      }
         | 
| 17 | 
            +
                    },
         | 
| 18 | 
            +
                    "description": "This example converts a dedicated IP pool from STANDARD to MANAGED.",
         | 
| 19 | 
            +
                    "id": "put-dedicated-ip-pool-scaling-attributes-example-1683639172",
         | 
| 20 | 
            +
                    "title": "Used to convert a dedicated IP pool to a different scaling mode."
         | 
| 21 | 
            +
                  }
         | 
| 22 | 
            +
                ]
         | 
| 4 23 | 
             
              }
         | 
| 5 24 | 
             
            }
         | 
| @@ -2287,6 +2287,31 @@ | |
| 2287 2287 | 
             
                    "members": {}
         | 
| 2288 2288 | 
             
                  }
         | 
| 2289 2289 | 
             
                },
         | 
| 2290 | 
            +
                "PutDedicatedIpPoolScalingAttributes": {
         | 
| 2291 | 
            +
                  "http": {
         | 
| 2292 | 
            +
                    "method": "PUT",
         | 
| 2293 | 
            +
                    "requestUri": "/v2/email/dedicated-ip-pools/{PoolName}/scaling"
         | 
| 2294 | 
            +
                  },
         | 
| 2295 | 
            +
                  "input": {
         | 
| 2296 | 
            +
                    "type": "structure",
         | 
| 2297 | 
            +
                    "required": [
         | 
| 2298 | 
            +
                      "PoolName",
         | 
| 2299 | 
            +
                      "ScalingMode"
         | 
| 2300 | 
            +
                    ],
         | 
| 2301 | 
            +
                    "members": {
         | 
| 2302 | 
            +
                      "PoolName": {
         | 
| 2303 | 
            +
                        "location": "uri",
         | 
| 2304 | 
            +
                        "locationName": "PoolName"
         | 
| 2305 | 
            +
                      },
         | 
| 2306 | 
            +
                      "ScalingMode": {}
         | 
| 2307 | 
            +
                    }
         | 
| 2308 | 
            +
                  },
         | 
| 2309 | 
            +
                  "output": {
         | 
| 2310 | 
            +
                    "type": "structure",
         | 
| 2311 | 
            +
                    "members": {}
         | 
| 2312 | 
            +
                  },
         | 
| 2313 | 
            +
                  "idempotent": true
         | 
| 2314 | 
            +
                },
         | 
| 2290 2315 | 
             
                "PutDedicatedIpWarmupAttributes": {
         | 
| 2291 2316 | 
             
                  "http": {
         | 
| 2292 2317 | 
             
                    "method": "PUT",
         | 
| @@ -2501,12 +2526,12 @@ | |
| 2501 2526 | 
             
                      "FromEmailAddress": {},
         | 
| 2502 2527 | 
             
                      "FromEmailAddressIdentityArn": {},
         | 
| 2503 2528 | 
             
                      "ReplyToAddresses": {
         | 
| 2504 | 
            -
                        "shape": " | 
| 2529 | 
            +
                        "shape": "Sae"
         | 
| 2505 2530 | 
             
                      },
         | 
| 2506 2531 | 
             
                      "FeedbackForwardingEmailAddress": {},
         | 
| 2507 2532 | 
             
                      "FeedbackForwardingEmailAddressIdentityArn": {},
         | 
| 2508 2533 | 
             
                      "DefaultEmailTags": {
         | 
| 2509 | 
            -
                        "shape": " | 
| 2534 | 
            +
                        "shape": "Saf"
         | 
| 2510 2535 | 
             
                      },
         | 
| 2511 2536 | 
             
                      "DefaultContent": {
         | 
| 2512 2537 | 
             
                        "type": "structure",
         | 
| @@ -2525,10 +2550,10 @@ | |
| 2525 2550 | 
             
                          ],
         | 
| 2526 2551 | 
             
                          "members": {
         | 
| 2527 2552 | 
             
                            "Destination": {
         | 
| 2528 | 
            -
                              "shape": " | 
| 2553 | 
            +
                              "shape": "Sam"
         | 
| 2529 2554 | 
             
                            },
         | 
| 2530 2555 | 
             
                            "ReplacementTags": {
         | 
| 2531 | 
            -
                              "shape": " | 
| 2556 | 
            +
                              "shape": "Saf"
         | 
| 2532 2557 | 
             
                            },
         | 
| 2533 2558 | 
             
                            "ReplacementEmailContent": {
         | 
| 2534 2559 | 
             
                              "type": "structure",
         | 
| @@ -2603,10 +2628,10 @@ | |
| 2603 2628 | 
             
                      "FromEmailAddress": {},
         | 
| 2604 2629 | 
             
                      "FromEmailAddressIdentityArn": {},
         | 
| 2605 2630 | 
             
                      "Destination": {
         | 
| 2606 | 
            -
                        "shape": " | 
| 2631 | 
            +
                        "shape": "Sam"
         | 
| 2607 2632 | 
             
                      },
         | 
| 2608 2633 | 
             
                      "ReplyToAddresses": {
         | 
| 2609 | 
            -
                        "shape": " | 
| 2634 | 
            +
                        "shape": "Sae"
         | 
| 2610 2635 | 
             
                      },
         | 
| 2611 2636 | 
             
                      "FeedbackForwardingEmailAddress": {},
         | 
| 2612 2637 | 
             
                      "FeedbackForwardingEmailAddressIdentityArn": {},
         | 
| @@ -2614,7 +2639,7 @@ | |
| 2614 2639 | 
             
                        "shape": "S2g"
         | 
| 2615 2640 | 
             
                      },
         | 
| 2616 2641 | 
             
                      "EmailTags": {
         | 
| 2617 | 
            -
                        "shape": " | 
| 2642 | 
            +
                        "shape": "Saf"
         | 
| 2618 2643 | 
             
                      },
         | 
| 2619 2644 | 
             
                      "ConfigurationSetName": {},
         | 
| 2620 2645 | 
             
                      "ListManagementOptions": {
         | 
| @@ -3412,11 +3437,11 @@ | |
| 3412 3437 | 
             
                  "key": {},
         | 
| 3413 3438 | 
             
                  "value": {}
         | 
| 3414 3439 | 
             
                },
         | 
| 3415 | 
            -
                " | 
| 3440 | 
            +
                "Sae": {
         | 
| 3416 3441 | 
             
                  "type": "list",
         | 
| 3417 3442 | 
             
                  "member": {}
         | 
| 3418 3443 | 
             
                },
         | 
| 3419 | 
            -
                " | 
| 3444 | 
            +
                "Saf": {
         | 
| 3420 3445 | 
             
                  "type": "list",
         | 
| 3421 3446 | 
             
                  "member": {
         | 
| 3422 3447 | 
             
                    "type": "structure",
         | 
| @@ -3430,17 +3455,17 @@ | |
| 3430 3455 | 
             
                    }
         | 
| 3431 3456 | 
             
                  }
         | 
| 3432 3457 | 
             
                },
         | 
| 3433 | 
            -
                " | 
| 3458 | 
            +
                "Sam": {
         | 
| 3434 3459 | 
             
                  "type": "structure",
         | 
| 3435 3460 | 
             
                  "members": {
         | 
| 3436 3461 | 
             
                    "ToAddresses": {
         | 
| 3437 | 
            -
                      "shape": " | 
| 3462 | 
            +
                      "shape": "Sae"
         | 
| 3438 3463 | 
             
                    },
         | 
| 3439 3464 | 
             
                    "CcAddresses": {
         | 
| 3440 | 
            -
                      "shape": " | 
| 3465 | 
            +
                      "shape": "Sae"
         | 
| 3441 3466 | 
             
                    },
         | 
| 3442 3467 | 
             
                    "BccAddresses": {
         | 
| 3443 | 
            -
                      "shape": " | 
| 3468 | 
            +
                      "shape": "Sae"
         | 
| 3444 3469 | 
             
                    }
         | 
| 3445 3470 | 
             
                  }
         | 
| 3446 3471 | 
             
                }
         | 
    
        package/clients/all.d.ts
    CHANGED
    
    | @@ -343,3 +343,4 @@ export import InternetMonitor = require('./internetmonitor'); | |
| 343 343 | 
             
            export import IVSRealTime = require('./ivsrealtime');
         | 
| 344 344 | 
             
            export import VPCLattice = require('./vpclattice');
         | 
| 345 345 | 
             
            export import OSIS = require('./osis');
         | 
| 346 | 
            +
            export import MediaPackageV2 = require('./mediapackagev2');
         | 
    
        package/clients/all.js
    CHANGED
    
    | @@ -344,5 +344,6 @@ module.exports = { | |
| 344 344 | 
             
              InternetMonitor: require('./internetmonitor'),
         | 
| 345 345 | 
             
              IVSRealTime: require('./ivsrealtime'),
         | 
| 346 346 | 
             
              VPCLattice: require('./vpclattice'),
         | 
| 347 | 
            -
              OSIS: require('./osis')
         | 
| 347 | 
            +
              OSIS: require('./osis'),
         | 
| 348 | 
            +
              MediaPackageV2: require('./mediapackagev2')
         | 
| 348 349 | 
             
            };
         | 
    
        package/clients/backup.d.ts
    CHANGED
    
    | @@ -792,7 +792,7 @@ declare namespace Backup { | |
| 792 792 | 
             
                 */
         | 
| 793 793 | 
             
                ScheduleExpression?: CronExpression;
         | 
| 794 794 | 
             
                /**
         | 
| 795 | 
            -
                 * A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional. If this value is included, it must be at least 60 minutes to avoid errors.
         | 
| 795 | 
            +
                 * A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional. If this value is included, it must be at least 60 minutes to avoid errors. During the start window, the backup job status remains in CREATED status until it has successfully begun or until the start window time has run out. If within the start window time Backup receives an error that allows the job to be retried, Backup will automatically retry to begin the job at least every 10 minutes until the backup successfully begins (the job status changes to RUNNING) or until the job status changes to EXPIRED (which is expected to occur when the start window time is over).
         | 
| 796 796 | 
             
                 */
         | 
| 797 797 | 
             
                StartWindowMinutes?: WindowMinutes;
         | 
| 798 798 | 
             
                /**
         | 
| @@ -834,7 +834,7 @@ declare namespace Backup { | |
| 834 834 | 
             
                 */
         | 
| 835 835 | 
             
                ScheduleExpression?: CronExpression;
         | 
| 836 836 | 
             
                /**
         | 
| 837 | 
            -
                 * A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional. If this value is included, it must be at least 60 minutes to avoid errors.
         | 
| 837 | 
            +
                 * A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional. If this value is included, it must be at least 60 minutes to avoid errors. During the start window, the backup job status remains in CREATED status until it has successfully begun or until the start window time has run out. If within the start window time Backup receives an error that allows the job to be retried, Backup will automatically retry to begin the job at least every 10 minutes until the backup successfully begins (the job status changes to RUNNING) or until the job status changes to EXPIRED (which is expected to occur when the start window time is over).
         | 
| 838 838 | 
             
                 */
         | 
| 839 839 | 
             
                StartWindowMinutes?: WindowMinutes;
         | 
| 840 840 | 
             
                /**
         | 
| @@ -1754,11 +1754,11 @@ declare namespace Backup { | |
| 1754 1754 | 
             
                 */
         | 
| 1755 1755 | 
             
                IamRoleArn?: IAMRoleArn;
         | 
| 1756 1756 | 
             
                /**
         | 
| 1757 | 
            -
                 * A status code specifying the state of the recovery point.  PARTIAL status indicates Backup could not create the recovery point before the backup window closed. To increase your backup plan window using the API, see UpdateBackupPlan. You can also increase your backup plan window using the Console by choosing and editing your backup plan.  EXPIRED status indicates that the recovery point has exceeded its retention period, but Backup lacks permission or is otherwise unable to delete it. To manually delete these recovery points, see  Step 3: Delete the recovery points in the Clean up resources section of Getting started.  STOPPED status occurs on a continuous backup where a user has taken some action that causes the continuous backup to be disabled. This can be caused by the removal of permissions, turning off versioning, turning off events being sent to EventBridge, or disabling the EventBridge rules that are put in place by Backup. To resolve STOPPED status, ensure that all requested permissions are in place and that versioning is enabled on the S3 bucket. Once these conditions are met, the next instance of a backup rule running will result in a new continuous recovery point being created. The recovery points with STOPPED status do not need to be deleted.
         | 
| 1757 | 
            +
                 * A status code specifying the state of the recovery point.  PARTIAL status indicates Backup could not create the recovery point before the backup window closed. To increase your backup plan window using the API, see UpdateBackupPlan. You can also increase your backup plan window using the Console by choosing and editing your backup plan.  EXPIRED status indicates that the recovery point has exceeded its retention period, but Backup lacks permission or is otherwise unable to delete it. To manually delete these recovery points, see  Step 3: Delete the recovery points in the Clean up resources section of Getting started.  STOPPED status occurs on a continuous backup where a user has taken some action that causes the continuous backup to be disabled. This can be caused by the removal of permissions, turning off versioning, turning off events being sent to EventBridge, or disabling the EventBridge rules that are put in place by Backup. To resolve STOPPED status, ensure that all requested permissions are in place and that versioning is enabled on the S3 bucket. Once these conditions are met, the next instance of a backup rule running will result in a new continuous recovery point being created. The recovery points with STOPPED status do not need to be deleted. For SAP HANA on Amazon EC2 STOPPED status occurs due to user action, application misconfiguration, or backup failure. To ensure that future continuous backups succeed, refer to the recovery point status and check SAP HANA for details.
         | 
| 1758 1758 | 
             
                 */
         | 
| 1759 1759 | 
             
                Status?: RecoveryPointStatus;
         | 
| 1760 1760 | 
             
                /**
         | 
| 1761 | 
            -
                 * A status message explaining the  | 
| 1761 | 
            +
                 * A status message explaining the status of the recovery point.
         | 
| 1762 1762 | 
             
                 */
         | 
| 1763 1763 | 
             
                StatusMessage?: string;
         | 
| 1764 1764 | 
             
                /**
         | 
| @@ -3000,6 +3000,18 @@ declare namespace Backup { | |
| 3000 3000 | 
             
                 * This is the Amazon Resource Name (ARN) of the parent (composite) recovery point.
         | 
| 3001 3001 | 
             
                 */
         | 
| 3002 3002 | 
             
                RecoveryPointArn?: ARN;
         | 
| 3003 | 
            +
                /**
         | 
| 3004 | 
            +
                 * This is the Amazon Resource Name (ARN) that uniquely identifies a saved resource.
         | 
| 3005 | 
            +
                 */
         | 
| 3006 | 
            +
                ResourceArn?: ARN;
         | 
| 3007 | 
            +
                /**
         | 
| 3008 | 
            +
                 * This is the Amazon Web Services resource type that is saved as a recovery point.
         | 
| 3009 | 
            +
                 */
         | 
| 3010 | 
            +
                ResourceType?: ResourceType;
         | 
| 3011 | 
            +
                /**
         | 
| 3012 | 
            +
                 * This is the name of the backup vault (the logical container in which backups are stored).
         | 
| 3013 | 
            +
                 */
         | 
| 3014 | 
            +
                BackupVaultName?: BackupVaultName;
         | 
| 3003 3015 | 
             
              }
         | 
| 3004 3016 | 
             
              export interface RecoveryPointSelection {
         | 
| 3005 3017 | 
             
                /**
         | 
| @@ -3223,7 +3235,7 @@ declare namespace Backup { | |
| 3223 3235 | 
             
                 */
         | 
| 3224 3236 | 
             
                IdempotencyToken?: string;
         | 
| 3225 3237 | 
             
                /**
         | 
| 3226 | 
            -
                 * A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional, and the default is 8 hours. If this value is included, it must be at least 60 minutes to avoid errors.
         | 
| 3238 | 
            +
                 * A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional, and the default is 8 hours. If this value is included, it must be at least 60 minutes to avoid errors. During the start window, the backup job status remains in CREATED status until it has successfully begun or until the start window time has run out. If within the start window time Backup receives an error that allows the job to be retried, Backup will automatically retry to begin the job at least every 10 minutes until the backup successfully begins (the job status changes to RUNNING) or until the job status changes to EXPIRED (which is expected to occur when the start window time is over).
         | 
| 3227 3239 | 
             
                 */
         | 
| 3228 3240 | 
             
                StartWindowMinutes?: WindowMinutes;
         | 
| 3229 3241 | 
             
                /**
         | 
| @@ -3332,9 +3344,13 @@ declare namespace Backup { | |
| 3332 3344 | 
             
                 */
         | 
| 3333 3345 | 
             
                IdempotencyToken?: string;
         | 
| 3334 3346 | 
             
                /**
         | 
| 3335 | 
            -
                 * Starts a job to restore a recovery point for one of the following resources:    Aurora for Amazon Aurora    DocumentDB for Amazon DocumentDB (with MongoDB compatibility)    DynamoDB for Amazon DynamoDB    EBS for Amazon Elastic Block Store    EC2 for Amazon Elastic Compute Cloud    EFS for Amazon Elastic File System    FSx for Amazon FSx    Neptune for Amazon Neptune    RDS for Amazon Relational Database Service    Storage Gateway for Storage Gateway    S3 for Amazon S3    VirtualMachine for virtual machines  
         | 
| 3347 | 
            +
                 * Starts a job to restore a recovery point for one of the following resources:    Aurora for Amazon Aurora    DocumentDB for Amazon DocumentDB (with MongoDB compatibility)    CloudFormation for CloudFormation    DynamoDB for Amazon DynamoDB    EBS for Amazon Elastic Block Store    EC2 for Amazon Elastic Compute Cloud    EFS for Amazon Elastic File System    FSx for Amazon FSx    Neptune for Amazon Neptune    RDS for Amazon Relational Database Service    Redshift for Amazon Redshift    Storage Gateway for Storage Gateway    S3 for Amazon S3    Timestream for Amazon Timestream    VirtualMachine for virtual machines  
         | 
| 3336 3348 | 
             
                 */
         | 
| 3337 3349 | 
             
                ResourceType?: ResourceType;
         | 
| 3350 | 
            +
                /**
         | 
| 3351 | 
            +
                 * This is an optional parameter. If this equals True, tags included in the backup will be copied to the restored resource. This can only be applied to backups created through Backup.
         | 
| 3352 | 
            +
                 */
         | 
| 3353 | 
            +
                CopySourceTagsToRestoredResource?: boolean;
         | 
| 3338 3354 | 
             
              }
         | 
| 3339 3355 | 
             
              export interface StartRestoreJobOutput {
         | 
| 3340 3356 | 
             
                /**
         | 
| @@ -727,7 +727,7 @@ declare namespace ConnectCases { | |
| 727 727 | 
             
                 */
         | 
| 728 728 | 
             
                type: FieldType;
         | 
| 729 729 | 
             
              }
         | 
| 730 | 
            -
              export type FieldType = "Text"|"Number"|"Boolean"|"DateTime"|"SingleSelect"|string;
         | 
| 730 | 
            +
              export type FieldType = "Text"|"Number"|"Boolean"|"DateTime"|"SingleSelect"|"Url"|string;
         | 
| 731 731 | 
             
              export interface FieldValue {
         | 
| 732 732 | 
             
                /**
         | 
| 733 733 | 
             
                 * Unique identifier of a field.
         |