aws-sdk 2.1424.0 → 2.1426.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 +22 -1
- package/README.md +1 -1
- package/apis/amplifyuibuilder-2021-08-11.min.json +40 -9
- package/apis/application-insights-2018-11-25.min.json +228 -43
- package/apis/application-insights-2018-11-25.paginators.json +5 -0
- package/apis/autoscaling-2011-01-01.examples.json +73 -10
- package/apis/autoscaling-2011-01-01.min.json +61 -52
- package/apis/cleanrooms-2022-02-17.min.json +601 -85
- package/apis/cleanrooms-2022-02-17.paginators.json +12 -0
- package/apis/cloudformation-2010-05-15.min.json +95 -80
- package/apis/cloudfront-2020-05-31.min.json +4 -1
- package/apis/inspector2-2020-06-08.min.json +291 -192
- package/apis/kafka-2018-11-14.min.json +237 -52
- package/apis/kafka-2018-11-14.paginators.json +6 -0
- package/apis/lookoutequipment-2020-12-15.min.json +337 -23
- package/apis/lookoutequipment-2020-12-15.paginators.json +5 -0
- package/apis/omics-2022-11-28.min.json +32 -29
- package/apis/pinpoint-2016-12-01.examples.json +6 -12
- package/apis/pinpoint-2016-12-01.min.json +286 -243
- package/apis/rds-2014-10-31.min.json +175 -162
- package/apis/scheduler-2021-06-30.min.json +15 -12
- package/clients/amplifyuibuilder.d.ts +48 -4
- package/clients/applicationinsights.d.ts +342 -2
- package/clients/autoscaling.d.ts +13 -2
- package/clients/cleanrooms.d.ts +516 -9
- package/clients/cloudformation.d.ts +21 -0
- package/clients/cloudfront.d.ts +14 -10
- package/clients/codestarconnections.d.ts +10 -10
- package/clients/connect.d.ts +1 -1
- package/clients/drs.d.ts +1 -1
- package/clients/inspector2.d.ts +101 -2
- package/clients/kafka.d.ts +204 -0
- package/clients/lookoutequipment.d.ts +522 -15
- package/clients/omics.d.ts +13 -0
- package/clients/pinpoint.d.ts +69 -5
- package/clients/rds.d.ts +21 -0
- package/clients/route53.d.ts +9 -9
- package/clients/scheduler.d.ts +16 -3
- package/clients/sqs.d.ts +9 -9
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +18 -18
- package/dist/aws-sdk.js +338 -298
- package/dist/aws-sdk.min.js +95 -95
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/cleanrooms.d.ts
CHANGED
@@ -11,6 +11,14 @@ declare class CleanRooms extends Service {
|
|
11
11
|
*/
|
12
12
|
constructor(options?: CleanRooms.Types.ClientConfiguration)
|
13
13
|
config: Config & CleanRooms.Types.ClientConfiguration;
|
14
|
+
/**
|
15
|
+
* Retrieves multiple analysis templates within a collaboration by their Amazon Resource Names (ARNs).
|
16
|
+
*/
|
17
|
+
batchGetCollaborationAnalysisTemplate(params: CleanRooms.Types.BatchGetCollaborationAnalysisTemplateInput, callback?: (err: AWSError, data: CleanRooms.Types.BatchGetCollaborationAnalysisTemplateOutput) => void): Request<CleanRooms.Types.BatchGetCollaborationAnalysisTemplateOutput, AWSError>;
|
18
|
+
/**
|
19
|
+
* Retrieves multiple analysis templates within a collaboration by their Amazon Resource Names (ARNs).
|
20
|
+
*/
|
21
|
+
batchGetCollaborationAnalysisTemplate(callback?: (err: AWSError, data: CleanRooms.Types.BatchGetCollaborationAnalysisTemplateOutput) => void): Request<CleanRooms.Types.BatchGetCollaborationAnalysisTemplateOutput, AWSError>;
|
14
22
|
/**
|
15
23
|
* Retrieves multiple schemas by their identifiers.
|
16
24
|
*/
|
@@ -19,6 +27,14 @@ declare class CleanRooms extends Service {
|
|
19
27
|
* Retrieves multiple schemas by their identifiers.
|
20
28
|
*/
|
21
29
|
batchGetSchema(callback?: (err: AWSError, data: CleanRooms.Types.BatchGetSchemaOutput) => void): Request<CleanRooms.Types.BatchGetSchemaOutput, AWSError>;
|
30
|
+
/**
|
31
|
+
* Creates a new analysis template.
|
32
|
+
*/
|
33
|
+
createAnalysisTemplate(params: CleanRooms.Types.CreateAnalysisTemplateInput, callback?: (err: AWSError, data: CleanRooms.Types.CreateAnalysisTemplateOutput) => void): Request<CleanRooms.Types.CreateAnalysisTemplateOutput, AWSError>;
|
34
|
+
/**
|
35
|
+
* Creates a new analysis template.
|
36
|
+
*/
|
37
|
+
createAnalysisTemplate(callback?: (err: AWSError, data: CleanRooms.Types.CreateAnalysisTemplateOutput) => void): Request<CleanRooms.Types.CreateAnalysisTemplateOutput, AWSError>;
|
22
38
|
/**
|
23
39
|
* Creates a new collaboration.
|
24
40
|
*/
|
@@ -59,6 +75,14 @@ declare class CleanRooms extends Service {
|
|
59
75
|
* Creates a membership for a specific collaboration identifier and joins the collaboration.
|
60
76
|
*/
|
61
77
|
createMembership(callback?: (err: AWSError, data: CleanRooms.Types.CreateMembershipOutput) => void): Request<CleanRooms.Types.CreateMembershipOutput, AWSError>;
|
78
|
+
/**
|
79
|
+
* Deletes an analysis template.
|
80
|
+
*/
|
81
|
+
deleteAnalysisTemplate(params: CleanRooms.Types.DeleteAnalysisTemplateInput, callback?: (err: AWSError, data: CleanRooms.Types.DeleteAnalysisTemplateOutput) => void): Request<CleanRooms.Types.DeleteAnalysisTemplateOutput, AWSError>;
|
82
|
+
/**
|
83
|
+
* Deletes an analysis template.
|
84
|
+
*/
|
85
|
+
deleteAnalysisTemplate(callback?: (err: AWSError, data: CleanRooms.Types.DeleteAnalysisTemplateOutput) => void): Request<CleanRooms.Types.DeleteAnalysisTemplateOutput, AWSError>;
|
62
86
|
/**
|
63
87
|
* Deletes a collaboration. It can only be called by the collaboration owner.
|
64
88
|
*/
|
@@ -107,6 +131,14 @@ declare class CleanRooms extends Service {
|
|
107
131
|
* Deletes a specified membership. All resources under a membership must be deleted.
|
108
132
|
*/
|
109
133
|
deleteMembership(callback?: (err: AWSError, data: CleanRooms.Types.DeleteMembershipOutput) => void): Request<CleanRooms.Types.DeleteMembershipOutput, AWSError>;
|
134
|
+
/**
|
135
|
+
* Retrieves an analysis template.
|
136
|
+
*/
|
137
|
+
getAnalysisTemplate(params: CleanRooms.Types.GetAnalysisTemplateInput, callback?: (err: AWSError, data: CleanRooms.Types.GetAnalysisTemplateOutput) => void): Request<CleanRooms.Types.GetAnalysisTemplateOutput, AWSError>;
|
138
|
+
/**
|
139
|
+
* Retrieves an analysis template.
|
140
|
+
*/
|
141
|
+
getAnalysisTemplate(callback?: (err: AWSError, data: CleanRooms.Types.GetAnalysisTemplateOutput) => void): Request<CleanRooms.Types.GetAnalysisTemplateOutput, AWSError>;
|
110
142
|
/**
|
111
143
|
* Returns metadata about a collaboration.
|
112
144
|
*/
|
@@ -115,6 +147,14 @@ declare class CleanRooms extends Service {
|
|
115
147
|
* Returns metadata about a collaboration.
|
116
148
|
*/
|
117
149
|
getCollaboration(callback?: (err: AWSError, data: CleanRooms.Types.GetCollaborationOutput) => void): Request<CleanRooms.Types.GetCollaborationOutput, AWSError>;
|
150
|
+
/**
|
151
|
+
* Retrieves an analysis template within a collaboration.
|
152
|
+
*/
|
153
|
+
getCollaborationAnalysisTemplate(params: CleanRooms.Types.GetCollaborationAnalysisTemplateInput, callback?: (err: AWSError, data: CleanRooms.Types.GetCollaborationAnalysisTemplateOutput) => void): Request<CleanRooms.Types.GetCollaborationAnalysisTemplateOutput, AWSError>;
|
154
|
+
/**
|
155
|
+
* Retrieves an analysis template within a collaboration.
|
156
|
+
*/
|
157
|
+
getCollaborationAnalysisTemplate(callback?: (err: AWSError, data: CleanRooms.Types.GetCollaborationAnalysisTemplateOutput) => void): Request<CleanRooms.Types.GetCollaborationAnalysisTemplateOutput, AWSError>;
|
118
158
|
/**
|
119
159
|
* Retrieves a configured table.
|
120
160
|
*/
|
@@ -171,6 +211,22 @@ declare class CleanRooms extends Service {
|
|
171
211
|
* Retrieves a schema analysis rule.
|
172
212
|
*/
|
173
213
|
getSchemaAnalysisRule(callback?: (err: AWSError, data: CleanRooms.Types.GetSchemaAnalysisRuleOutput) => void): Request<CleanRooms.Types.GetSchemaAnalysisRuleOutput, AWSError>;
|
214
|
+
/**
|
215
|
+
* Lists analysis templates that the caller owns.
|
216
|
+
*/
|
217
|
+
listAnalysisTemplates(params: CleanRooms.Types.ListAnalysisTemplatesInput, callback?: (err: AWSError, data: CleanRooms.Types.ListAnalysisTemplatesOutput) => void): Request<CleanRooms.Types.ListAnalysisTemplatesOutput, AWSError>;
|
218
|
+
/**
|
219
|
+
* Lists analysis templates that the caller owns.
|
220
|
+
*/
|
221
|
+
listAnalysisTemplates(callback?: (err: AWSError, data: CleanRooms.Types.ListAnalysisTemplatesOutput) => void): Request<CleanRooms.Types.ListAnalysisTemplatesOutput, AWSError>;
|
222
|
+
/**
|
223
|
+
* Lists analysis templates within a collaboration.
|
224
|
+
*/
|
225
|
+
listCollaborationAnalysisTemplates(params: CleanRooms.Types.ListCollaborationAnalysisTemplatesInput, callback?: (err: AWSError, data: CleanRooms.Types.ListCollaborationAnalysisTemplatesOutput) => void): Request<CleanRooms.Types.ListCollaborationAnalysisTemplatesOutput, AWSError>;
|
226
|
+
/**
|
227
|
+
* Lists analysis templates within a collaboration.
|
228
|
+
*/
|
229
|
+
listCollaborationAnalysisTemplates(callback?: (err: AWSError, data: CleanRooms.Types.ListCollaborationAnalysisTemplatesOutput) => void): Request<CleanRooms.Types.ListCollaborationAnalysisTemplatesOutput, AWSError>;
|
174
230
|
/**
|
175
231
|
* Lists collaborations the caller owns, is active in, or has been invited to.
|
176
232
|
*/
|
@@ -259,6 +315,14 @@ declare class CleanRooms extends Service {
|
|
259
315
|
* Removes a tag or list of tags from a resource.
|
260
316
|
*/
|
261
317
|
untagResource(callback?: (err: AWSError, data: CleanRooms.Types.UntagResourceOutput) => void): Request<CleanRooms.Types.UntagResourceOutput, AWSError>;
|
318
|
+
/**
|
319
|
+
* Updates the analysis template metadata.
|
320
|
+
*/
|
321
|
+
updateAnalysisTemplate(params: CleanRooms.Types.UpdateAnalysisTemplateInput, callback?: (err: AWSError, data: CleanRooms.Types.UpdateAnalysisTemplateOutput) => void): Request<CleanRooms.Types.UpdateAnalysisTemplateOutput, AWSError>;
|
322
|
+
/**
|
323
|
+
* Updates the analysis template metadata.
|
324
|
+
*/
|
325
|
+
updateAnalysisTemplate(callback?: (err: AWSError, data: CleanRooms.Types.UpdateAnalysisTemplateOutput) => void): Request<CleanRooms.Types.UpdateAnalysisTemplateOutput, AWSError>;
|
262
326
|
/**
|
263
327
|
* Updates collaboration metadata and can only be called by the collaboration owner.
|
264
328
|
*/
|
@@ -340,14 +404,30 @@ declare namespace CleanRooms {
|
|
340
404
|
export type AggregationConstraints = AggregationConstraint[];
|
341
405
|
export type AggregationType = "COUNT_DISTINCT"|string;
|
342
406
|
export type AllowedColumnList = ColumnName[];
|
407
|
+
export type AnalysisFormat = "SQL"|string;
|
343
408
|
export type AnalysisMethod = "DIRECT_QUERY"|string;
|
409
|
+
export interface AnalysisParameter {
|
410
|
+
/**
|
411
|
+
* The name of the parameter. The name must use only alphanumeric, underscore (_), or hyphen (-) characters but cannot start or end with a hyphen.
|
412
|
+
*/
|
413
|
+
name: ParameterName;
|
414
|
+
/**
|
415
|
+
* The type of parameter.
|
416
|
+
*/
|
417
|
+
type: ParameterType;
|
418
|
+
/**
|
419
|
+
* Optional. The default value that is applied in the analysis template. The member who can query can override this value in the query editor.
|
420
|
+
*/
|
421
|
+
defaultValue?: ParameterValue;
|
422
|
+
}
|
423
|
+
export type AnalysisParameterList = AnalysisParameter[];
|
344
424
|
export interface AnalysisRule {
|
345
425
|
/**
|
346
426
|
* The unique ID for the associated collaboration.
|
347
427
|
*/
|
348
428
|
collaborationId: CollaborationIdentifier;
|
349
429
|
/**
|
350
|
-
* The type of analysis rule.
|
430
|
+
* The type of analysis rule.
|
351
431
|
*/
|
352
432
|
type: AnalysisRuleType;
|
353
433
|
/**
|
@@ -400,13 +480,25 @@ declare namespace CleanRooms {
|
|
400
480
|
export type AnalysisRuleAggregationAggregateColumnsList = AggregateColumn[];
|
401
481
|
export type AnalysisRuleColumnList = AnalysisRuleColumnName[];
|
402
482
|
export type AnalysisRuleColumnName = string;
|
483
|
+
export interface AnalysisRuleCustom {
|
484
|
+
/**
|
485
|
+
* The analysis templates that are allowed by the custom analysis rule.
|
486
|
+
*/
|
487
|
+
allowedAnalyses: AnalysisRuleCustomAllowedAnalysesList;
|
488
|
+
/**
|
489
|
+
* The Amazon Web Services accounts that are allowed to query by the custom analysis rule. Required when allowedAnalyses is ANY_QUERY.
|
490
|
+
*/
|
491
|
+
allowedAnalysisProviders?: AnalysisRuleCustomAllowedAnalysisProvidersList;
|
492
|
+
}
|
493
|
+
export type AnalysisRuleCustomAllowedAnalysesList = AnalysisTemplateArnOrQueryWildcard[];
|
494
|
+
export type AnalysisRuleCustomAllowedAnalysisProvidersList = AccountId[];
|
403
495
|
export interface AnalysisRuleList {
|
404
496
|
/**
|
405
497
|
* Columns that can be used to join a configured table with the table of the member who can query and other members' configured tables.
|
406
498
|
*/
|
407
499
|
joinColumns: AnalysisRuleListJoinColumnsList;
|
408
500
|
/**
|
409
|
-
*
|
501
|
+
* The logical operators (if any) that are to be used in an INNER JOIN match condition. Default is AND.
|
410
502
|
*/
|
411
503
|
allowedJoinOperators?: JoinOperatorsList;
|
412
504
|
/**
|
@@ -417,7 +509,7 @@ declare namespace CleanRooms {
|
|
417
509
|
export type AnalysisRuleListJoinColumnsList = AnalysisRuleColumnName[];
|
418
510
|
export interface AnalysisRulePolicy {
|
419
511
|
/**
|
420
|
-
* Controls on the query specifications that can be run on configured table
|
512
|
+
* Controls on the query specifications that can be run on configured table.
|
421
513
|
*/
|
422
514
|
v1?: AnalysisRulePolicyV1;
|
423
515
|
}
|
@@ -430,9 +522,166 @@ declare namespace CleanRooms {
|
|
430
522
|
* Analysis rule type that enables only aggregation queries on a configured table.
|
431
523
|
*/
|
432
524
|
aggregation?: AnalysisRuleAggregation;
|
525
|
+
/**
|
526
|
+
* Analysis rule type that enables custom SQL queries on a configured table.
|
527
|
+
*/
|
528
|
+
custom?: AnalysisRuleCustom;
|
433
529
|
}
|
434
|
-
export type AnalysisRuleType = "AGGREGATION"|"LIST"|string;
|
530
|
+
export type AnalysisRuleType = "AGGREGATION"|"LIST"|"CUSTOM"|string;
|
435
531
|
export type AnalysisRuleTypeList = AnalysisRuleType[];
|
532
|
+
export interface AnalysisSchema {
|
533
|
+
/**
|
534
|
+
* The tables referenced in the analysis schema.
|
535
|
+
*/
|
536
|
+
referencedTables?: QueryTables;
|
537
|
+
}
|
538
|
+
export interface AnalysisSource {
|
539
|
+
/**
|
540
|
+
* The query text.
|
541
|
+
*/
|
542
|
+
text?: AnalysisTemplateText;
|
543
|
+
}
|
544
|
+
export interface AnalysisTemplate {
|
545
|
+
/**
|
546
|
+
* The identifier for the analysis template.
|
547
|
+
*/
|
548
|
+
id: AnalysisTemplateIdentifier;
|
549
|
+
/**
|
550
|
+
* The Amazon Resource Name (ARN) of the analysis template.
|
551
|
+
*/
|
552
|
+
arn: AnalysisTemplateArn;
|
553
|
+
/**
|
554
|
+
* The unique ID for the associated collaboration of the analysis template.
|
555
|
+
*/
|
556
|
+
collaborationId: UUID;
|
557
|
+
/**
|
558
|
+
* The unique ARN for the analysis template’s associated collaboration.
|
559
|
+
*/
|
560
|
+
collaborationArn: CollaborationArn;
|
561
|
+
/**
|
562
|
+
* The identifier of a member who created the analysis template.
|
563
|
+
*/
|
564
|
+
membershipId: UUID;
|
565
|
+
/**
|
566
|
+
* The Amazon Resource Name (ARN) of the member who created the analysis template.
|
567
|
+
*/
|
568
|
+
membershipArn: MembershipArn;
|
569
|
+
/**
|
570
|
+
* The description of the analysis template.
|
571
|
+
*/
|
572
|
+
description?: ResourceDescription;
|
573
|
+
/**
|
574
|
+
* The name of the analysis template.
|
575
|
+
*/
|
576
|
+
name: ResourceAlias;
|
577
|
+
/**
|
578
|
+
* The time that the analysis template was created.
|
579
|
+
*/
|
580
|
+
createTime: Timestamp;
|
581
|
+
/**
|
582
|
+
* The time that the analysis template was last updated.
|
583
|
+
*/
|
584
|
+
updateTime: Timestamp;
|
585
|
+
/**
|
586
|
+
* The entire schema object.
|
587
|
+
*/
|
588
|
+
schema: AnalysisSchema;
|
589
|
+
/**
|
590
|
+
* The format of the analysis template.
|
591
|
+
*/
|
592
|
+
format: AnalysisFormat;
|
593
|
+
/**
|
594
|
+
* The source of the analysis template.
|
595
|
+
*/
|
596
|
+
source: AnalysisSource;
|
597
|
+
/**
|
598
|
+
* The parameters of the analysis template.
|
599
|
+
*/
|
600
|
+
analysisParameters?: AnalysisParameterList;
|
601
|
+
}
|
602
|
+
export type AnalysisTemplateArn = string;
|
603
|
+
export type AnalysisTemplateArnList = AnalysisTemplateArn[];
|
604
|
+
export type AnalysisTemplateArnOrQueryWildcard = string;
|
605
|
+
export type AnalysisTemplateIdentifier = string;
|
606
|
+
export interface AnalysisTemplateSummary {
|
607
|
+
/**
|
608
|
+
* The Amazon Resource Name (ARN) of the analysis template.
|
609
|
+
*/
|
610
|
+
arn: AnalysisTemplateArn;
|
611
|
+
/**
|
612
|
+
* The time that the analysis template summary was created.
|
613
|
+
*/
|
614
|
+
createTime: Timestamp;
|
615
|
+
/**
|
616
|
+
* The identifier of the analysis template.
|
617
|
+
*/
|
618
|
+
id: AnalysisTemplateIdentifier;
|
619
|
+
/**
|
620
|
+
* The name of the analysis template.
|
621
|
+
*/
|
622
|
+
name: ResourceAlias;
|
623
|
+
/**
|
624
|
+
* The time that the analysis template summary was last updated.
|
625
|
+
*/
|
626
|
+
updateTime: Timestamp;
|
627
|
+
/**
|
628
|
+
* The Amazon Resource Name (ARN) of the member who created the analysis template.
|
629
|
+
*/
|
630
|
+
membershipArn: MembershipArn;
|
631
|
+
/**
|
632
|
+
* The identifier for a membership resource.
|
633
|
+
*/
|
634
|
+
membershipId: UUID;
|
635
|
+
/**
|
636
|
+
* The unique ARN for the analysis template summary’s associated collaboration.
|
637
|
+
*/
|
638
|
+
collaborationArn: CollaborationArn;
|
639
|
+
/**
|
640
|
+
* A unique identifier for the collaboration that the analysis template summary belongs to. Currently accepts collaboration ID.
|
641
|
+
*/
|
642
|
+
collaborationId: UUID;
|
643
|
+
/**
|
644
|
+
* The description of the analysis template.
|
645
|
+
*/
|
646
|
+
description?: ResourceDescription;
|
647
|
+
}
|
648
|
+
export type AnalysisTemplateSummaryList = AnalysisTemplateSummary[];
|
649
|
+
export type AnalysisTemplateText = string;
|
650
|
+
export interface BatchGetCollaborationAnalysisTemplateError {
|
651
|
+
/**
|
652
|
+
* The Amazon Resource Name (ARN) of the analysis template.
|
653
|
+
*/
|
654
|
+
arn: AnalysisTemplateArn;
|
655
|
+
/**
|
656
|
+
* An error code for the error.
|
657
|
+
*/
|
658
|
+
code: String;
|
659
|
+
/**
|
660
|
+
* A description of why the call failed.
|
661
|
+
*/
|
662
|
+
message: String;
|
663
|
+
}
|
664
|
+
export type BatchGetCollaborationAnalysisTemplateErrorList = BatchGetCollaborationAnalysisTemplateError[];
|
665
|
+
export interface BatchGetCollaborationAnalysisTemplateInput {
|
666
|
+
/**
|
667
|
+
* A unique identifier for the collaboration that the analysis templates belong to. Currently accepts collaboration ID.
|
668
|
+
*/
|
669
|
+
collaborationIdentifier: CollaborationIdentifier;
|
670
|
+
/**
|
671
|
+
* The Amazon Resource Name (ARN) associated with the analysis template within a collaboration.
|
672
|
+
*/
|
673
|
+
analysisTemplateArns: AnalysisTemplateArnList;
|
674
|
+
}
|
675
|
+
export interface BatchGetCollaborationAnalysisTemplateOutput {
|
676
|
+
/**
|
677
|
+
* The retrieved list of analysis templates within a collaboration.
|
678
|
+
*/
|
679
|
+
collaborationAnalysisTemplates: CollaborationAnalysisTemplateList;
|
680
|
+
/**
|
681
|
+
* Error reasons for collaboration analysis templates that could not be retrieved. One error is returned for every collaboration analysis template that could not be retrieved.
|
682
|
+
*/
|
683
|
+
errors: BatchGetCollaborationAnalysisTemplateErrorList;
|
684
|
+
}
|
436
685
|
export interface BatchGetSchemaError {
|
437
686
|
/**
|
438
687
|
* An error name for the error.
|
@@ -524,6 +773,100 @@ declare namespace CleanRooms {
|
|
524
773
|
*/
|
525
774
|
queryLogStatus: CollaborationQueryLogStatus;
|
526
775
|
}
|
776
|
+
export interface CollaborationAnalysisTemplate {
|
777
|
+
/**
|
778
|
+
* The identifier of the analysis template.
|
779
|
+
*/
|
780
|
+
id: AnalysisTemplateIdentifier;
|
781
|
+
/**
|
782
|
+
* The Amazon Resource Name (ARN) of the analysis template.
|
783
|
+
*/
|
784
|
+
arn: AnalysisTemplateArn;
|
785
|
+
/**
|
786
|
+
* A unique identifier for the collaboration that the analysis templates belong to. Currently accepts collaboration ID.
|
787
|
+
*/
|
788
|
+
collaborationId: UUID;
|
789
|
+
/**
|
790
|
+
* The unique ARN for the analysis template’s associated collaboration.
|
791
|
+
*/
|
792
|
+
collaborationArn: CollaborationArn;
|
793
|
+
/**
|
794
|
+
* The description of the analysis template.
|
795
|
+
*/
|
796
|
+
description?: ResourceDescription;
|
797
|
+
/**
|
798
|
+
* The identifier used to reference members of the collaboration. Currently only supports Amazon Web Services account ID.
|
799
|
+
*/
|
800
|
+
creatorAccountId: AccountId;
|
801
|
+
/**
|
802
|
+
* The name of the analysis template.
|
803
|
+
*/
|
804
|
+
name: ResourceAlias;
|
805
|
+
/**
|
806
|
+
* The time that the analysis template within a collaboration was created.
|
807
|
+
*/
|
808
|
+
createTime: Timestamp;
|
809
|
+
/**
|
810
|
+
* The time that the analysis template in the collaboration was last updated.
|
811
|
+
*/
|
812
|
+
updateTime: Timestamp;
|
813
|
+
/**
|
814
|
+
* The entire schema object.
|
815
|
+
*/
|
816
|
+
schema: AnalysisSchema;
|
817
|
+
/**
|
818
|
+
* The format of the analysis template in the collaboration.
|
819
|
+
*/
|
820
|
+
format: AnalysisFormat;
|
821
|
+
/**
|
822
|
+
* The source of the analysis template within a collaboration.
|
823
|
+
*/
|
824
|
+
source: AnalysisSource;
|
825
|
+
/**
|
826
|
+
* The analysis parameters that have been specified in the analysis template.
|
827
|
+
*/
|
828
|
+
analysisParameters?: AnalysisParameterList;
|
829
|
+
}
|
830
|
+
export type CollaborationAnalysisTemplateList = CollaborationAnalysisTemplate[];
|
831
|
+
export interface CollaborationAnalysisTemplateSummary {
|
832
|
+
/**
|
833
|
+
* The Amazon Resource Name (ARN) of the analysis template.
|
834
|
+
*/
|
835
|
+
arn: AnalysisTemplateArn;
|
836
|
+
/**
|
837
|
+
* The time that the summary of the analysis template in a collaboration was created.
|
838
|
+
*/
|
839
|
+
createTime: Timestamp;
|
840
|
+
/**
|
841
|
+
* The identifier of the analysis template.
|
842
|
+
*/
|
843
|
+
id: AnalysisTemplateIdentifier;
|
844
|
+
/**
|
845
|
+
* The name of the analysis template.
|
846
|
+
*/
|
847
|
+
name: ResourceAlias;
|
848
|
+
/**
|
849
|
+
* The time that the summary of the analysis template in the collaboration was last updated.
|
850
|
+
*/
|
851
|
+
updateTime: Timestamp;
|
852
|
+
/**
|
853
|
+
* The unique ARN for the analysis template’s associated collaboration.
|
854
|
+
*/
|
855
|
+
collaborationArn: CollaborationArn;
|
856
|
+
/**
|
857
|
+
* A unique identifier for the collaboration that the analysis templates belong to. Currently accepts collaboration ID.
|
858
|
+
*/
|
859
|
+
collaborationId: UUID;
|
860
|
+
/**
|
861
|
+
* The identifier used to reference members of the collaboration. Currently only supports Amazon Web Services account ID.
|
862
|
+
*/
|
863
|
+
creatorAccountId: AccountId;
|
864
|
+
/**
|
865
|
+
* The description of the analysis template.
|
866
|
+
*/
|
867
|
+
description?: ResourceDescription;
|
868
|
+
}
|
869
|
+
export type CollaborationAnalysisTemplateSummaryList = CollaborationAnalysisTemplateSummary[];
|
527
870
|
export type CollaborationArn = string;
|
528
871
|
export type CollaborationDescription = string;
|
529
872
|
export type CollaborationIdentifier = string;
|
@@ -615,7 +958,7 @@ declare namespace CleanRooms {
|
|
615
958
|
*/
|
616
959
|
updateTime: Timestamp;
|
617
960
|
/**
|
618
|
-
* The types of analysis rules associated with this configured table.
|
961
|
+
* The types of analysis rules associated with this configured table. Currently, only one analysis rule may be associated with a configured table.
|
619
962
|
*/
|
620
963
|
analysisRuleTypes: ConfiguredTableAnalysisRuleTypeList;
|
621
964
|
/**
|
@@ -641,7 +984,7 @@ declare namespace CleanRooms {
|
|
641
984
|
*/
|
642
985
|
policy: ConfiguredTableAnalysisRulePolicy;
|
643
986
|
/**
|
644
|
-
* The type of configured table analysis rule.
|
987
|
+
* The type of configured table analysis rule.
|
645
988
|
*/
|
646
989
|
type: ConfiguredTableAnalysisRuleType;
|
647
990
|
/**
|
@@ -668,8 +1011,9 @@ declare namespace CleanRooms {
|
|
668
1011
|
* Analysis rule type that enables only aggregation queries on a configured table.
|
669
1012
|
*/
|
670
1013
|
aggregation?: AnalysisRuleAggregation;
|
1014
|
+
custom?: AnalysisRuleCustom;
|
671
1015
|
}
|
672
|
-
export type ConfiguredTableAnalysisRuleType = "AGGREGATION"|"LIST"|string;
|
1016
|
+
export type ConfiguredTableAnalysisRuleType = "AGGREGATION"|"LIST"|"CUSTOM"|string;
|
673
1017
|
export type ConfiguredTableAnalysisRuleTypeList = ConfiguredTableAnalysisRuleType[];
|
674
1018
|
export type ConfiguredTableArn = string;
|
675
1019
|
export interface ConfiguredTableAssociation {
|
@@ -787,6 +1131,42 @@ declare namespace CleanRooms {
|
|
787
1131
|
analysisMethod: AnalysisMethod;
|
788
1132
|
}
|
789
1133
|
export type ConfiguredTableSummaryList = ConfiguredTableSummary[];
|
1134
|
+
export interface CreateAnalysisTemplateInput {
|
1135
|
+
/**
|
1136
|
+
* The description of the analysis template.
|
1137
|
+
*/
|
1138
|
+
description?: ResourceDescription;
|
1139
|
+
/**
|
1140
|
+
* The identifier for a membership resource.
|
1141
|
+
*/
|
1142
|
+
membershipIdentifier: MembershipIdentifier;
|
1143
|
+
/**
|
1144
|
+
* The name of the analysis template.
|
1145
|
+
*/
|
1146
|
+
name: TableAlias;
|
1147
|
+
/**
|
1148
|
+
* The format of the analysis template.
|
1149
|
+
*/
|
1150
|
+
format: AnalysisFormat;
|
1151
|
+
/**
|
1152
|
+
* The information in the analysis template. Currently supports text, the query text for the analysis template.
|
1153
|
+
*/
|
1154
|
+
source: AnalysisSource;
|
1155
|
+
/**
|
1156
|
+
* 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.
|
1157
|
+
*/
|
1158
|
+
tags?: TagMap;
|
1159
|
+
/**
|
1160
|
+
* The parameters of the analysis template.
|
1161
|
+
*/
|
1162
|
+
analysisParameters?: AnalysisParameterList;
|
1163
|
+
}
|
1164
|
+
export interface CreateAnalysisTemplateOutput {
|
1165
|
+
/**
|
1166
|
+
* The analysis template.
|
1167
|
+
*/
|
1168
|
+
analysisTemplate: AnalysisTemplate;
|
1169
|
+
}
|
790
1170
|
export interface CreateCollaborationInput {
|
791
1171
|
/**
|
792
1172
|
* A list of initial members, not including the creator. This list is immutable.
|
@@ -833,7 +1213,7 @@ declare namespace CleanRooms {
|
|
833
1213
|
*/
|
834
1214
|
configuredTableIdentifier: ConfiguredTableIdentifier;
|
835
1215
|
/**
|
836
|
-
* The type of analysis rule.
|
1216
|
+
* The type of analysis rule.
|
837
1217
|
*/
|
838
1218
|
analysisRuleType: ConfiguredTableAnalysisRuleType;
|
839
1219
|
/**
|
@@ -949,6 +1329,18 @@ declare namespace CleanRooms {
|
|
949
1329
|
*/
|
950
1330
|
preserveNulls: Boolean;
|
951
1331
|
}
|
1332
|
+
export interface DeleteAnalysisTemplateInput {
|
1333
|
+
/**
|
1334
|
+
* The identifier for a membership resource.
|
1335
|
+
*/
|
1336
|
+
membershipIdentifier: MembershipIdentifier;
|
1337
|
+
/**
|
1338
|
+
* The identifier for the analysis template resource.
|
1339
|
+
*/
|
1340
|
+
analysisTemplateIdentifier: AnalysisTemplateIdentifier;
|
1341
|
+
}
|
1342
|
+
export interface DeleteAnalysisTemplateOutput {
|
1343
|
+
}
|
952
1344
|
export interface DeleteCollaborationInput {
|
953
1345
|
/**
|
954
1346
|
* The identifier for the collaboration.
|
@@ -1011,6 +1403,38 @@ declare namespace CleanRooms {
|
|
1011
1403
|
}
|
1012
1404
|
export type DisplayName = string;
|
1013
1405
|
export type FilterableMemberStatus = "INVITED"|"ACTIVE"|string;
|
1406
|
+
export interface GetAnalysisTemplateInput {
|
1407
|
+
/**
|
1408
|
+
* The identifier for a membership resource.
|
1409
|
+
*/
|
1410
|
+
membershipIdentifier: MembershipIdentifier;
|
1411
|
+
/**
|
1412
|
+
* The identifier for the analysis template resource.
|
1413
|
+
*/
|
1414
|
+
analysisTemplateIdentifier: AnalysisTemplateIdentifier;
|
1415
|
+
}
|
1416
|
+
export interface GetAnalysisTemplateOutput {
|
1417
|
+
/**
|
1418
|
+
* The analysis template.
|
1419
|
+
*/
|
1420
|
+
analysisTemplate: AnalysisTemplate;
|
1421
|
+
}
|
1422
|
+
export interface GetCollaborationAnalysisTemplateInput {
|
1423
|
+
/**
|
1424
|
+
* A unique identifier for the collaboration that the analysis templates belong to. Currently accepts collaboration ID.
|
1425
|
+
*/
|
1426
|
+
collaborationIdentifier: CollaborationIdentifier;
|
1427
|
+
/**
|
1428
|
+
* The Amazon Resource Name (ARN) associated with the analysis template within a collaboration.
|
1429
|
+
*/
|
1430
|
+
analysisTemplateArn: AnalysisTemplateArn;
|
1431
|
+
}
|
1432
|
+
export interface GetCollaborationAnalysisTemplateOutput {
|
1433
|
+
/**
|
1434
|
+
* The analysis template within a collaboration.
|
1435
|
+
*/
|
1436
|
+
collaborationAnalysisTemplate: CollaborationAnalysisTemplate;
|
1437
|
+
}
|
1014
1438
|
export interface GetCollaborationInput {
|
1015
1439
|
/**
|
1016
1440
|
* The identifier for the collaboration.
|
@@ -1147,6 +1571,54 @@ declare namespace CleanRooms {
|
|
1147
1571
|
export type JoinOperatorsList = JoinOperator[];
|
1148
1572
|
export type JoinRequiredOption = "QUERY_RUNNER"|string;
|
1149
1573
|
export type KeyPrefix = string;
|
1574
|
+
export interface ListAnalysisTemplatesInput {
|
1575
|
+
/**
|
1576
|
+
* The identifier for a membership resource.
|
1577
|
+
*/
|
1578
|
+
membershipIdentifier: MembershipIdentifier;
|
1579
|
+
/**
|
1580
|
+
* The token value retrieved from a previous call to access the next page of results.
|
1581
|
+
*/
|
1582
|
+
nextToken?: PaginationToken;
|
1583
|
+
/**
|
1584
|
+
* The maximum size of the results that is returned per call.
|
1585
|
+
*/
|
1586
|
+
maxResults?: MaxResults;
|
1587
|
+
}
|
1588
|
+
export interface ListAnalysisTemplatesOutput {
|
1589
|
+
/**
|
1590
|
+
* The token value retrieved from a previous call to access the next page of results.
|
1591
|
+
*/
|
1592
|
+
nextToken?: PaginationToken;
|
1593
|
+
/**
|
1594
|
+
* Lists analysis template metadata.
|
1595
|
+
*/
|
1596
|
+
analysisTemplateSummaries: AnalysisTemplateSummaryList;
|
1597
|
+
}
|
1598
|
+
export interface ListCollaborationAnalysisTemplatesInput {
|
1599
|
+
/**
|
1600
|
+
* A unique identifier for the collaboration that the analysis templates belong to. Currently accepts collaboration ID.
|
1601
|
+
*/
|
1602
|
+
collaborationIdentifier: CollaborationIdentifier;
|
1603
|
+
/**
|
1604
|
+
* The token value retrieved from a previous call to access the next page of results.
|
1605
|
+
*/
|
1606
|
+
nextToken?: PaginationToken;
|
1607
|
+
/**
|
1608
|
+
* The maximum size of the results that is returned per call.
|
1609
|
+
*/
|
1610
|
+
maxResults?: MaxResults;
|
1611
|
+
}
|
1612
|
+
export interface ListCollaborationAnalysisTemplatesOutput {
|
1613
|
+
/**
|
1614
|
+
* The token value retrieved from a previous call to access the next page of results.
|
1615
|
+
*/
|
1616
|
+
nextToken?: PaginationToken;
|
1617
|
+
/**
|
1618
|
+
* The metadata of the analysis template within a collaboration.
|
1619
|
+
*/
|
1620
|
+
collaborationAnalysisTemplateSummaries: CollaborationAnalysisTemplateSummaryList;
|
1621
|
+
}
|
1150
1622
|
export interface ListCollaborationsInput {
|
1151
1623
|
/**
|
1152
1624
|
* The token value retrieved from a previous call to access the next page of results.
|
@@ -1488,6 +1960,10 @@ declare namespace CleanRooms {
|
|
1488
1960
|
}
|
1489
1961
|
export type MembershipSummaryList = MembershipSummary[];
|
1490
1962
|
export type PaginationToken = string;
|
1963
|
+
export type ParameterMap = {[key: string]: ParameterValue};
|
1964
|
+
export type ParameterName = string;
|
1965
|
+
export type ParameterType = "SMALLINT"|"INTEGER"|"BIGINT"|"DECIMAL"|"REAL"|"DOUBLE_PRECISION"|"BOOLEAN"|"CHAR"|"VARCHAR"|"DATE"|"TIMESTAMP"|"TIMESTAMPTZ"|"TIME"|"TIMETZ"|"VARBYTE"|string;
|
1966
|
+
export type ParameterValue = string;
|
1491
1967
|
export interface ProtectedQuery {
|
1492
1968
|
/**
|
1493
1969
|
* The identifier for a protected query instance.
|
@@ -1591,6 +2067,14 @@ declare namespace CleanRooms {
|
|
1591
2067
|
* The query string to be submitted.
|
1592
2068
|
*/
|
1593
2069
|
queryString?: ProtectedQuerySQLParametersQueryStringString;
|
2070
|
+
/**
|
2071
|
+
* The Amazon Resource Name (ARN) associated with the analysis template within a collaboration.
|
2072
|
+
*/
|
2073
|
+
analysisTemplateArn?: AnalysisTemplateArn;
|
2074
|
+
/**
|
2075
|
+
* The protected query SQL parameters.
|
2076
|
+
*/
|
2077
|
+
parameters?: ParameterMap;
|
1594
2078
|
}
|
1595
2079
|
export type ProtectedQuerySQLParametersQueryStringString = string;
|
1596
2080
|
export interface ProtectedQueryStatistics {
|
@@ -1624,6 +2108,9 @@ declare namespace CleanRooms {
|
|
1624
2108
|
}
|
1625
2109
|
export type ProtectedQuerySummaryList = ProtectedQuerySummary[];
|
1626
2110
|
export type ProtectedQueryType = "SQL"|string;
|
2111
|
+
export type QueryTables = TableAlias[];
|
2112
|
+
export type ResourceAlias = string;
|
2113
|
+
export type ResourceDescription = string;
|
1627
2114
|
export type ResultFormat = "CSV"|"PARQUET"|string;
|
1628
2115
|
export type RoleArn = string;
|
1629
2116
|
export type ScalarFunctions = "TRUNC"|"ABS"|"CEILING"|"FLOOR"|"LN"|"LOG"|"ROUND"|"SQRT"|"CAST"|"LOWER"|"RTRIM"|"UPPER"|"COALESCE"|string;
|
@@ -1638,7 +2125,7 @@ declare namespace CleanRooms {
|
|
1638
2125
|
*/
|
1639
2126
|
partitionKeys: ColumnList;
|
1640
2127
|
/**
|
1641
|
-
* The analysis rule types associated with the schema.
|
2128
|
+
* The analysis rule types associated with the schema. Currently, only one entry is present.
|
1642
2129
|
*/
|
1643
2130
|
analysisRuleTypes: AnalysisRuleTypeList;
|
1644
2131
|
/**
|
@@ -1784,6 +2271,26 @@ declare namespace CleanRooms {
|
|
1784
2271
|
}
|
1785
2272
|
export interface UntagResourceOutput {
|
1786
2273
|
}
|
2274
|
+
export interface UpdateAnalysisTemplateInput {
|
2275
|
+
/**
|
2276
|
+
* The identifier for a membership resource.
|
2277
|
+
*/
|
2278
|
+
membershipIdentifier: MembershipIdentifier;
|
2279
|
+
/**
|
2280
|
+
* The identifier for the analysis template resource.
|
2281
|
+
*/
|
2282
|
+
analysisTemplateIdentifier: AnalysisTemplateIdentifier;
|
2283
|
+
/**
|
2284
|
+
* A new description for the analysis template.
|
2285
|
+
*/
|
2286
|
+
description?: ResourceDescription;
|
2287
|
+
}
|
2288
|
+
export interface UpdateAnalysisTemplateOutput {
|
2289
|
+
/**
|
2290
|
+
* The analysis template.
|
2291
|
+
*/
|
2292
|
+
analysisTemplate: AnalysisTemplate;
|
2293
|
+
}
|
1787
2294
|
export interface UpdateCollaborationInput {
|
1788
2295
|
/**
|
1789
2296
|
* The identifier for the collaboration.
|