@aws-sdk/client-cleanrooms 3.934.0 → 3.936.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/dist-cjs/index.js +278 -391
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +277 -0
- package/dist-es/models/errors.js +105 -0
- package/dist-es/models/models_0.js +5 -349
- package/dist-es/models/models_1.js +0 -38
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/commands/CreateMembershipCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMembershipCommand.d.ts +1 -1
- package/dist-types/commands/GetMembershipCommand.d.ts +1 -1
- package/dist-types/commands/GetProtectedJobCommand.d.ts +1 -1
- package/dist-types/commands/GetProtectedQueryCommand.d.ts +2 -1
- package/dist-types/index.d.ts +4 -1
- package/dist-types/models/enums.d.ts +613 -0
- package/dist-types/models/errors.d.ts +137 -0
- package/dist-types/models/models_0.d.ts +856 -652
- package/dist-types/models/models_1.d.ts +2 -953
- package/dist-types/ts3.4/commands/CreateMembershipCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteMembershipCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetMembershipCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetProtectedJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetProtectedQueryCommand.d.ts +2 -4
- package/dist-types/ts3.4/index.d.ts +4 -1
- package/dist-types/ts3.4/models/enums.d.ts +354 -0
- package/dist-types/ts3.4/models/errors.d.ts +66 -0
- package/dist-types/ts3.4/models/models_0.d.ts +328 -364
- package/dist-types/ts3.4/models/models_1.d.ts +23 -341
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -2
- package/dist-types/models/index.d.ts +0 -2
- package/dist-types/ts3.4/models/index.d.ts +0 -2
|
@@ -1,20 +1,45 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
1
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
2
|
+
import {
|
|
3
|
+
AccessBudgetType,
|
|
4
|
+
AdditionalAnalyses,
|
|
5
|
+
AnalysisFormat,
|
|
6
|
+
AnalysisMethod,
|
|
7
|
+
AnalysisRuleType,
|
|
8
|
+
AnalysisTemplateValidationStatus,
|
|
9
|
+
AnalysisTemplateValidationType,
|
|
10
|
+
AnalysisType,
|
|
11
|
+
AnalyticsEngine,
|
|
12
|
+
AutoApprovedChangeType,
|
|
13
|
+
AutoRefreshMode,
|
|
14
|
+
ChangeRequestStatus,
|
|
15
|
+
ChangeSpecificationType,
|
|
16
|
+
ChangeType,
|
|
17
|
+
CollaborationJobLogStatus,
|
|
18
|
+
CollaborationQueryLogStatus,
|
|
19
|
+
CommercialRegion,
|
|
20
|
+
ConfiguredTableAnalysisRuleType,
|
|
21
|
+
ConfiguredTableAssociationAnalysisRuleType,
|
|
22
|
+
CustomMLMemberAbility,
|
|
23
|
+
DifferentialPrivacyAggregationType,
|
|
24
|
+
ErrorMessageType,
|
|
25
|
+
IdNamespaceType,
|
|
26
|
+
JobType,
|
|
27
|
+
MemberAbility,
|
|
28
|
+
MembershipJobLogStatus,
|
|
29
|
+
MembershipQueryLogStatus,
|
|
30
|
+
ParameterType,
|
|
31
|
+
PrivacyBudgetTemplateAutoRefresh,
|
|
32
|
+
PrivacyBudgetType,
|
|
33
|
+
ProtectedJobStatus,
|
|
34
|
+
ProtectedJobWorkerComputeType,
|
|
35
|
+
SchemaConfiguration,
|
|
36
|
+
SchemaStatus,
|
|
37
|
+
SchemaStatusReasonCode,
|
|
38
|
+
SchemaType,
|
|
39
|
+
SelectedAnalysisMethod,
|
|
40
|
+
SupportedS3Region,
|
|
41
|
+
WorkerComputeType,
|
|
42
|
+
} from "./enums";
|
|
18
43
|
export interface AccessBudgetDetails {
|
|
19
44
|
startTime: Date | undefined;
|
|
20
45
|
endTime?: Date | undefined;
|
|
@@ -49,21 +74,6 @@ export declare const AccessDeniedExceptionReason: {
|
|
|
49
74
|
};
|
|
50
75
|
export type AccessDeniedExceptionReason =
|
|
51
76
|
(typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
|
|
52
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
53
|
-
readonly name: "AccessDeniedException";
|
|
54
|
-
readonly $fault: "client";
|
|
55
|
-
reason?: AccessDeniedExceptionReason | undefined;
|
|
56
|
-
constructor(
|
|
57
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
58
|
-
);
|
|
59
|
-
}
|
|
60
|
-
export declare const AdditionalAnalyses: {
|
|
61
|
-
readonly ALLOWED: "ALLOWED";
|
|
62
|
-
readonly NOT_ALLOWED: "NOT_ALLOWED";
|
|
63
|
-
readonly REQUIRED: "REQUIRED";
|
|
64
|
-
};
|
|
65
|
-
export type AdditionalAnalyses =
|
|
66
|
-
(typeof AdditionalAnalyses)[keyof typeof AdditionalAnalyses];
|
|
67
77
|
export declare const AggregateFunctionName: {
|
|
68
78
|
readonly AVG: "AVG";
|
|
69
79
|
readonly COUNT: "COUNT";
|
|
@@ -87,87 +97,6 @@ export interface AggregationConstraint {
|
|
|
87
97
|
minimum: number | undefined;
|
|
88
98
|
type: AggregationType | undefined;
|
|
89
99
|
}
|
|
90
|
-
export declare const SupportedS3Region: {
|
|
91
|
-
readonly AF_SOUTH_1: "af-south-1";
|
|
92
|
-
readonly AP_EAST_1: "ap-east-1";
|
|
93
|
-
readonly AP_EAST_2: "ap-east-2";
|
|
94
|
-
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
95
|
-
readonly AP_NORTHEAST_2: "ap-northeast-2";
|
|
96
|
-
readonly AP_NORTHEAST_3: "ap-northeast-3";
|
|
97
|
-
readonly AP_SOUTHEAST_1: "ap-southeast-1";
|
|
98
|
-
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
99
|
-
readonly AP_SOUTHEAST_3: "ap-southeast-3";
|
|
100
|
-
readonly AP_SOUTHEAST_4: "ap-southeast-4";
|
|
101
|
-
readonly AP_SOUTHEAST_5: "ap-southeast-5";
|
|
102
|
-
readonly AP_SOUTHEAST_7: "ap-southeast-7";
|
|
103
|
-
readonly AP_SOUTH_1: "ap-south-1";
|
|
104
|
-
readonly AP_SOUTH_2: "ap-south-2";
|
|
105
|
-
readonly CA_CENTRAL_1: "ca-central-1";
|
|
106
|
-
readonly CA_WEST_1: "ca-west-1";
|
|
107
|
-
readonly EU_CENTRAL_1: "eu-central-1";
|
|
108
|
-
readonly EU_CENTRAL_2: "eu-central-2";
|
|
109
|
-
readonly EU_NORTH_1: "eu-north-1";
|
|
110
|
-
readonly EU_SOUTH_1: "eu-south-1";
|
|
111
|
-
readonly EU_SOUTH_2: "eu-south-2";
|
|
112
|
-
readonly EU_WEST_1: "eu-west-1";
|
|
113
|
-
readonly EU_WEST_2: "eu-west-2";
|
|
114
|
-
readonly EU_WEST_3: "eu-west-3";
|
|
115
|
-
readonly IL_CENTRAL_1: "il-central-1";
|
|
116
|
-
readonly ME_CENTRAL_1: "me-central-1";
|
|
117
|
-
readonly ME_SOUTH_1: "me-south-1";
|
|
118
|
-
readonly MX_CENTRAL_1: "mx-central-1";
|
|
119
|
-
readonly SA_EAST_1: "sa-east-1";
|
|
120
|
-
readonly US_EAST_1: "us-east-1";
|
|
121
|
-
readonly US_EAST_2: "us-east-2";
|
|
122
|
-
readonly US_WEST_1: "us-west-1";
|
|
123
|
-
readonly US_WEST_2: "us-west-2";
|
|
124
|
-
};
|
|
125
|
-
export type SupportedS3Region =
|
|
126
|
-
(typeof SupportedS3Region)[keyof typeof SupportedS3Region];
|
|
127
|
-
export declare const AnalysisFormat: {
|
|
128
|
-
readonly PYSPARK_1_0: "PYSPARK_1_0";
|
|
129
|
-
readonly SQL: "SQL";
|
|
130
|
-
};
|
|
131
|
-
export type AnalysisFormat =
|
|
132
|
-
(typeof AnalysisFormat)[keyof typeof AnalysisFormat];
|
|
133
|
-
export declare const AnalysisMethod: {
|
|
134
|
-
readonly DIRECT_JOB: "DIRECT_JOB";
|
|
135
|
-
readonly DIRECT_QUERY: "DIRECT_QUERY";
|
|
136
|
-
readonly MULTIPLE: "MULTIPLE";
|
|
137
|
-
};
|
|
138
|
-
export type AnalysisMethod =
|
|
139
|
-
(typeof AnalysisMethod)[keyof typeof AnalysisMethod];
|
|
140
|
-
export declare const ParameterType: {
|
|
141
|
-
readonly BIGINT: "BIGINT";
|
|
142
|
-
readonly BINARY: "BINARY";
|
|
143
|
-
readonly BOOLEAN: "BOOLEAN";
|
|
144
|
-
readonly BYTE: "BYTE";
|
|
145
|
-
readonly CHAR: "CHAR";
|
|
146
|
-
readonly CHARACTER: "CHARACTER";
|
|
147
|
-
readonly DATE: "DATE";
|
|
148
|
-
readonly DECIMAL: "DECIMAL";
|
|
149
|
-
readonly DOUBLE: "DOUBLE";
|
|
150
|
-
readonly DOUBLE_PRECISION: "DOUBLE_PRECISION";
|
|
151
|
-
readonly FLOAT: "FLOAT";
|
|
152
|
-
readonly INT: "INT";
|
|
153
|
-
readonly INTEGER: "INTEGER";
|
|
154
|
-
readonly LONG: "LONG";
|
|
155
|
-
readonly NUMERIC: "NUMERIC";
|
|
156
|
-
readonly REAL: "REAL";
|
|
157
|
-
readonly SHORT: "SHORT";
|
|
158
|
-
readonly SMALLINT: "SMALLINT";
|
|
159
|
-
readonly STRING: "STRING";
|
|
160
|
-
readonly TIME: "TIME";
|
|
161
|
-
readonly TIMESTAMP: "TIMESTAMP";
|
|
162
|
-
readonly TIMESTAMPTZ: "TIMESTAMPTZ";
|
|
163
|
-
readonly TIMESTAMP_LTZ: "TIMESTAMP_LTZ";
|
|
164
|
-
readonly TIMESTAMP_NTZ: "TIMESTAMP_NTZ";
|
|
165
|
-
readonly TIMETZ: "TIMETZ";
|
|
166
|
-
readonly TINYINT: "TINYINT";
|
|
167
|
-
readonly VARBYTE: "VARBYTE";
|
|
168
|
-
readonly VARCHAR: "VARCHAR";
|
|
169
|
-
};
|
|
170
|
-
export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
|
|
171
100
|
export interface AnalysisParameter {
|
|
172
101
|
name: string | undefined;
|
|
173
102
|
type: ParameterType | undefined;
|
|
@@ -483,14 +412,6 @@ export declare namespace AnalysisRulePolicy {
|
|
|
483
412
|
_: (name: string, value: any) => T;
|
|
484
413
|
}
|
|
485
414
|
}
|
|
486
|
-
export declare const AnalysisRuleType: {
|
|
487
|
-
readonly AGGREGATION: "AGGREGATION";
|
|
488
|
-
readonly CUSTOM: "CUSTOM";
|
|
489
|
-
readonly ID_MAPPING_TABLE: "ID_MAPPING_TABLE";
|
|
490
|
-
readonly LIST: "LIST";
|
|
491
|
-
};
|
|
492
|
-
export type AnalysisRuleType =
|
|
493
|
-
(typeof AnalysisRuleType)[keyof typeof AnalysisRuleType];
|
|
494
415
|
export interface AnalysisRule {
|
|
495
416
|
collaborationId: string | undefined;
|
|
496
417
|
type: AnalysisRuleType | undefined;
|
|
@@ -568,29 +489,12 @@ export declare namespace AnalysisSourceMetadata {
|
|
|
568
489
|
_: (name: string, value: any) => T;
|
|
569
490
|
}
|
|
570
491
|
}
|
|
571
|
-
export declare const ErrorMessageType: {
|
|
572
|
-
readonly DETAILED: "DETAILED";
|
|
573
|
-
};
|
|
574
|
-
export type ErrorMessageType =
|
|
575
|
-
(typeof ErrorMessageType)[keyof typeof ErrorMessageType];
|
|
576
492
|
export interface ErrorMessageConfiguration {
|
|
577
493
|
type: ErrorMessageType | undefined;
|
|
578
494
|
}
|
|
579
495
|
export interface AnalysisTemplateValidationStatusReason {
|
|
580
496
|
message: string | undefined;
|
|
581
497
|
}
|
|
582
|
-
export declare const AnalysisTemplateValidationStatus: {
|
|
583
|
-
readonly INVALID: "INVALID";
|
|
584
|
-
readonly UNABLE_TO_VALIDATE: "UNABLE_TO_VALIDATE";
|
|
585
|
-
readonly VALID: "VALID";
|
|
586
|
-
};
|
|
587
|
-
export type AnalysisTemplateValidationStatus =
|
|
588
|
-
(typeof AnalysisTemplateValidationStatus)[keyof typeof AnalysisTemplateValidationStatus];
|
|
589
|
-
export declare const AnalysisTemplateValidationType: {
|
|
590
|
-
readonly DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY";
|
|
591
|
-
};
|
|
592
|
-
export type AnalysisTemplateValidationType =
|
|
593
|
-
(typeof AnalysisTemplateValidationType)[keyof typeof AnalysisTemplateValidationType];
|
|
594
498
|
export interface AnalysisTemplateValidationStatusDetail {
|
|
595
499
|
type: AnalysisTemplateValidationType | undefined;
|
|
596
500
|
status: AnalysisTemplateValidationStatus | undefined;
|
|
@@ -629,14 +533,6 @@ export declare const ResourceType: {
|
|
|
629
533
|
readonly MEMBERSHIP: "MEMBERSHIP";
|
|
630
534
|
};
|
|
631
535
|
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
632
|
-
export declare class ConflictException extends __BaseException {
|
|
633
|
-
readonly name: "ConflictException";
|
|
634
|
-
readonly $fault: "client";
|
|
635
|
-
resourceId?: string | undefined;
|
|
636
|
-
resourceType?: ResourceType | undefined;
|
|
637
|
-
reason?: ConflictExceptionReason | undefined;
|
|
638
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
639
|
-
}
|
|
640
536
|
export interface CreateAnalysisTemplateInput {
|
|
641
537
|
description?: string | undefined;
|
|
642
538
|
membershipIdentifier: string | undefined;
|
|
@@ -651,38 +547,6 @@ export interface CreateAnalysisTemplateInput {
|
|
|
651
547
|
export interface CreateAnalysisTemplateOutput {
|
|
652
548
|
analysisTemplate: AnalysisTemplate | undefined;
|
|
653
549
|
}
|
|
654
|
-
export declare class InternalServerException extends __BaseException {
|
|
655
|
-
readonly name: "InternalServerException";
|
|
656
|
-
readonly $fault: "server";
|
|
657
|
-
constructor(
|
|
658
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
659
|
-
);
|
|
660
|
-
}
|
|
661
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
662
|
-
readonly name: "ResourceNotFoundException";
|
|
663
|
-
readonly $fault: "client";
|
|
664
|
-
resourceId: string | undefined;
|
|
665
|
-
resourceType: ResourceType | undefined;
|
|
666
|
-
constructor(
|
|
667
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
668
|
-
);
|
|
669
|
-
}
|
|
670
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
671
|
-
readonly name: "ServiceQuotaExceededException";
|
|
672
|
-
readonly $fault: "client";
|
|
673
|
-
quotaName: string | undefined;
|
|
674
|
-
quotaValue: number | undefined;
|
|
675
|
-
constructor(
|
|
676
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
677
|
-
);
|
|
678
|
-
}
|
|
679
|
-
export declare class ThrottlingException extends __BaseException {
|
|
680
|
-
readonly name: "ThrottlingException";
|
|
681
|
-
readonly $fault: "client";
|
|
682
|
-
constructor(
|
|
683
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
684
|
-
);
|
|
685
|
-
}
|
|
686
550
|
export interface ValidationExceptionField {
|
|
687
551
|
name: string | undefined;
|
|
688
552
|
message: string | undefined;
|
|
@@ -695,15 +559,6 @@ export declare const ValidationExceptionReason: {
|
|
|
695
559
|
};
|
|
696
560
|
export type ValidationExceptionReason =
|
|
697
561
|
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
698
|
-
export declare class ValidationException extends __BaseException {
|
|
699
|
-
readonly name: "ValidationException";
|
|
700
|
-
readonly $fault: "client";
|
|
701
|
-
reason?: ValidationExceptionReason | undefined;
|
|
702
|
-
fieldList?: ValidationExceptionField[] | undefined;
|
|
703
|
-
constructor(
|
|
704
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
705
|
-
);
|
|
706
|
-
}
|
|
707
562
|
export interface DeleteAnalysisTemplateInput {
|
|
708
563
|
membershipIdentifier: string | undefined;
|
|
709
564
|
analysisTemplateIdentifier: string | undefined;
|
|
@@ -745,54 +600,6 @@ export interface UpdateAnalysisTemplateInput {
|
|
|
745
600
|
export interface UpdateAnalysisTemplateOutput {
|
|
746
601
|
analysisTemplate: AnalysisTemplate | undefined;
|
|
747
602
|
}
|
|
748
|
-
export declare const AnalysisType: {
|
|
749
|
-
readonly ADDITIONAL_ANALYSIS: "ADDITIONAL_ANALYSIS";
|
|
750
|
-
readonly DIRECT_ANALYSIS: "DIRECT_ANALYSIS";
|
|
751
|
-
};
|
|
752
|
-
export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType];
|
|
753
|
-
export declare const AnalyticsEngine: {
|
|
754
|
-
readonly CLEAN_ROOMS_SQL: "CLEAN_ROOMS_SQL";
|
|
755
|
-
readonly SPARK: "SPARK";
|
|
756
|
-
};
|
|
757
|
-
export type AnalyticsEngine =
|
|
758
|
-
(typeof AnalyticsEngine)[keyof typeof AnalyticsEngine];
|
|
759
|
-
export declare const CommercialRegion: {
|
|
760
|
-
readonly AF_SOUTH_1: "af-south-1";
|
|
761
|
-
readonly AP_EAST_1: "ap-east-1";
|
|
762
|
-
readonly AP_EAST_2: "ap-east-2";
|
|
763
|
-
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
764
|
-
readonly AP_NORTHEAST_2: "ap-northeast-2";
|
|
765
|
-
readonly AP_NORTHEAST_3: "ap-northeast-3";
|
|
766
|
-
readonly AP_SOUTHEAST_1: "ap-southeast-1";
|
|
767
|
-
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
768
|
-
readonly AP_SOUTHEAST_3: "ap-southeast-3";
|
|
769
|
-
readonly AP_SOUTHEAST_4: "ap-southeast-4";
|
|
770
|
-
readonly AP_SOUTHEAST_5: "ap-southeast-5";
|
|
771
|
-
readonly AP_SOUTHEAST_7: "ap-southeast-7";
|
|
772
|
-
readonly AP_SOUTH_1: "ap-south-1";
|
|
773
|
-
readonly AP_SOUTH_2: "ap-south-2";
|
|
774
|
-
readonly CA_CENTRAL_1: "ca-central-1";
|
|
775
|
-
readonly CA_WEST_1: "ca-west-1";
|
|
776
|
-
readonly EU_CENTRAL_1: "eu-central-1";
|
|
777
|
-
readonly EU_CENTRAL_2: "eu-central-2";
|
|
778
|
-
readonly EU_NORTH_1: "eu-north-1";
|
|
779
|
-
readonly EU_SOUTH_1: "eu-south-1";
|
|
780
|
-
readonly EU_SOUTH_2: "eu-south-2";
|
|
781
|
-
readonly EU_WEST_1: "eu-west-1";
|
|
782
|
-
readonly EU_WEST_2: "eu-west-2";
|
|
783
|
-
readonly EU_WEST_3: "eu-west-3";
|
|
784
|
-
readonly IL_CENTRAL_1: "il-central-1";
|
|
785
|
-
readonly ME_CENTRAL_1: "me-central-1";
|
|
786
|
-
readonly ME_SOUTH_1: "me-south-1";
|
|
787
|
-
readonly MX_CENTRAL_1: "mx-central-1";
|
|
788
|
-
readonly SA_EAST_1: "sa-east-1";
|
|
789
|
-
readonly US_EAST_1: "us-east-1";
|
|
790
|
-
readonly US_EAST_2: "us-east-2";
|
|
791
|
-
readonly US_WEST_1: "us-west-1";
|
|
792
|
-
readonly US_WEST_2: "us-west-2";
|
|
793
|
-
};
|
|
794
|
-
export type CommercialRegion =
|
|
795
|
-
(typeof CommercialRegion)[keyof typeof CommercialRegion];
|
|
796
603
|
export interface AthenaTableReference {
|
|
797
604
|
region?: CommercialRegion | undefined;
|
|
798
605
|
workGroup: string | undefined;
|
|
@@ -800,11 +607,6 @@ export interface AthenaTableReference {
|
|
|
800
607
|
databaseName: string | undefined;
|
|
801
608
|
tableName: string | undefined;
|
|
802
609
|
}
|
|
803
|
-
export declare const AutoApprovedChangeType: {
|
|
804
|
-
readonly ADD_MEMBER: "ADD_MEMBER";
|
|
805
|
-
};
|
|
806
|
-
export type AutoApprovedChangeType =
|
|
807
|
-
(typeof AutoApprovedChangeType)[keyof typeof AutoApprovedChangeType];
|
|
808
610
|
export interface BatchGetCollaborationAnalysisTemplateInput {
|
|
809
611
|
collaborationIdentifier: string | undefined;
|
|
810
612
|
analysisTemplateArns: string[] | undefined;
|
|
@@ -849,35 +651,10 @@ export interface Column {
|
|
|
849
651
|
name: string | undefined;
|
|
850
652
|
type: string | undefined;
|
|
851
653
|
}
|
|
852
|
-
export declare const SchemaConfiguration: {
|
|
853
|
-
readonly DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY";
|
|
854
|
-
};
|
|
855
|
-
export type SchemaConfiguration =
|
|
856
|
-
(typeof SchemaConfiguration)[keyof typeof SchemaConfiguration];
|
|
857
|
-
export declare const SchemaStatusReasonCode: {
|
|
858
|
-
readonly ADDITIONAL_ANALYSES_NOT_ALLOWED: "ADDITIONAL_ANALYSES_NOT_ALLOWED";
|
|
859
|
-
readonly ADDITIONAL_ANALYSES_NOT_CONFIGURED: "ADDITIONAL_ANALYSES_NOT_CONFIGURED";
|
|
860
|
-
readonly ANALYSIS_PROVIDERS_NOT_CONFIGURED: "ANALYSIS_PROVIDERS_NOT_CONFIGURED";
|
|
861
|
-
readonly ANALYSIS_RULE_MISSING: "ANALYSIS_RULE_MISSING";
|
|
862
|
-
readonly ANALYSIS_RULE_TYPES_NOT_COMPATIBLE: "ANALYSIS_RULE_TYPES_NOT_COMPATIBLE";
|
|
863
|
-
readonly ANALYSIS_TEMPLATES_NOT_CONFIGURED: "ANALYSIS_TEMPLATES_NOT_CONFIGURED";
|
|
864
|
-
readonly COLLABORATION_ANALYSIS_RULE_NOT_CONFIGURED: "COLLABORATION_ANALYSIS_RULE_NOT_CONFIGURED";
|
|
865
|
-
readonly DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED: "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED";
|
|
866
|
-
readonly ID_MAPPING_TABLE_NOT_POPULATED: "ID_MAPPING_TABLE_NOT_POPULATED";
|
|
867
|
-
readonly RESULT_RECEIVERS_NOT_ALLOWED: "RESULT_RECEIVERS_NOT_ALLOWED";
|
|
868
|
-
readonly RESULT_RECEIVERS_NOT_CONFIGURED: "RESULT_RECEIVERS_NOT_CONFIGURED";
|
|
869
|
-
};
|
|
870
|
-
export type SchemaStatusReasonCode =
|
|
871
|
-
(typeof SchemaStatusReasonCode)[keyof typeof SchemaStatusReasonCode];
|
|
872
654
|
export interface SchemaStatusReason {
|
|
873
655
|
code: SchemaStatusReasonCode | undefined;
|
|
874
656
|
message: string | undefined;
|
|
875
657
|
}
|
|
876
|
-
export declare const SchemaStatus: {
|
|
877
|
-
readonly NOT_READY: "NOT_READY";
|
|
878
|
-
readonly READY: "READY";
|
|
879
|
-
};
|
|
880
|
-
export type SchemaStatus = (typeof SchemaStatus)[keyof typeof SchemaStatus];
|
|
881
658
|
export interface SchemaStatusDetail {
|
|
882
659
|
status: SchemaStatus | undefined;
|
|
883
660
|
reasons?: SchemaStatusReason[] | undefined;
|
|
@@ -885,12 +662,6 @@ export interface SchemaStatusDetail {
|
|
|
885
662
|
configurations?: SchemaConfiguration[] | undefined;
|
|
886
663
|
analysisType: AnalysisType | undefined;
|
|
887
664
|
}
|
|
888
|
-
export declare const IdNamespaceType: {
|
|
889
|
-
readonly SOURCE: "SOURCE";
|
|
890
|
-
readonly TARGET: "TARGET";
|
|
891
|
-
};
|
|
892
|
-
export type IdNamespaceType =
|
|
893
|
-
(typeof IdNamespaceType)[keyof typeof IdNamespaceType];
|
|
894
665
|
export interface IdMappingTableInputSource {
|
|
895
666
|
idNamespaceAssociationId: string | undefined;
|
|
896
667
|
type: IdNamespaceType | undefined;
|
|
@@ -915,17 +686,6 @@ export declare namespace SchemaTypeProperties {
|
|
|
915
686
|
_: (name: string, value: any) => T;
|
|
916
687
|
}
|
|
917
688
|
}
|
|
918
|
-
export declare const SelectedAnalysisMethod: {
|
|
919
|
-
readonly DIRECT_JOB: "DIRECT_JOB";
|
|
920
|
-
readonly DIRECT_QUERY: "DIRECT_QUERY";
|
|
921
|
-
};
|
|
922
|
-
export type SelectedAnalysisMethod =
|
|
923
|
-
(typeof SelectedAnalysisMethod)[keyof typeof SelectedAnalysisMethod];
|
|
924
|
-
export declare const SchemaType: {
|
|
925
|
-
readonly ID_MAPPING_TABLE: "ID_MAPPING_TABLE";
|
|
926
|
-
readonly TABLE: "TABLE";
|
|
927
|
-
};
|
|
928
|
-
export type SchemaType = (typeof SchemaType)[keyof typeof SchemaType];
|
|
929
689
|
export interface Schema {
|
|
930
690
|
columns: Column[] | undefined;
|
|
931
691
|
partitionKeys: Column[] | undefined;
|
|
@@ -966,18 +726,6 @@ export interface BatchGetSchemaAnalysisRuleOutput {
|
|
|
966
726
|
analysisRules: AnalysisRule[] | undefined;
|
|
967
727
|
errors: BatchGetSchemaAnalysisRuleError[] | undefined;
|
|
968
728
|
}
|
|
969
|
-
export declare const MemberAbility: {
|
|
970
|
-
readonly CAN_QUERY: "CAN_QUERY";
|
|
971
|
-
readonly CAN_RECEIVE_RESULTS: "CAN_RECEIVE_RESULTS";
|
|
972
|
-
readonly CAN_RUN_JOB: "CAN_RUN_JOB";
|
|
973
|
-
};
|
|
974
|
-
export type MemberAbility = (typeof MemberAbility)[keyof typeof MemberAbility];
|
|
975
|
-
export declare const CustomMLMemberAbility: {
|
|
976
|
-
readonly CAN_RECEIVE_INFERENCE_OUTPUT: "CAN_RECEIVE_INFERENCE_OUTPUT";
|
|
977
|
-
readonly CAN_RECEIVE_MODEL_OUTPUT: "CAN_RECEIVE_MODEL_OUTPUT";
|
|
978
|
-
};
|
|
979
|
-
export type CustomMLMemberAbility =
|
|
980
|
-
(typeof CustomMLMemberAbility)[keyof typeof CustomMLMemberAbility];
|
|
981
729
|
export interface MLMemberAbilities {
|
|
982
730
|
customMLMemberAbilities: CustomMLMemberAbility[] | undefined;
|
|
983
731
|
}
|
|
@@ -1008,12 +756,6 @@ export interface DataEncryptionMetadata {
|
|
|
1008
756
|
allowJoinsOnColumnsWithDifferentNames: boolean | undefined;
|
|
1009
757
|
preserveNulls: boolean | undefined;
|
|
1010
758
|
}
|
|
1011
|
-
export declare const CollaborationJobLogStatus: {
|
|
1012
|
-
readonly DISABLED: "DISABLED";
|
|
1013
|
-
readonly ENABLED: "ENABLED";
|
|
1014
|
-
};
|
|
1015
|
-
export type CollaborationJobLogStatus =
|
|
1016
|
-
(typeof CollaborationJobLogStatus)[keyof typeof CollaborationJobLogStatus];
|
|
1017
759
|
export interface MemberSpecification {
|
|
1018
760
|
accountId: string | undefined;
|
|
1019
761
|
memberAbilities: MemberAbility[] | undefined;
|
|
@@ -1021,12 +763,6 @@ export interface MemberSpecification {
|
|
|
1021
763
|
displayName: string | undefined;
|
|
1022
764
|
paymentConfiguration?: PaymentConfiguration | undefined;
|
|
1023
765
|
}
|
|
1024
|
-
export declare const CollaborationQueryLogStatus: {
|
|
1025
|
-
readonly DISABLED: "DISABLED";
|
|
1026
|
-
readonly ENABLED: "ENABLED";
|
|
1027
|
-
};
|
|
1028
|
-
export type CollaborationQueryLogStatus =
|
|
1029
|
-
(typeof CollaborationQueryLogStatus)[keyof typeof CollaborationQueryLogStatus];
|
|
1030
766
|
export interface CreateCollaborationInput {
|
|
1031
767
|
members: MemberSpecification[] | undefined;
|
|
1032
768
|
name: string | undefined;
|
|
@@ -1094,11 +830,6 @@ export declare namespace ChangeSpecification {
|
|
|
1094
830
|
_: (name: string, value: any) => T;
|
|
1095
831
|
}
|
|
1096
832
|
}
|
|
1097
|
-
export declare const ChangeSpecificationType: {
|
|
1098
|
-
readonly MEMBER: "MEMBER";
|
|
1099
|
-
};
|
|
1100
|
-
export type ChangeSpecificationType =
|
|
1101
|
-
(typeof ChangeSpecificationType)[keyof typeof ChangeSpecificationType];
|
|
1102
833
|
export interface ChangeInput {
|
|
1103
834
|
specificationType: ChangeSpecificationType | undefined;
|
|
1104
835
|
specification: ChangeSpecification | undefined;
|
|
@@ -1107,24 +838,11 @@ export interface CreateCollaborationChangeRequestInput {
|
|
|
1107
838
|
collaborationIdentifier: string | undefined;
|
|
1108
839
|
changes: ChangeInput[] | undefined;
|
|
1109
840
|
}
|
|
1110
|
-
export declare const ChangeType: {
|
|
1111
|
-
readonly ADD_MEMBER: "ADD_MEMBER";
|
|
1112
|
-
};
|
|
1113
|
-
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
1114
841
|
export interface Change {
|
|
1115
842
|
specificationType: ChangeSpecificationType | undefined;
|
|
1116
843
|
specification: ChangeSpecification | undefined;
|
|
1117
844
|
types: ChangeType[] | undefined;
|
|
1118
845
|
}
|
|
1119
|
-
export declare const ChangeRequestStatus: {
|
|
1120
|
-
readonly APPROVED: "APPROVED";
|
|
1121
|
-
readonly CANCELLED: "CANCELLED";
|
|
1122
|
-
readonly COMMITTED: "COMMITTED";
|
|
1123
|
-
readonly DENIED: "DENIED";
|
|
1124
|
-
readonly PENDING: "PENDING";
|
|
1125
|
-
};
|
|
1126
|
-
export type ChangeRequestStatus =
|
|
1127
|
-
(typeof ChangeRequestStatus)[keyof typeof ChangeRequestStatus];
|
|
1128
846
|
export interface CollaborationChangeRequest {
|
|
1129
847
|
id: string | undefined;
|
|
1130
848
|
collaborationId: string | undefined;
|
|
@@ -1227,12 +945,6 @@ export interface GetCollaborationPrivacyBudgetTemplateInput {
|
|
|
1227
945
|
collaborationIdentifier: string | undefined;
|
|
1228
946
|
privacyBudgetTemplateIdentifier: string | undefined;
|
|
1229
947
|
}
|
|
1230
|
-
export declare const PrivacyBudgetTemplateAutoRefresh: {
|
|
1231
|
-
readonly CALENDAR_MONTH: "CALENDAR_MONTH";
|
|
1232
|
-
readonly NONE: "NONE";
|
|
1233
|
-
};
|
|
1234
|
-
export type PrivacyBudgetTemplateAutoRefresh =
|
|
1235
|
-
(typeof PrivacyBudgetTemplateAutoRefresh)[keyof typeof PrivacyBudgetTemplateAutoRefresh];
|
|
1236
948
|
export interface DifferentialPrivacyTemplateParametersOutput {
|
|
1237
949
|
epsilon: number | undefined;
|
|
1238
950
|
usersNoisePerQuery: number | undefined;
|
|
@@ -1265,12 +977,6 @@ export declare namespace PrivacyBudgetTemplateParametersOutput {
|
|
|
1265
977
|
_: (name: string, value: any) => T;
|
|
1266
978
|
}
|
|
1267
979
|
}
|
|
1268
|
-
export declare const PrivacyBudgetType: {
|
|
1269
|
-
readonly ACCESS_BUDGET: "ACCESS_BUDGET";
|
|
1270
|
-
readonly DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY";
|
|
1271
|
-
};
|
|
1272
|
-
export type PrivacyBudgetType =
|
|
1273
|
-
(typeof PrivacyBudgetType)[keyof typeof PrivacyBudgetType];
|
|
1274
980
|
export interface CollaborationPrivacyBudgetTemplate {
|
|
1275
981
|
id: string | undefined;
|
|
1276
982
|
arn: string | undefined;
|
|
@@ -1404,15 +1110,6 @@ export interface ListCollaborationPrivacyBudgetsInput {
|
|
|
1404
1110
|
nextToken?: string | undefined;
|
|
1405
1111
|
accessBudgetResourceArn?: string | undefined;
|
|
1406
1112
|
}
|
|
1407
|
-
export declare const DifferentialPrivacyAggregationType: {
|
|
1408
|
-
readonly AVG: "AVG";
|
|
1409
|
-
readonly COUNT: "COUNT";
|
|
1410
|
-
readonly COUNT_DISTINCT: "COUNT_DISTINCT";
|
|
1411
|
-
readonly STDDEV: "STDDEV";
|
|
1412
|
-
readonly SUM: "SUM";
|
|
1413
|
-
};
|
|
1414
|
-
export type DifferentialPrivacyAggregationType =
|
|
1415
|
-
(typeof DifferentialPrivacyAggregationType)[keyof typeof DifferentialPrivacyAggregationType];
|
|
1416
1113
|
export interface DifferentialPrivacyPrivacyBudgetAggregation {
|
|
1417
1114
|
type: DifferentialPrivacyAggregationType | undefined;
|
|
1418
1115
|
maxCount: number | undefined;
|
|
@@ -1652,13 +1349,6 @@ export interface CreateConfiguredTableAssociationInput {
|
|
|
1652
1349
|
roleArn: string | undefined;
|
|
1653
1350
|
tags?: Record<string, string> | undefined;
|
|
1654
1351
|
}
|
|
1655
|
-
export declare const ConfiguredTableAssociationAnalysisRuleType: {
|
|
1656
|
-
readonly AGGREGATION: "AGGREGATION";
|
|
1657
|
-
readonly CUSTOM: "CUSTOM";
|
|
1658
|
-
readonly LIST: "LIST";
|
|
1659
|
-
};
|
|
1660
|
-
export type ConfiguredTableAssociationAnalysisRuleType =
|
|
1661
|
-
(typeof ConfiguredTableAssociationAnalysisRuleType)[keyof typeof ConfiguredTableAssociationAnalysisRuleType];
|
|
1662
1352
|
export interface ConfiguredTableAssociation {
|
|
1663
1353
|
arn: string | undefined;
|
|
1664
1354
|
id: string | undefined;
|
|
@@ -1840,13 +1530,6 @@ export interface CreateConfiguredTableInput {
|
|
|
1840
1530
|
selectedAnalysisMethods?: SelectedAnalysisMethod[] | undefined;
|
|
1841
1531
|
tags?: Record<string, string> | undefined;
|
|
1842
1532
|
}
|
|
1843
|
-
export declare const ConfiguredTableAnalysisRuleType: {
|
|
1844
|
-
readonly AGGREGATION: "AGGREGATION";
|
|
1845
|
-
readonly CUSTOM: "CUSTOM";
|
|
1846
|
-
readonly LIST: "LIST";
|
|
1847
|
-
};
|
|
1848
|
-
export type ConfiguredTableAnalysisRuleType =
|
|
1849
|
-
(typeof ConfiguredTableAnalysisRuleType)[keyof typeof ConfiguredTableAnalysisRuleType];
|
|
1850
1533
|
export interface ConfiguredTable {
|
|
1851
1534
|
id: string | undefined;
|
|
1852
1535
|
arn: string | undefined;
|
|
@@ -2060,12 +1743,6 @@ export interface ListIdMappingTablesOutput {
|
|
|
2060
1743
|
idMappingTableSummaries: IdMappingTableSummary[] | undefined;
|
|
2061
1744
|
nextToken?: string | undefined;
|
|
2062
1745
|
}
|
|
2063
|
-
export declare const JobType: {
|
|
2064
|
-
readonly BATCH: "BATCH";
|
|
2065
|
-
readonly DELETE_ONLY: "DELETE_ONLY";
|
|
2066
|
-
readonly INCREMENTAL: "INCREMENTAL";
|
|
2067
|
-
};
|
|
2068
|
-
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
2069
1746
|
export interface PopulateIdMappingTableInput {
|
|
2070
1747
|
idMappingTableIdentifier: string | undefined;
|
|
2071
1748
|
membershipIdentifier: string | undefined;
|
|
@@ -2194,3 +1871,290 @@ export declare const ResultFormat: {
|
|
|
2194
1871
|
readonly PARQUET: "PARQUET";
|
|
2195
1872
|
};
|
|
2196
1873
|
export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat];
|
|
1874
|
+
export interface ProtectedQueryS3OutputConfiguration {
|
|
1875
|
+
resultFormat: ResultFormat | undefined;
|
|
1876
|
+
bucket: string | undefined;
|
|
1877
|
+
keyPrefix?: string | undefined;
|
|
1878
|
+
singleFileOutput?: boolean | undefined;
|
|
1879
|
+
}
|
|
1880
|
+
export type MembershipProtectedQueryOutputConfiguration =
|
|
1881
|
+
| MembershipProtectedQueryOutputConfiguration.S3Member
|
|
1882
|
+
| MembershipProtectedQueryOutputConfiguration.$UnknownMember;
|
|
1883
|
+
export declare namespace MembershipProtectedQueryOutputConfiguration {
|
|
1884
|
+
interface S3Member {
|
|
1885
|
+
s3: ProtectedQueryS3OutputConfiguration;
|
|
1886
|
+
$unknown?: never;
|
|
1887
|
+
}
|
|
1888
|
+
interface $UnknownMember {
|
|
1889
|
+
s3?: never;
|
|
1890
|
+
$unknown: [string, any];
|
|
1891
|
+
}
|
|
1892
|
+
interface Visitor<T> {
|
|
1893
|
+
s3: (value: ProtectedQueryS3OutputConfiguration) => T;
|
|
1894
|
+
_: (name: string, value: any) => T;
|
|
1895
|
+
}
|
|
1896
|
+
}
|
|
1897
|
+
export interface MembershipProtectedQueryResultConfiguration {
|
|
1898
|
+
outputConfiguration: MembershipProtectedQueryOutputConfiguration | undefined;
|
|
1899
|
+
roleArn?: string | undefined;
|
|
1900
|
+
}
|
|
1901
|
+
export interface MembershipJobComputePaymentConfig {
|
|
1902
|
+
isResponsible: boolean | undefined;
|
|
1903
|
+
}
|
|
1904
|
+
export interface MembershipModelInferencePaymentConfig {
|
|
1905
|
+
isResponsible: boolean | undefined;
|
|
1906
|
+
}
|
|
1907
|
+
export interface MembershipModelTrainingPaymentConfig {
|
|
1908
|
+
isResponsible: boolean | undefined;
|
|
1909
|
+
}
|
|
1910
|
+
export interface MembershipMLPaymentConfig {
|
|
1911
|
+
modelTraining?: MembershipModelTrainingPaymentConfig | undefined;
|
|
1912
|
+
modelInference?: MembershipModelInferencePaymentConfig | undefined;
|
|
1913
|
+
}
|
|
1914
|
+
export interface MembershipQueryComputePaymentConfig {
|
|
1915
|
+
isResponsible: boolean | undefined;
|
|
1916
|
+
}
|
|
1917
|
+
export interface MembershipPaymentConfiguration {
|
|
1918
|
+
queryCompute: MembershipQueryComputePaymentConfig | undefined;
|
|
1919
|
+
machineLearning?: MembershipMLPaymentConfig | undefined;
|
|
1920
|
+
jobCompute?: MembershipJobComputePaymentConfig | undefined;
|
|
1921
|
+
}
|
|
1922
|
+
export interface CreateMembershipInput {
|
|
1923
|
+
collaborationIdentifier: string | undefined;
|
|
1924
|
+
queryLogStatus: MembershipQueryLogStatus | undefined;
|
|
1925
|
+
jobLogStatus?: MembershipJobLogStatus | undefined;
|
|
1926
|
+
tags?: Record<string, string> | undefined;
|
|
1927
|
+
defaultResultConfiguration?:
|
|
1928
|
+
| MembershipProtectedQueryResultConfiguration
|
|
1929
|
+
| undefined;
|
|
1930
|
+
defaultJobResultConfiguration?:
|
|
1931
|
+
| MembershipProtectedJobResultConfiguration
|
|
1932
|
+
| undefined;
|
|
1933
|
+
paymentConfiguration?: MembershipPaymentConfiguration | undefined;
|
|
1934
|
+
}
|
|
1935
|
+
export declare const MembershipStatus: {
|
|
1936
|
+
readonly ACTIVE: "ACTIVE";
|
|
1937
|
+
readonly COLLABORATION_DELETED: "COLLABORATION_DELETED";
|
|
1938
|
+
readonly REMOVED: "REMOVED";
|
|
1939
|
+
};
|
|
1940
|
+
export type MembershipStatus =
|
|
1941
|
+
(typeof MembershipStatus)[keyof typeof MembershipStatus];
|
|
1942
|
+
export interface Membership {
|
|
1943
|
+
id: string | undefined;
|
|
1944
|
+
arn: string | undefined;
|
|
1945
|
+
collaborationArn: string | undefined;
|
|
1946
|
+
collaborationId: string | undefined;
|
|
1947
|
+
collaborationCreatorAccountId: string | undefined;
|
|
1948
|
+
collaborationCreatorDisplayName: string | undefined;
|
|
1949
|
+
collaborationName: string | undefined;
|
|
1950
|
+
createTime: Date | undefined;
|
|
1951
|
+
updateTime: Date | undefined;
|
|
1952
|
+
status: MembershipStatus | undefined;
|
|
1953
|
+
memberAbilities: MemberAbility[] | undefined;
|
|
1954
|
+
mlMemberAbilities?: MLMemberAbilities | undefined;
|
|
1955
|
+
queryLogStatus: MembershipQueryLogStatus | undefined;
|
|
1956
|
+
jobLogStatus?: MembershipJobLogStatus | undefined;
|
|
1957
|
+
defaultResultConfiguration?:
|
|
1958
|
+
| MembershipProtectedQueryResultConfiguration
|
|
1959
|
+
| undefined;
|
|
1960
|
+
defaultJobResultConfiguration?:
|
|
1961
|
+
| MembershipProtectedJobResultConfiguration
|
|
1962
|
+
| undefined;
|
|
1963
|
+
paymentConfiguration: MembershipPaymentConfiguration | undefined;
|
|
1964
|
+
}
|
|
1965
|
+
export interface CreateMembershipOutput {
|
|
1966
|
+
membership: Membership | undefined;
|
|
1967
|
+
}
|
|
1968
|
+
export interface DeleteMembershipInput {
|
|
1969
|
+
membershipIdentifier: string | undefined;
|
|
1970
|
+
}
|
|
1971
|
+
export interface DeleteMembershipOutput {}
|
|
1972
|
+
export interface GetMembershipInput {
|
|
1973
|
+
membershipIdentifier: string | undefined;
|
|
1974
|
+
}
|
|
1975
|
+
export interface GetMembershipOutput {
|
|
1976
|
+
membership: Membership | undefined;
|
|
1977
|
+
}
|
|
1978
|
+
export interface GetProtectedJobInput {
|
|
1979
|
+
membershipIdentifier: string | undefined;
|
|
1980
|
+
protectedJobIdentifier: string | undefined;
|
|
1981
|
+
}
|
|
1982
|
+
export interface ProtectedJobWorkerComputeConfiguration {
|
|
1983
|
+
type: ProtectedJobWorkerComputeType | undefined;
|
|
1984
|
+
number: number | undefined;
|
|
1985
|
+
}
|
|
1986
|
+
export type ProtectedJobComputeConfiguration =
|
|
1987
|
+
| ProtectedJobComputeConfiguration.WorkerMember
|
|
1988
|
+
| ProtectedJobComputeConfiguration.$UnknownMember;
|
|
1989
|
+
export declare namespace ProtectedJobComputeConfiguration {
|
|
1990
|
+
interface WorkerMember {
|
|
1991
|
+
worker: ProtectedJobWorkerComputeConfiguration;
|
|
1992
|
+
$unknown?: never;
|
|
1993
|
+
}
|
|
1994
|
+
interface $UnknownMember {
|
|
1995
|
+
worker?: never;
|
|
1996
|
+
$unknown: [string, any];
|
|
1997
|
+
}
|
|
1998
|
+
interface Visitor<T> {
|
|
1999
|
+
worker: (value: ProtectedJobWorkerComputeConfiguration) => T;
|
|
2000
|
+
_: (name: string, value: any) => T;
|
|
2001
|
+
}
|
|
2002
|
+
}
|
|
2003
|
+
export interface ProtectedJobError {
|
|
2004
|
+
message: string | undefined;
|
|
2005
|
+
code: string | undefined;
|
|
2006
|
+
}
|
|
2007
|
+
export interface ProtectedJobParameters {
|
|
2008
|
+
analysisTemplateArn?: string | undefined;
|
|
2009
|
+
}
|
|
2010
|
+
export interface ProtectedJobSingleMemberOutput {
|
|
2011
|
+
accountId: string | undefined;
|
|
2012
|
+
}
|
|
2013
|
+
export interface ProtectedJobS3Output {
|
|
2014
|
+
location: string | undefined;
|
|
2015
|
+
}
|
|
2016
|
+
export type ProtectedJobOutput =
|
|
2017
|
+
| ProtectedJobOutput.MemberListMember
|
|
2018
|
+
| ProtectedJobOutput.S3Member
|
|
2019
|
+
| ProtectedJobOutput.$UnknownMember;
|
|
2020
|
+
export declare namespace ProtectedJobOutput {
|
|
2021
|
+
interface S3Member {
|
|
2022
|
+
s3: ProtectedJobS3Output;
|
|
2023
|
+
memberList?: never;
|
|
2024
|
+
$unknown?: never;
|
|
2025
|
+
}
|
|
2026
|
+
interface MemberListMember {
|
|
2027
|
+
s3?: never;
|
|
2028
|
+
memberList: ProtectedJobSingleMemberOutput[];
|
|
2029
|
+
$unknown?: never;
|
|
2030
|
+
}
|
|
2031
|
+
interface $UnknownMember {
|
|
2032
|
+
s3?: never;
|
|
2033
|
+
memberList?: never;
|
|
2034
|
+
$unknown: [string, any];
|
|
2035
|
+
}
|
|
2036
|
+
interface Visitor<T> {
|
|
2037
|
+
s3: (value: ProtectedJobS3Output) => T;
|
|
2038
|
+
memberList: (value: ProtectedJobSingleMemberOutput[]) => T;
|
|
2039
|
+
_: (name: string, value: any) => T;
|
|
2040
|
+
}
|
|
2041
|
+
}
|
|
2042
|
+
export interface ProtectedJobResult {
|
|
2043
|
+
output: ProtectedJobOutput | undefined;
|
|
2044
|
+
}
|
|
2045
|
+
export interface ProtectedJobMemberOutputConfigurationOutput {
|
|
2046
|
+
accountId: string | undefined;
|
|
2047
|
+
}
|
|
2048
|
+
export interface ProtectedJobS3OutputConfigurationOutput {
|
|
2049
|
+
bucket: string | undefined;
|
|
2050
|
+
keyPrefix?: string | undefined;
|
|
2051
|
+
}
|
|
2052
|
+
export type ProtectedJobOutputConfigurationOutput =
|
|
2053
|
+
| ProtectedJobOutputConfigurationOutput.MemberMember
|
|
2054
|
+
| ProtectedJobOutputConfigurationOutput.S3Member
|
|
2055
|
+
| ProtectedJobOutputConfigurationOutput.$UnknownMember;
|
|
2056
|
+
export declare namespace ProtectedJobOutputConfigurationOutput {
|
|
2057
|
+
interface S3Member {
|
|
2058
|
+
s3: ProtectedJobS3OutputConfigurationOutput;
|
|
2059
|
+
member?: never;
|
|
2060
|
+
$unknown?: never;
|
|
2061
|
+
}
|
|
2062
|
+
interface MemberMember {
|
|
2063
|
+
s3?: never;
|
|
2064
|
+
member: ProtectedJobMemberOutputConfigurationOutput;
|
|
2065
|
+
$unknown?: never;
|
|
2066
|
+
}
|
|
2067
|
+
interface $UnknownMember {
|
|
2068
|
+
s3?: never;
|
|
2069
|
+
member?: never;
|
|
2070
|
+
$unknown: [string, any];
|
|
2071
|
+
}
|
|
2072
|
+
interface Visitor<T> {
|
|
2073
|
+
s3: (value: ProtectedJobS3OutputConfigurationOutput) => T;
|
|
2074
|
+
member: (value: ProtectedJobMemberOutputConfigurationOutput) => T;
|
|
2075
|
+
_: (name: string, value: any) => T;
|
|
2076
|
+
}
|
|
2077
|
+
}
|
|
2078
|
+
export interface ProtectedJobResultConfigurationOutput {
|
|
2079
|
+
outputConfiguration: ProtectedJobOutputConfigurationOutput | undefined;
|
|
2080
|
+
}
|
|
2081
|
+
export interface BilledJobResourceUtilization {
|
|
2082
|
+
units: number | undefined;
|
|
2083
|
+
}
|
|
2084
|
+
export interface ProtectedJobStatistics {
|
|
2085
|
+
totalDurationInMillis?: number | undefined;
|
|
2086
|
+
billedResourceUtilization?: BilledJobResourceUtilization | undefined;
|
|
2087
|
+
}
|
|
2088
|
+
export interface ProtectedJob {
|
|
2089
|
+
id: string | undefined;
|
|
2090
|
+
membershipId: string | undefined;
|
|
2091
|
+
membershipArn: string | undefined;
|
|
2092
|
+
createTime: Date | undefined;
|
|
2093
|
+
jobParameters?: ProtectedJobParameters | undefined;
|
|
2094
|
+
status: ProtectedJobStatus | undefined;
|
|
2095
|
+
resultConfiguration?: ProtectedJobResultConfigurationOutput | undefined;
|
|
2096
|
+
statistics?: ProtectedJobStatistics | undefined;
|
|
2097
|
+
result?: ProtectedJobResult | undefined;
|
|
2098
|
+
error?: ProtectedJobError | undefined;
|
|
2099
|
+
computeConfiguration?: ProtectedJobComputeConfiguration | undefined;
|
|
2100
|
+
}
|
|
2101
|
+
export interface GetProtectedJobOutput {
|
|
2102
|
+
protectedJob: ProtectedJob | undefined;
|
|
2103
|
+
}
|
|
2104
|
+
export interface GetProtectedQueryInput {
|
|
2105
|
+
membershipIdentifier: string | undefined;
|
|
2106
|
+
protectedQueryIdentifier: string | undefined;
|
|
2107
|
+
}
|
|
2108
|
+
export type WorkerComputeConfigurationProperties =
|
|
2109
|
+
| WorkerComputeConfigurationProperties.SparkMember
|
|
2110
|
+
| WorkerComputeConfigurationProperties.$UnknownMember;
|
|
2111
|
+
export declare namespace WorkerComputeConfigurationProperties {
|
|
2112
|
+
interface SparkMember {
|
|
2113
|
+
spark: Record<string, string>;
|
|
2114
|
+
$unknown?: never;
|
|
2115
|
+
}
|
|
2116
|
+
interface $UnknownMember {
|
|
2117
|
+
spark?: never;
|
|
2118
|
+
$unknown: [string, any];
|
|
2119
|
+
}
|
|
2120
|
+
interface Visitor<T> {
|
|
2121
|
+
spark: (value: Record<string, string>) => T;
|
|
2122
|
+
_: (name: string, value: any) => T;
|
|
2123
|
+
}
|
|
2124
|
+
}
|
|
2125
|
+
export interface WorkerComputeConfiguration {
|
|
2126
|
+
type?: WorkerComputeType | undefined;
|
|
2127
|
+
number?: number | undefined;
|
|
2128
|
+
properties?: WorkerComputeConfigurationProperties | undefined;
|
|
2129
|
+
}
|
|
2130
|
+
export type ComputeConfiguration =
|
|
2131
|
+
| ComputeConfiguration.WorkerMember
|
|
2132
|
+
| ComputeConfiguration.$UnknownMember;
|
|
2133
|
+
export declare namespace ComputeConfiguration {
|
|
2134
|
+
interface WorkerMember {
|
|
2135
|
+
worker: WorkerComputeConfiguration;
|
|
2136
|
+
$unknown?: never;
|
|
2137
|
+
}
|
|
2138
|
+
interface $UnknownMember {
|
|
2139
|
+
worker?: never;
|
|
2140
|
+
$unknown: [string, any];
|
|
2141
|
+
}
|
|
2142
|
+
interface Visitor<T> {
|
|
2143
|
+
worker: (value: WorkerComputeConfiguration) => T;
|
|
2144
|
+
_: (name: string, value: any) => T;
|
|
2145
|
+
}
|
|
2146
|
+
}
|
|
2147
|
+
export interface DifferentialPrivacySensitivityParameters {
|
|
2148
|
+
aggregationType: DifferentialPrivacyAggregationType | undefined;
|
|
2149
|
+
aggregationExpression: string | undefined;
|
|
2150
|
+
userContributionLimit: number | undefined;
|
|
2151
|
+
minColumnValue?: number | undefined;
|
|
2152
|
+
maxColumnValue?: number | undefined;
|
|
2153
|
+
}
|
|
2154
|
+
export interface DifferentialPrivacyParameters {
|
|
2155
|
+
sensitivityParameters: DifferentialPrivacySensitivityParameters[] | undefined;
|
|
2156
|
+
}
|
|
2157
|
+
export interface ProtectedQueryError {
|
|
2158
|
+
message: string | undefined;
|
|
2159
|
+
code: string | undefined;
|
|
2160
|
+
}
|