cdk-lambda-subminute 2.0.298 → 2.0.300
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/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +27 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.examples.json +3 -0
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.min.json +117 -94
- package/node_modules/aws-sdk/apis/backup-2018-11-15.min.json +222 -9
- package/node_modules/aws-sdk/apis/backup-2018-11-15.paginators.json +15 -0
- package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.min.json +133 -74
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +37 -31
- package/node_modules/aws-sdk/apis/codecatalyst-2022-09-28.min.json +361 -16
- package/node_modules/aws-sdk/apis/codecatalyst-2022-09-28.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +20 -10
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +423 -268
- package/node_modules/aws-sdk/apis/finspace-2021-03-12.min.json +15 -5
- package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +93 -31
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +538 -304
- package/node_modules/aws-sdk/apis/glue-2017-03-31.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +193 -161
- package/node_modules/aws-sdk/apis/mwaa-2020-07-01.min.json +31 -26
- package/node_modules/aws-sdk/apis/pipes-2015-10-07.min.json +136 -53
- package/node_modules/aws-sdk/apis/redshift-2012-12-01.min.json +6 -2
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.min.json +69 -5
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +562 -53
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.paginators.json +4 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1 -3
- package/node_modules/aws-sdk/apis/states-2016-11-23.min.json +100 -22
- package/node_modules/aws-sdk/clients/autoscaling.d.ts +33 -4
- package/node_modules/aws-sdk/clients/backup.d.ts +279 -0
- package/node_modules/aws-sdk/clients/cleanrooms.d.ts +58 -10
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +29 -4
- package/node_modules/aws-sdk/clients/codecatalyst.d.ts +370 -5
- package/node_modules/aws-sdk/clients/connect.d.ts +13 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +179 -1
- package/node_modules/aws-sdk/clients/glue.d.ts +352 -2
- package/node_modules/aws-sdk/clients/iot.d.ts +46 -5
- package/node_modules/aws-sdk/clients/lambda.d.ts +1 -1
- package/node_modules/aws-sdk/clients/mwaa.d.ts +28 -5
- package/node_modules/aws-sdk/clients/pipes.d.ts +143 -18
- package/node_modules/aws-sdk/clients/rds.d.ts +1 -1
- package/node_modules/aws-sdk/clients/redshift.d.ts +6 -2
- package/node_modules/aws-sdk/clients/resourceexplorer2.d.ts +90 -9
- package/node_modules/aws-sdk/clients/s3control.d.ts +359 -7
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +2 -2
- package/node_modules/aws-sdk/clients/signer.d.ts +35 -35
- package/node_modules/aws-sdk/clients/stepfunctions.d.ts +123 -18
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +24 -24
- package/node_modules/aws-sdk/dist/aws-sdk.js +799 -569
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +100 -100
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -327,6 +327,14 @@ declare class Backup extends Service {
|
|
327
327
|
* Returns the Amazon Web Services resource types supported by Backup.
|
328
328
|
*/
|
329
329
|
getSupportedResourceTypes(callback?: (err: AWSError, data: Backup.Types.GetSupportedResourceTypesOutput) => void): Request<Backup.Types.GetSupportedResourceTypesOutput, AWSError>;
|
330
|
+
/**
|
331
|
+
* This is a request for a summary of backup jobs created or running within the most recent 30 days. You can include parameters AccountID, State, ResourceType, MessageCategory, AggregationPeriod, MaxResults, or NextToken to filter results. This request returns a summary that contains Region, Account, State, ResourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.
|
332
|
+
*/
|
333
|
+
listBackupJobSummaries(params: Backup.Types.ListBackupJobSummariesInput, callback?: (err: AWSError, data: Backup.Types.ListBackupJobSummariesOutput) => void): Request<Backup.Types.ListBackupJobSummariesOutput, AWSError>;
|
334
|
+
/**
|
335
|
+
* This is a request for a summary of backup jobs created or running within the most recent 30 days. You can include parameters AccountID, State, ResourceType, MessageCategory, AggregationPeriod, MaxResults, or NextToken to filter results. This request returns a summary that contains Region, Account, State, ResourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.
|
336
|
+
*/
|
337
|
+
listBackupJobSummaries(callback?: (err: AWSError, data: Backup.Types.ListBackupJobSummariesOutput) => void): Request<Backup.Types.ListBackupJobSummariesOutput, AWSError>;
|
330
338
|
/**
|
331
339
|
* Returns a list of existing backup jobs for an authenticated account for the last 30 days. For a longer period of time, consider using these monitoring tools.
|
332
340
|
*/
|
@@ -375,6 +383,14 @@ declare class Backup extends Service {
|
|
375
383
|
* Returns a list of recovery point storage containers along with information about them.
|
376
384
|
*/
|
377
385
|
listBackupVaults(callback?: (err: AWSError, data: Backup.Types.ListBackupVaultsOutput) => void): Request<Backup.Types.ListBackupVaultsOutput, AWSError>;
|
386
|
+
/**
|
387
|
+
* This request obtains a list of copy jobs created or running within the the most recent 30 days. You can include parameters AccountID, State, ResourceType, MessageCategory, AggregationPeriod, MaxResults, or NextToken to filter results. This request returns a summary that contains Region, Account, State, RestourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.
|
388
|
+
*/
|
389
|
+
listCopyJobSummaries(params: Backup.Types.ListCopyJobSummariesInput, callback?: (err: AWSError, data: Backup.Types.ListCopyJobSummariesOutput) => void): Request<Backup.Types.ListCopyJobSummariesOutput, AWSError>;
|
390
|
+
/**
|
391
|
+
* This request obtains a list of copy jobs created or running within the the most recent 30 days. You can include parameters AccountID, State, ResourceType, MessageCategory, AggregationPeriod, MaxResults, or NextToken to filter results. This request returns a summary that contains Region, Account, State, RestourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.
|
392
|
+
*/
|
393
|
+
listCopyJobSummaries(callback?: (err: AWSError, data: Backup.Types.ListCopyJobSummariesOutput) => void): Request<Backup.Types.ListCopyJobSummariesOutput, AWSError>;
|
378
394
|
/**
|
379
395
|
* Returns metadata about your copy jobs.
|
380
396
|
*/
|
@@ -455,6 +471,14 @@ declare class Backup extends Service {
|
|
455
471
|
* Returns a list of your report plans. For detailed information about a single report plan, use DescribeReportPlan.
|
456
472
|
*/
|
457
473
|
listReportPlans(callback?: (err: AWSError, data: Backup.Types.ListReportPlansOutput) => void): Request<Backup.Types.ListReportPlansOutput, AWSError>;
|
474
|
+
/**
|
475
|
+
* This request obtains a summary of restore jobs created or running within the the most recent 30 days. You can include parameters AccountID, State, ResourceType, AggregationPeriod, MaxResults, or NextToken to filter results. This request returns a summary that contains Region, Account, State, RestourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.
|
476
|
+
*/
|
477
|
+
listRestoreJobSummaries(params: Backup.Types.ListRestoreJobSummariesInput, callback?: (err: AWSError, data: Backup.Types.ListRestoreJobSummariesOutput) => void): Request<Backup.Types.ListRestoreJobSummariesOutput, AWSError>;
|
478
|
+
/**
|
479
|
+
* This request obtains a summary of restore jobs created or running within the the most recent 30 days. You can include parameters AccountID, State, ResourceType, AggregationPeriod, MaxResults, or NextToken to filter results. This request returns a summary that contains Region, Account, State, RestourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.
|
480
|
+
*/
|
481
|
+
listRestoreJobSummaries(callback?: (err: AWSError, data: Backup.Types.ListRestoreJobSummariesOutput) => void): Request<Backup.Types.ListRestoreJobSummariesOutput, AWSError>;
|
458
482
|
/**
|
459
483
|
* Returns a list of jobs that Backup initiated to restore a saved resource, including details about the recovery process.
|
460
484
|
*/
|
@@ -614,6 +638,7 @@ declare namespace Backup {
|
|
614
638
|
BackupOptions?: BackupOptions;
|
615
639
|
}
|
616
640
|
export type AdvancedBackupSettings = AdvancedBackupSetting[];
|
641
|
+
export type AggregationPeriod = "ONE_DAY"|"SEVEN_DAYS"|"FOURTEEN_DAYS"|string;
|
617
642
|
export interface BackupJob {
|
618
643
|
/**
|
619
644
|
* The account ID that owns the backup job.
|
@@ -707,9 +732,49 @@ declare namespace Backup {
|
|
707
732
|
* This is the non-unique name of the resource that belongs to the specified backup.
|
708
733
|
*/
|
709
734
|
ResourceName?: string;
|
735
|
+
/**
|
736
|
+
* This parameter is the job count for the specified message category. Example strings include AccessDenied, Success, and InvalidParameters. See Monitoring for a list of MessageCategory strings. The the value ANY returns count of all message categories. AGGREGATE_ALL aggregates job counts for all message categories and returns the sum.
|
737
|
+
*/
|
738
|
+
MessageCategory?: string;
|
710
739
|
}
|
711
740
|
export type BackupJobChildJobsInState = {[key: string]: Long};
|
712
741
|
export type BackupJobState = "CREATED"|"PENDING"|"RUNNING"|"ABORTING"|"ABORTED"|"COMPLETED"|"FAILED"|"EXPIRED"|"PARTIAL"|string;
|
742
|
+
export type BackupJobStatus = "CREATED"|"PENDING"|"RUNNING"|"ABORTING"|"ABORTED"|"COMPLETED"|"FAILED"|"EXPIRED"|"PARTIAL"|"AGGREGATE_ALL"|"ANY"|string;
|
743
|
+
export interface BackupJobSummary {
|
744
|
+
/**
|
745
|
+
* The Amazon Web Services Regions within the job summary.
|
746
|
+
*/
|
747
|
+
Region?: Region;
|
748
|
+
/**
|
749
|
+
* The account ID that owns the jobs within the summary.
|
750
|
+
*/
|
751
|
+
AccountId?: AccountId;
|
752
|
+
/**
|
753
|
+
* This value is job count for jobs with the specified state.
|
754
|
+
*/
|
755
|
+
State?: BackupJobStatus;
|
756
|
+
/**
|
757
|
+
* This value is the job count for the specified resource type. The request GetSupportedResourceTypes returns strings for supported resource types.
|
758
|
+
*/
|
759
|
+
ResourceType?: ResourceType;
|
760
|
+
/**
|
761
|
+
* This parameter is the job count for the specified message category. Example strings include AccessDenied, Success, and InvalidParameters. See Monitoring for a list of MessageCategory strings. The the value ANY returns count of all message categories. AGGREGATE_ALL aggregates job counts for all message categories and returns the sum.
|
762
|
+
*/
|
763
|
+
MessageCategory?: MessageCategory;
|
764
|
+
/**
|
765
|
+
* The value as a number of jobs in a job summary.
|
766
|
+
*/
|
767
|
+
Count?: integer;
|
768
|
+
/**
|
769
|
+
* The value of time in number format of a job start time. This value is the time in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|
770
|
+
*/
|
771
|
+
StartTime?: timestamp;
|
772
|
+
/**
|
773
|
+
* The value of time in number format of a job end time. This value is the time in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|
774
|
+
*/
|
775
|
+
EndTime?: timestamp;
|
776
|
+
}
|
777
|
+
export type BackupJobSummaryList = BackupJobSummary[];
|
713
778
|
export type BackupJobsList = BackupJob[];
|
714
779
|
export type BackupOptionKey = string;
|
715
780
|
export type BackupOptionValue = string;
|
@@ -1175,9 +1240,49 @@ declare namespace Backup {
|
|
1175
1240
|
* This is the non-unique name of the resource that belongs to the specified backup.
|
1176
1241
|
*/
|
1177
1242
|
ResourceName?: string;
|
1243
|
+
/**
|
1244
|
+
* This parameter is the job count for the specified message category. Example strings include AccessDenied, Success, and InvalidParameters. See Monitoring for a list of MessageCategory strings. The the value ANY returns count of all message categories. AGGREGATE_ALL aggregates job counts for all message categories and returns the sum
|
1245
|
+
*/
|
1246
|
+
MessageCategory?: string;
|
1178
1247
|
}
|
1179
1248
|
export type CopyJobChildJobsInState = {[key: string]: Long};
|
1180
1249
|
export type CopyJobState = "CREATED"|"RUNNING"|"COMPLETED"|"FAILED"|"PARTIAL"|string;
|
1250
|
+
export type CopyJobStatus = "CREATED"|"RUNNING"|"ABORTING"|"ABORTED"|"COMPLETING"|"COMPLETED"|"FAILING"|"FAILED"|"PARTIAL"|"AGGREGATE_ALL"|"ANY"|string;
|
1251
|
+
export interface CopyJobSummary {
|
1252
|
+
/**
|
1253
|
+
* This is the Amazon Web Services Regions within the job summary.
|
1254
|
+
*/
|
1255
|
+
Region?: Region;
|
1256
|
+
/**
|
1257
|
+
* The account ID that owns the jobs within the summary.
|
1258
|
+
*/
|
1259
|
+
AccountId?: AccountId;
|
1260
|
+
/**
|
1261
|
+
* This value is job count for jobs with the specified state.
|
1262
|
+
*/
|
1263
|
+
State?: CopyJobStatus;
|
1264
|
+
/**
|
1265
|
+
* This value is the job count for the specified resource type. The request GetSupportedResourceTypes returns strings for supported resource types
|
1266
|
+
*/
|
1267
|
+
ResourceType?: ResourceType;
|
1268
|
+
/**
|
1269
|
+
* This parameter is the job count for the specified message category. Example strings include AccessDenied, Success, and InvalidParameters. See Monitoring for a list of MessageCategory strings. The the value ANY returns count of all message categories. AGGREGATE_ALL aggregates job counts for all message categories and returns the sum.
|
1270
|
+
*/
|
1271
|
+
MessageCategory?: MessageCategory;
|
1272
|
+
/**
|
1273
|
+
* The value as a number of jobs in a job summary.
|
1274
|
+
*/
|
1275
|
+
Count?: integer;
|
1276
|
+
/**
|
1277
|
+
* The value of time in number format of a job start time. This value is the time in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|
1278
|
+
*/
|
1279
|
+
StartTime?: timestamp;
|
1280
|
+
/**
|
1281
|
+
* The value of time in number format of a job end time. This value is the time in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|
1282
|
+
*/
|
1283
|
+
EndTime?: timestamp;
|
1284
|
+
}
|
1285
|
+
export type CopyJobSummaryList = CopyJobSummary[];
|
1181
1286
|
export type CopyJobsList = CopyJob[];
|
1182
1287
|
export interface CreateBackupPlanInput {
|
1183
1288
|
/**
|
@@ -1637,6 +1742,10 @@ declare namespace Backup {
|
|
1637
1742
|
* This is the non-unique name of the resource that belongs to the specified backup.
|
1638
1743
|
*/
|
1639
1744
|
ResourceName?: string;
|
1745
|
+
/**
|
1746
|
+
* This is the job count for the specified message category. Example strings may include AccessDenied, Success, and InvalidParameters. See Monitoring for a list of MessageCategory strings.
|
1747
|
+
*/
|
1748
|
+
MessageCategory?: string;
|
1640
1749
|
}
|
1641
1750
|
export interface DescribeBackupVaultInput {
|
1642
1751
|
/**
|
@@ -2341,6 +2450,50 @@ declare namespace Backup {
|
|
2341
2450
|
*/
|
2342
2451
|
DeleteAfterDays?: Long;
|
2343
2452
|
}
|
2453
|
+
export interface ListBackupJobSummariesInput {
|
2454
|
+
/**
|
2455
|
+
* Returns the job count for the specified account. If the request is sent from a member account or an account not part of Amazon Web Services Organizations, jobs within requestor's account will be returned. Root, admin, and delegated administrator accounts can use the value ANY to return job counts from every account in the organization. AGGREGATE_ALL aggregates job counts from all accounts within the authenticated organization, then returns the sum.
|
2456
|
+
*/
|
2457
|
+
AccountId?: AccountId;
|
2458
|
+
/**
|
2459
|
+
* This parameter returns the job count for jobs with the specified state. The the value ANY returns count of all states. AGGREGATE_ALL aggregates job counts for all states and returns the sum.
|
2460
|
+
*/
|
2461
|
+
State?: BackupJobStatus;
|
2462
|
+
/**
|
2463
|
+
* Returns the job count for the specified resource type. Use request GetSupportedResourceTypes to obtain strings for supported resource types. The the value ANY returns count of all resource types. AGGREGATE_ALL aggregates job counts for all resource types and returns the sum. The type of Amazon Web Services resource to be backed up; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database.
|
2464
|
+
*/
|
2465
|
+
ResourceType?: ResourceType;
|
2466
|
+
/**
|
2467
|
+
* This parameter returns the job count for the specified message category. Example accepted strings include AccessDenied, Success, and InvalidParameters. See Monitoring for a list of accepted MessageCategory strings. The the value ANY returns count of all message categories. AGGREGATE_ALL aggregates job counts for all message categories and returns the sum.
|
2468
|
+
*/
|
2469
|
+
MessageCategory?: MessageCategory;
|
2470
|
+
/**
|
2471
|
+
* This is the period that sets the boundaries for returned results. Acceptable values include ONE_DAY for daily job count for the prior 14 days. SEVEN_DAYS for the aggregated job count for the prior 7 days. FOURTEEN_DAYS for aggregated job count for prior 14 days.
|
2472
|
+
*/
|
2473
|
+
AggregationPeriod?: AggregationPeriod;
|
2474
|
+
/**
|
2475
|
+
* This parameter sets the maximum number of items to be returned. The value is an integer. Range of accepted values is from 1 to 500.
|
2476
|
+
*/
|
2477
|
+
MaxResults?: MaxResults;
|
2478
|
+
/**
|
2479
|
+
* The next item following a partial list of returned resources. For example, if a request is made to return maxResults number of resources, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
|
2480
|
+
*/
|
2481
|
+
NextToken?: string;
|
2482
|
+
}
|
2483
|
+
export interface ListBackupJobSummariesOutput {
|
2484
|
+
/**
|
2485
|
+
* This request returns a summary that contains Region, Account, State, ResourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.
|
2486
|
+
*/
|
2487
|
+
BackupJobSummaries?: BackupJobSummaryList;
|
2488
|
+
/**
|
2489
|
+
* This is the period that sets the boundaries for returned results. ONE_DAY for daily job count for the prior 14 days. SEVEN_DAYS for the aggregated job count for the prior 7 days. FOURTEEN_DAYS for aggregated job count for prior 14 days.
|
2490
|
+
*/
|
2491
|
+
AggregationPeriod?: string;
|
2492
|
+
/**
|
2493
|
+
* The next item following a partial list of returned resources. For example, if a request is made to return maxResults number of resources, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
|
2494
|
+
*/
|
2495
|
+
NextToken?: string;
|
2496
|
+
}
|
2344
2497
|
export interface ListBackupJobsInput {
|
2345
2498
|
/**
|
2346
2499
|
* The next item following a partial list of returned items. For example, if a request is made to return maxResults number of items, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
|
@@ -2390,6 +2543,10 @@ declare namespace Backup {
|
|
2390
2543
|
* This is a filter to list child (nested) jobs based on parent job ID.
|
2391
2544
|
*/
|
2392
2545
|
ByParentJobId?: string;
|
2546
|
+
/**
|
2547
|
+
* This returns a list of backup jobs for the specified message category. Example strings may include AccessDenied, Success, and InvalidParameters. See Monitoring for a list of MessageCategory strings.
|
2548
|
+
*/
|
2549
|
+
ByMessageCategory?: string;
|
2393
2550
|
}
|
2394
2551
|
export interface ListBackupJobsOutput {
|
2395
2552
|
/**
|
@@ -2521,6 +2678,50 @@ declare namespace Backup {
|
|
2521
2678
|
*/
|
2522
2679
|
NextToken?: string;
|
2523
2680
|
}
|
2681
|
+
export interface ListCopyJobSummariesInput {
|
2682
|
+
/**
|
2683
|
+
* Returns the job count for the specified account. If the request is sent from a member account or an account not part of Amazon Web Services Organizations, jobs within requestor's account will be returned. Root, admin, and delegated administrator accounts can use the value ANY to return job counts from every account in the organization. AGGREGATE_ALL aggregates job counts from all accounts within the authenticated organization, then returns the sum.
|
2684
|
+
*/
|
2685
|
+
AccountId?: AccountId;
|
2686
|
+
/**
|
2687
|
+
* This parameter returns the job count for jobs with the specified state. The the value ANY returns count of all states. AGGREGATE_ALL aggregates job counts for all states and returns the sum.
|
2688
|
+
*/
|
2689
|
+
State?: CopyJobStatus;
|
2690
|
+
/**
|
2691
|
+
* Returns the job count for the specified resource type. Use request GetSupportedResourceTypes to obtain strings for supported resource types. The the value ANY returns count of all resource types. AGGREGATE_ALL aggregates job counts for all resource types and returns the sum. The type of Amazon Web Services resource to be backed up; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database.
|
2692
|
+
*/
|
2693
|
+
ResourceType?: ResourceType;
|
2694
|
+
/**
|
2695
|
+
* This parameter returns the job count for the specified message category. Example accepted strings include AccessDenied, Success, and InvalidParameters. See Monitoring for a list of accepted MessageCategory strings. The the value ANY returns count of all message categories. AGGREGATE_ALL aggregates job counts for all message categories and returns the sum.
|
2696
|
+
*/
|
2697
|
+
MessageCategory?: MessageCategory;
|
2698
|
+
/**
|
2699
|
+
* This is the period that sets the boundaries for returned results. ONE_DAY for daily job count for the prior 14 days. SEVEN_DAYS for the aggregated job count for the prior 7 days. FOURTEEN_DAYS for aggregated job count for prior 14 days.
|
2700
|
+
*/
|
2701
|
+
AggregationPeriod?: AggregationPeriod;
|
2702
|
+
/**
|
2703
|
+
* This parameter sets the maximum number of items to be returned. The value is an integer. Range of accepted values is from 1 to 500.
|
2704
|
+
*/
|
2705
|
+
MaxResults?: MaxResults;
|
2706
|
+
/**
|
2707
|
+
* The next item following a partial list of returned resources. For example, if a request is made to return maxResults number of resources, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
|
2708
|
+
*/
|
2709
|
+
NextToken?: string;
|
2710
|
+
}
|
2711
|
+
export interface ListCopyJobSummariesOutput {
|
2712
|
+
/**
|
2713
|
+
* This return shows a summary that contains Region, Account, State, ResourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.
|
2714
|
+
*/
|
2715
|
+
CopyJobSummaries?: CopyJobSummaryList;
|
2716
|
+
/**
|
2717
|
+
* This is the period that sets the boundaries for returned results. ONE_DAY for daily job count for the prior 14 days. SEVEN_DAYS for the aggregated job count for the prior 7 days. FOURTEEN_DAYS for aggregated job count for prior 14 days.
|
2718
|
+
*/
|
2719
|
+
AggregationPeriod?: string;
|
2720
|
+
/**
|
2721
|
+
* The next item following a partial list of returned resources. For example, if a request is made to return maxResults number of resources, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
|
2722
|
+
*/
|
2723
|
+
NextToken?: string;
|
2724
|
+
}
|
2524
2725
|
export interface ListCopyJobsInput {
|
2525
2726
|
/**
|
2526
2727
|
* The next item following a partial list of returned items. For example, if a request is made to return maxResults number of items, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
|
@@ -2570,6 +2771,10 @@ declare namespace Backup {
|
|
2570
2771
|
* This is a filter to list child (nested) jobs based on parent job ID.
|
2571
2772
|
*/
|
2572
2773
|
ByParentJobId?: string;
|
2774
|
+
/**
|
2775
|
+
* This parameter returns the job count for the specified message category. Example accepted strings include AccessDenied, Success, and InvalidParameters. See Monitoring for a list of accepted MessageCategory strings. The the value ANY returns count of all message categories. AGGREGATE_ALL aggregates job counts for all message categories and returns the sum.
|
2776
|
+
*/
|
2777
|
+
ByMessageCategory?: string;
|
2573
2778
|
}
|
2574
2779
|
export interface ListCopyJobsOutput {
|
2575
2780
|
/**
|
@@ -2826,6 +3031,46 @@ declare namespace Backup {
|
|
2826
3031
|
*/
|
2827
3032
|
NextToken?: string;
|
2828
3033
|
}
|
3034
|
+
export interface ListRestoreJobSummariesInput {
|
3035
|
+
/**
|
3036
|
+
* Returns the job count for the specified account. If the request is sent from a member account or an account not part of Amazon Web Services Organizations, jobs within requestor's account will be returned. Root, admin, and delegated administrator accounts can use the value ANY to return job counts from every account in the organization. AGGREGATE_ALL aggregates job counts from all accounts within the authenticated organization, then returns the sum.
|
3037
|
+
*/
|
3038
|
+
AccountId?: AccountId;
|
3039
|
+
/**
|
3040
|
+
* This parameter returns the job count for jobs with the specified state. The the value ANY returns count of all states. AGGREGATE_ALL aggregates job counts for all states and returns the sum.
|
3041
|
+
*/
|
3042
|
+
State?: RestoreJobState;
|
3043
|
+
/**
|
3044
|
+
* Returns the job count for the specified resource type. Use request GetSupportedResourceTypes to obtain strings for supported resource types. The the value ANY returns count of all resource types. AGGREGATE_ALL aggregates job counts for all resource types and returns the sum. The type of Amazon Web Services resource to be backed up; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database.
|
3045
|
+
*/
|
3046
|
+
ResourceType?: ResourceType;
|
3047
|
+
/**
|
3048
|
+
* This is the period that sets the boundaries for returned results. Acceptable values include ONE_DAY for daily job count for the prior 14 days. SEVEN_DAYS for the aggregated job count for the prior 7 days. FOURTEEN_DAYS for aggregated job count for prior 14 days.
|
3049
|
+
*/
|
3050
|
+
AggregationPeriod?: AggregationPeriod;
|
3051
|
+
/**
|
3052
|
+
* This parameter sets the maximum number of items to be returned. The value is an integer. Range of accepted values is from 1 to 500.
|
3053
|
+
*/
|
3054
|
+
MaxResults?: MaxResults;
|
3055
|
+
/**
|
3056
|
+
* The next item following a partial list of returned resources. For example, if a request is made to return maxResults number of resources, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
|
3057
|
+
*/
|
3058
|
+
NextToken?: string;
|
3059
|
+
}
|
3060
|
+
export interface ListRestoreJobSummariesOutput {
|
3061
|
+
/**
|
3062
|
+
* This return contains a summary that contains Region, Account, State, ResourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.
|
3063
|
+
*/
|
3064
|
+
RestoreJobSummaries?: RestoreJobSummaryList;
|
3065
|
+
/**
|
3066
|
+
* This is the period that sets the boundaries for returned results. ONE_DAY for daily job count for the prior 14 days. SEVEN_DAYS for the aggregated job count for the prior 7 days. FOURTEEN_DAYS for aggregated job count for prior 14 days.
|
3067
|
+
*/
|
3068
|
+
AggregationPeriod?: string;
|
3069
|
+
/**
|
3070
|
+
* The next item following a partial list of returned resources. For example, if a request is made to return maxResults number of resources, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
|
3071
|
+
*/
|
3072
|
+
NextToken?: string;
|
3073
|
+
}
|
2829
3074
|
export interface ListRestoreJobsInput {
|
2830
3075
|
/**
|
2831
3076
|
* The next item following a partial list of returned items. For example, if a request is made to return maxResults number of items, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
|
@@ -2897,6 +3142,7 @@ declare namespace Backup {
|
|
2897
3142
|
export type Long = number;
|
2898
3143
|
export type MaxFrameworkInputs = number;
|
2899
3144
|
export type MaxResults = number;
|
3145
|
+
export type MessageCategory = string;
|
2900
3146
|
export type Metadata = {[key: string]: MetadataValue};
|
2901
3147
|
export type MetadataKey = string;
|
2902
3148
|
export type MetadataValue = string;
|
@@ -3146,6 +3392,7 @@ declare namespace Backup {
|
|
3146
3392
|
}
|
3147
3393
|
export type RecoveryPointStatus = "COMPLETED"|"PARTIAL"|"DELETING"|"EXPIRED"|string;
|
3148
3394
|
export type RecoveryPointsList = RecoveryPointMember[];
|
3395
|
+
export type Region = string;
|
3149
3396
|
export interface ReportDeliveryChannel {
|
3150
3397
|
/**
|
3151
3398
|
* The unique name of the S3 bucket that receives your reports.
|
@@ -3281,7 +3528,39 @@ declare namespace Backup {
|
|
3281
3528
|
export type ResourceTypeOptInPreference = {[key: string]: IsEnabled};
|
3282
3529
|
export type ResourceTypes = ResourceType[];
|
3283
3530
|
export type RestoreJobId = string;
|
3531
|
+
export type RestoreJobState = "CREATED"|"PENDING"|"RUNNING"|"ABORTED"|"COMPLETED"|"FAILED"|"AGGREGATE_ALL"|"ANY"|string;
|
3284
3532
|
export type RestoreJobStatus = "PENDING"|"RUNNING"|"COMPLETED"|"ABORTED"|"FAILED"|string;
|
3533
|
+
export interface RestoreJobSummary {
|
3534
|
+
/**
|
3535
|
+
* The Amazon Web Services Regions within the job summary.
|
3536
|
+
*/
|
3537
|
+
Region?: Region;
|
3538
|
+
/**
|
3539
|
+
* The account ID that owns the jobs within the summary.
|
3540
|
+
*/
|
3541
|
+
AccountId?: AccountId;
|
3542
|
+
/**
|
3543
|
+
* This value is job count for jobs with the specified state.
|
3544
|
+
*/
|
3545
|
+
State?: RestoreJobState;
|
3546
|
+
/**
|
3547
|
+
* This value is the job count for the specified resource type. The request GetSupportedResourceTypes returns strings for supported resource types.
|
3548
|
+
*/
|
3549
|
+
ResourceType?: ResourceType;
|
3550
|
+
/**
|
3551
|
+
* The value as a number of jobs in a job summary.
|
3552
|
+
*/
|
3553
|
+
Count?: integer;
|
3554
|
+
/**
|
3555
|
+
* The value of time in number format of a job start time. This value is the time in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|
3556
|
+
*/
|
3557
|
+
StartTime?: timestamp;
|
3558
|
+
/**
|
3559
|
+
* The value of time in number format of a job end time. This value is the time in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|
3560
|
+
*/
|
3561
|
+
EndTime?: timestamp;
|
3562
|
+
}
|
3563
|
+
export type RestoreJobSummaryList = RestoreJobSummary[];
|
3285
3564
|
export type RestoreJobsList = RestoreJobsListMember[];
|
3286
3565
|
export interface RestoreJobsListMember {
|
3287
3566
|
/**
|
@@ -1200,6 +1200,10 @@ declare namespace CleanRooms {
|
|
1200
1200
|
* An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
1201
1201
|
*/
|
1202
1202
|
tags?: TagMap;
|
1203
|
+
/**
|
1204
|
+
* The collaboration creator's payment responsibilities set by the collaboration creator. If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the member who can query is the default payer.
|
1205
|
+
*/
|
1206
|
+
creatorPaymentConfiguration?: PaymentConfiguration;
|
1203
1207
|
}
|
1204
1208
|
export interface CreateCollaborationOutput {
|
1205
1209
|
/**
|
@@ -1297,7 +1301,7 @@ declare namespace CleanRooms {
|
|
1297
1301
|
*/
|
1298
1302
|
collaborationIdentifier: CollaborationIdentifier;
|
1299
1303
|
/**
|
1300
|
-
* An indicator as to whether query logging has been enabled or disabled for the
|
1304
|
+
* An indicator as to whether query logging has been enabled or disabled for the membership.
|
1301
1305
|
*/
|
1302
1306
|
queryLogStatus: MembershipQueryLogStatus;
|
1303
1307
|
/**
|
@@ -1308,6 +1312,10 @@ declare namespace CleanRooms {
|
|
1308
1312
|
* The default protected query result configuration as specified by the member who can receive results.
|
1309
1313
|
*/
|
1310
1314
|
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
|
1315
|
+
/**
|
1316
|
+
* The payment responsibilities accepted by the collaboration member. Not required if the collaboration member has the member ability to run queries. Required if the collaboration member doesn't have the member ability to run queries but is configured as a payer by the collaboration creator.
|
1317
|
+
*/
|
1318
|
+
paymentConfiguration?: MembershipPaymentConfiguration;
|
1311
1319
|
}
|
1312
1320
|
export interface CreateMembershipOutput {
|
1313
1321
|
/**
|
@@ -1317,19 +1325,19 @@ declare namespace CleanRooms {
|
|
1317
1325
|
}
|
1318
1326
|
export interface DataEncryptionMetadata {
|
1319
1327
|
/**
|
1320
|
-
* Indicates whether encrypted tables can contain cleartext data (
|
1328
|
+
* Indicates whether encrypted tables can contain cleartext data (TRUE) or are to cryptographically process every column (FALSE).
|
1321
1329
|
*/
|
1322
1330
|
allowCleartext: Boolean;
|
1323
1331
|
/**
|
1324
|
-
* Indicates whether Fingerprint columns can contain duplicate entries (
|
1332
|
+
* Indicates whether Fingerprint columns can contain duplicate entries (TRUE) or are to contain only non-repeated values (FALSE).
|
1325
1333
|
*/
|
1326
1334
|
allowDuplicates: Boolean;
|
1327
1335
|
/**
|
1328
|
-
* Indicates whether Fingerprint columns can be joined on any other Fingerprint column with a different name (
|
1336
|
+
* Indicates whether Fingerprint columns can be joined on any other Fingerprint column with a different name (TRUE) or can only be joined on Fingerprint columns of the same name (FALSE).
|
1329
1337
|
*/
|
1330
1338
|
allowJoinsOnColumnsWithDifferentNames: Boolean;
|
1331
1339
|
/**
|
1332
|
-
* Indicates whether NULL values are to be copied as NULL to encrypted tables (
|
1340
|
+
* Indicates whether NULL values are to be copied as NULL to encrypted tables (TRUE) or cryptographically processed (FALSE).
|
1333
1341
|
*/
|
1334
1342
|
preserveNulls: Boolean;
|
1335
1343
|
}
|
@@ -1825,6 +1833,10 @@ declare namespace CleanRooms {
|
|
1825
1833
|
* The member's display name.
|
1826
1834
|
*/
|
1827
1835
|
displayName: DisplayName;
|
1836
|
+
/**
|
1837
|
+
* The collaboration member's payment responsibilities set by the collaboration creator. If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the member who can query is the default payer.
|
1838
|
+
*/
|
1839
|
+
paymentConfiguration?: PaymentConfiguration;
|
1828
1840
|
}
|
1829
1841
|
export type MemberStatus = "INVITED"|"ACTIVE"|"LEFT"|"REMOVED"|string;
|
1830
1842
|
export interface MemberSummary {
|
@@ -1833,7 +1845,7 @@ declare namespace CleanRooms {
|
|
1833
1845
|
*/
|
1834
1846
|
accountId: AccountId;
|
1835
1847
|
/**
|
1836
|
-
* The status of the member.
|
1848
|
+
* The status of the member.
|
1837
1849
|
*/
|
1838
1850
|
status: MemberStatus;
|
1839
1851
|
/**
|
@@ -1860,6 +1872,10 @@ declare namespace CleanRooms {
|
|
1860
1872
|
* The unique ARN for the member's associated membership, if present.
|
1861
1873
|
*/
|
1862
1874
|
membershipArn?: MembershipArn;
|
1875
|
+
/**
|
1876
|
+
* The collaboration member's payment responsibilities set by the collaboration creator.
|
1877
|
+
*/
|
1878
|
+
paymentConfiguration: PaymentConfiguration;
|
1863
1879
|
}
|
1864
1880
|
export type MemberSummaryList = MemberSummary[];
|
1865
1881
|
export interface Membership {
|
@@ -1900,7 +1916,7 @@ declare namespace CleanRooms {
|
|
1900
1916
|
*/
|
1901
1917
|
updateTime: Timestamp;
|
1902
1918
|
/**
|
1903
|
-
* The status of the membership.
|
1919
|
+
* The status of the membership.
|
1904
1920
|
*/
|
1905
1921
|
status: MembershipStatus;
|
1906
1922
|
/**
|
@@ -1908,16 +1924,26 @@ declare namespace CleanRooms {
|
|
1908
1924
|
*/
|
1909
1925
|
memberAbilities: MemberAbilities;
|
1910
1926
|
/**
|
1911
|
-
* An indicator as to whether query logging has been enabled or disabled for the
|
1927
|
+
* An indicator as to whether query logging has been enabled or disabled for the membership.
|
1912
1928
|
*/
|
1913
1929
|
queryLogStatus: MembershipQueryLogStatus;
|
1914
1930
|
/**
|
1915
1931
|
* The default protected query result configuration as specified by the member who can receive results.
|
1916
1932
|
*/
|
1917
1933
|
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
|
1934
|
+
/**
|
1935
|
+
* The payment responsibilities accepted by the collaboration member.
|
1936
|
+
*/
|
1937
|
+
paymentConfiguration: MembershipPaymentConfiguration;
|
1918
1938
|
}
|
1919
1939
|
export type MembershipArn = string;
|
1920
1940
|
export type MembershipIdentifier = string;
|
1941
|
+
export interface MembershipPaymentConfiguration {
|
1942
|
+
/**
|
1943
|
+
* The payment responsibilities accepted by the collaboration member for query compute costs.
|
1944
|
+
*/
|
1945
|
+
queryCompute: MembershipQueryComputePaymentConfig;
|
1946
|
+
}
|
1921
1947
|
export interface MembershipProtectedQueryOutputConfiguration {
|
1922
1948
|
s3?: ProtectedQueryS3OutputConfiguration;
|
1923
1949
|
}
|
@@ -1931,6 +1957,12 @@ declare namespace CleanRooms {
|
|
1931
1957
|
*/
|
1932
1958
|
roleArn?: RoleArn;
|
1933
1959
|
}
|
1960
|
+
export interface MembershipQueryComputePaymentConfig {
|
1961
|
+
/**
|
1962
|
+
* Indicates whether the collaboration member has accepted to pay for query compute costs (TRUE) or has not accepted to pay for query compute costs (FALSE). If the collaboration creator has not specified anyone to pay for query compute costs, then the member who can query is the default payer. An error message is returned for the following reasons: If you set the value to FALSE but you are responsible to pay for query compute costs. If you set the value to TRUE but you are not responsible to pay for query compute costs.
|
1963
|
+
*/
|
1964
|
+
isResponsible: Boolean;
|
1965
|
+
}
|
1934
1966
|
export type MembershipQueryLogStatus = "ENABLED"|"DISABLED"|string;
|
1935
1967
|
export type MembershipStatus = "ACTIVE"|"REMOVED"|"COLLABORATION_DELETED"|string;
|
1936
1968
|
export interface MembershipSummary {
|
@@ -1971,13 +2003,17 @@ declare namespace CleanRooms {
|
|
1971
2003
|
*/
|
1972
2004
|
updateTime: Timestamp;
|
1973
2005
|
/**
|
1974
|
-
* The status of the membership.
|
2006
|
+
* The status of the membership.
|
1975
2007
|
*/
|
1976
2008
|
status: MembershipStatus;
|
1977
2009
|
/**
|
1978
2010
|
* The abilities granted to the collaboration member.
|
1979
2011
|
*/
|
1980
2012
|
memberAbilities: MemberAbilities;
|
2013
|
+
/**
|
2014
|
+
* The payment responsibilities accepted by the collaboration member.
|
2015
|
+
*/
|
2016
|
+
paymentConfiguration: MembershipPaymentConfiguration;
|
1981
2017
|
}
|
1982
2018
|
export type MembershipSummaryList = MembershipSummary[];
|
1983
2019
|
export type PaginationToken = string;
|
@@ -1985,6 +2021,12 @@ declare namespace CleanRooms {
|
|
1985
2021
|
export type ParameterName = string;
|
1986
2022
|
export type ParameterType = "SMALLINT"|"INTEGER"|"BIGINT"|"DECIMAL"|"REAL"|"DOUBLE_PRECISION"|"BOOLEAN"|"CHAR"|"VARCHAR"|"DATE"|"TIMESTAMP"|"TIMESTAMPTZ"|"TIME"|"TIMETZ"|"VARBYTE"|string;
|
1987
2023
|
export type ParameterValue = string;
|
2024
|
+
export interface PaymentConfiguration {
|
2025
|
+
/**
|
2026
|
+
* The collaboration member's payment responsibilities set by the collaboration creator for query compute costs.
|
2027
|
+
*/
|
2028
|
+
queryCompute: QueryComputePaymentConfig;
|
2029
|
+
}
|
1988
2030
|
export interface ProtectedQuery {
|
1989
2031
|
/**
|
1990
2032
|
* The identifier for a protected query instance.
|
@@ -2140,6 +2182,12 @@ declare namespace CleanRooms {
|
|
2140
2182
|
}
|
2141
2183
|
export type ProtectedQuerySummaryList = ProtectedQuerySummary[];
|
2142
2184
|
export type ProtectedQueryType = "SQL"|string;
|
2185
|
+
export interface QueryComputePaymentConfig {
|
2186
|
+
/**
|
2187
|
+
* Indicates whether the collaboration creator has configured the collaboration member to pay for query compute costs (TRUE) or has not configured the collaboration member to pay for query compute costs (FALSE). Exactly one member can be configured to pay for query compute costs. An error is returned if the collaboration creator sets a TRUE value for more than one member in the collaboration. If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the member who can query is the default payer. An error is returned if the collaboration creator sets a FALSE value for the member who can query.
|
2188
|
+
*/
|
2189
|
+
isResponsible: Boolean;
|
2190
|
+
}
|
2143
2191
|
export type QueryTables = TableAlias[];
|
2144
2192
|
export type ResourceAlias = string;
|
2145
2193
|
export type ResourceDescription = string;
|
@@ -2413,7 +2461,7 @@ declare namespace CleanRooms {
|
|
2413
2461
|
*/
|
2414
2462
|
membershipIdentifier: MembershipIdentifier;
|
2415
2463
|
/**
|
2416
|
-
* An indicator as to whether query logging has been enabled or disabled for the
|
2464
|
+
* An indicator as to whether query logging has been enabled or disabled for the membership.
|
2417
2465
|
*/
|
2418
2466
|
queryLogStatus?: MembershipQueryLogStatus;
|
2419
2467
|
/**
|