@aws-sdk/client-cleanrooms 3.936.0 → 3.940.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 +113 -0
- package/dist-es/models/enums.js +97 -0
- package/dist-es/models/models_0.js +1 -82
- package/dist-es/models/models_1.js +1 -15
- package/dist-types/models/enums.d.ts +225 -0
- package/dist-types/models/errors.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +294 -187
- package/dist-types/models/models_1.d.ts +2 -334
- package/dist-types/ts3.4/models/enums.d.ts +125 -0
- package/dist-types/ts3.4/models/errors.d.ts +2 -2
- package/dist-types/ts3.4/models/models_0.d.ts +143 -104
- package/dist-types/ts3.4/models/models_1.d.ts +8 -157
- package/package.json +5 -5
|
@@ -2,6 +2,8 @@ import { DocumentType as __DocumentType } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
AccessBudgetType,
|
|
4
4
|
AdditionalAnalyses,
|
|
5
|
+
AggregateFunctionName,
|
|
6
|
+
AggregationType,
|
|
5
7
|
AnalysisFormat,
|
|
6
8
|
AnalysisMethod,
|
|
7
9
|
AnalysisRuleType,
|
|
@@ -22,16 +24,23 @@ import {
|
|
|
22
24
|
CustomMLMemberAbility,
|
|
23
25
|
DifferentialPrivacyAggregationType,
|
|
24
26
|
ErrorMessageType,
|
|
27
|
+
FilterableMemberStatus,
|
|
25
28
|
IdNamespaceType,
|
|
26
29
|
JobType,
|
|
30
|
+
JoinOperator,
|
|
31
|
+
JoinRequiredOption,
|
|
27
32
|
MemberAbility,
|
|
28
33
|
MembershipJobLogStatus,
|
|
29
34
|
MembershipQueryLogStatus,
|
|
35
|
+
MembershipStatus,
|
|
36
|
+
MemberStatus,
|
|
30
37
|
ParameterType,
|
|
31
38
|
PrivacyBudgetTemplateAutoRefresh,
|
|
32
39
|
PrivacyBudgetType,
|
|
33
40
|
ProtectedJobStatus,
|
|
34
41
|
ProtectedJobWorkerComputeType,
|
|
42
|
+
ResultFormat,
|
|
43
|
+
ScalarFunctions,
|
|
35
44
|
SchemaConfiguration,
|
|
36
45
|
SchemaStatus,
|
|
37
46
|
SchemaStatusReasonCode,
|
|
@@ -69,29 +78,10 @@ export interface AccessBudgetsPrivacyTemplateParametersOutput {
|
|
|
69
78
|
export interface AccessBudgetsPrivacyTemplateUpdateParameters {
|
|
70
79
|
budgetParameters: BudgetParameter[] | undefined;
|
|
71
80
|
}
|
|
72
|
-
export declare const AccessDeniedExceptionReason: {
|
|
73
|
-
readonly INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS";
|
|
74
|
-
};
|
|
75
|
-
export type AccessDeniedExceptionReason =
|
|
76
|
-
(typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
|
|
77
|
-
export declare const AggregateFunctionName: {
|
|
78
|
-
readonly AVG: "AVG";
|
|
79
|
-
readonly COUNT: "COUNT";
|
|
80
|
-
readonly COUNT_DISTINCT: "COUNT_DISTINCT";
|
|
81
|
-
readonly SUM: "SUM";
|
|
82
|
-
readonly SUM_DISTINCT: "SUM_DISTINCT";
|
|
83
|
-
};
|
|
84
|
-
export type AggregateFunctionName =
|
|
85
|
-
(typeof AggregateFunctionName)[keyof typeof AggregateFunctionName];
|
|
86
81
|
export interface AggregateColumn {
|
|
87
82
|
columnNames: string[] | undefined;
|
|
88
83
|
function: AggregateFunctionName | undefined;
|
|
89
84
|
}
|
|
90
|
-
export declare const AggregationType: {
|
|
91
|
-
readonly COUNT_DISTINCT: "COUNT_DISTINCT";
|
|
92
|
-
};
|
|
93
|
-
export type AggregationType =
|
|
94
|
-
(typeof AggregationType)[keyof typeof AggregationType];
|
|
95
85
|
export interface AggregationConstraint {
|
|
96
86
|
columnName: string | undefined;
|
|
97
87
|
minimum: number | undefined;
|
|
@@ -170,44 +160,6 @@ export declare namespace ConfiguredTableAssociationAnalysisRulePolicy {
|
|
|
170
160
|
_: (name: string, value: any) => T;
|
|
171
161
|
}
|
|
172
162
|
}
|
|
173
|
-
export declare const JoinOperator: {
|
|
174
|
-
readonly AND: "AND";
|
|
175
|
-
readonly OR: "OR";
|
|
176
|
-
};
|
|
177
|
-
export type JoinOperator = (typeof JoinOperator)[keyof typeof JoinOperator];
|
|
178
|
-
export declare const JoinRequiredOption: {
|
|
179
|
-
readonly QUERY_RUNNER: "QUERY_RUNNER";
|
|
180
|
-
};
|
|
181
|
-
export type JoinRequiredOption =
|
|
182
|
-
(typeof JoinRequiredOption)[keyof typeof JoinRequiredOption];
|
|
183
|
-
export declare const ScalarFunctions: {
|
|
184
|
-
readonly ABS: "ABS";
|
|
185
|
-
readonly CAST: "CAST";
|
|
186
|
-
readonly CEILING: "CEILING";
|
|
187
|
-
readonly COALESCE: "COALESCE";
|
|
188
|
-
readonly CONVERT: "CONVERT";
|
|
189
|
-
readonly CURRENT_DATE: "CURRENT_DATE";
|
|
190
|
-
readonly DATEADD: "DATEADD";
|
|
191
|
-
readonly EXTRACT: "EXTRACT";
|
|
192
|
-
readonly FLOOR: "FLOOR";
|
|
193
|
-
readonly GETDATE: "GETDATE";
|
|
194
|
-
readonly LN: "LN";
|
|
195
|
-
readonly LOG: "LOG";
|
|
196
|
-
readonly LOWER: "LOWER";
|
|
197
|
-
readonly ROUND: "ROUND";
|
|
198
|
-
readonly RTRIM: "RTRIM";
|
|
199
|
-
readonly SQRT: "SQRT";
|
|
200
|
-
readonly SUBSTRING: "SUBSTRING";
|
|
201
|
-
readonly TO_CHAR: "TO_CHAR";
|
|
202
|
-
readonly TO_DATE: "TO_DATE";
|
|
203
|
-
readonly TO_NUMBER: "TO_NUMBER";
|
|
204
|
-
readonly TO_TIMESTAMP: "TO_TIMESTAMP";
|
|
205
|
-
readonly TRIM: "TRIM";
|
|
206
|
-
readonly TRUNC: "TRUNC";
|
|
207
|
-
readonly UPPER: "UPPER";
|
|
208
|
-
};
|
|
209
|
-
export type ScalarFunctions =
|
|
210
|
-
(typeof ScalarFunctions)[keyof typeof ScalarFunctions];
|
|
211
163
|
export interface ConsolidatedPolicyAggregation {
|
|
212
164
|
aggregateColumns: AggregateColumn[] | undefined;
|
|
213
165
|
joinColumns: string[] | undefined;
|
|
@@ -519,20 +471,6 @@ export interface AnalysisTemplate {
|
|
|
519
471
|
validations?: AnalysisTemplateValidationStatusDetail[] | undefined;
|
|
520
472
|
errorMessageConfiguration?: ErrorMessageConfiguration | undefined;
|
|
521
473
|
}
|
|
522
|
-
export declare const ConflictExceptionReason: {
|
|
523
|
-
readonly ALREADY_EXISTS: "ALREADY_EXISTS";
|
|
524
|
-
readonly INVALID_STATE: "INVALID_STATE";
|
|
525
|
-
readonly SUBRESOURCES_EXIST: "SUBRESOURCES_EXIST";
|
|
526
|
-
};
|
|
527
|
-
export type ConflictExceptionReason =
|
|
528
|
-
(typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason];
|
|
529
|
-
export declare const ResourceType: {
|
|
530
|
-
readonly COLLABORATION: "COLLABORATION";
|
|
531
|
-
readonly CONFIGURED_TABLE: "CONFIGURED_TABLE";
|
|
532
|
-
readonly CONFIGURED_TABLE_ASSOCIATION: "CONFIGURED_TABLE_ASSOCIATION";
|
|
533
|
-
readonly MEMBERSHIP: "MEMBERSHIP";
|
|
534
|
-
};
|
|
535
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
536
474
|
export interface CreateAnalysisTemplateInput {
|
|
537
475
|
description?: string | undefined;
|
|
538
476
|
membershipIdentifier: string | undefined;
|
|
@@ -551,14 +489,6 @@ export interface ValidationExceptionField {
|
|
|
551
489
|
name: string | undefined;
|
|
552
490
|
message: string | undefined;
|
|
553
491
|
}
|
|
554
|
-
export declare const ValidationExceptionReason: {
|
|
555
|
-
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
556
|
-
readonly IAM_SYNCHRONIZATION_DELAY: "IAM_SYNCHRONIZATION_DELAY";
|
|
557
|
-
readonly INVALID_CONFIGURATION: "INVALID_CONFIGURATION";
|
|
558
|
-
readonly INVALID_QUERY: "INVALID_QUERY";
|
|
559
|
-
};
|
|
560
|
-
export type ValidationExceptionReason =
|
|
561
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
562
492
|
export interface DeleteAnalysisTemplateInput {
|
|
563
493
|
membershipIdentifier: string | undefined;
|
|
564
494
|
analysisTemplateIdentifier: string | undefined;
|
|
@@ -779,13 +709,6 @@ export interface CreateCollaborationInput {
|
|
|
779
709
|
autoApprovedChangeRequestTypes?: AutoApprovedChangeType[] | undefined;
|
|
780
710
|
allowedResultRegions?: SupportedS3Region[] | undefined;
|
|
781
711
|
}
|
|
782
|
-
export declare const MemberStatus: {
|
|
783
|
-
readonly ACTIVE: "ACTIVE";
|
|
784
|
-
readonly INVITED: "INVITED";
|
|
785
|
-
readonly LEFT: "LEFT";
|
|
786
|
-
readonly REMOVED: "REMOVED";
|
|
787
|
-
};
|
|
788
|
-
export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
|
|
789
712
|
export interface Collaboration {
|
|
790
713
|
id: string | undefined;
|
|
791
714
|
arn: string | undefined;
|
|
@@ -1184,12 +1107,6 @@ export interface ListCollaborationPrivacyBudgetTemplatesOutput {
|
|
|
1184
1107
|
| CollaborationPrivacyBudgetTemplateSummary[]
|
|
1185
1108
|
| undefined;
|
|
1186
1109
|
}
|
|
1187
|
-
export declare const FilterableMemberStatus: {
|
|
1188
|
-
readonly ACTIVE: "ACTIVE";
|
|
1189
|
-
readonly INVITED: "INVITED";
|
|
1190
|
-
};
|
|
1191
|
-
export type FilterableMemberStatus =
|
|
1192
|
-
(typeof FilterableMemberStatus)[keyof typeof FilterableMemberStatus];
|
|
1193
1110
|
export interface ListCollaborationsInput {
|
|
1194
1111
|
nextToken?: string | undefined;
|
|
1195
1112
|
maxResults?: number | undefined;
|
|
@@ -1866,11 +1783,6 @@ export interface MembershipProtectedJobResultConfiguration {
|
|
|
1866
1783
|
outputConfiguration: MembershipProtectedJobOutputConfiguration | undefined;
|
|
1867
1784
|
roleArn: string | undefined;
|
|
1868
1785
|
}
|
|
1869
|
-
export declare const ResultFormat: {
|
|
1870
|
-
readonly CSV: "CSV";
|
|
1871
|
-
readonly PARQUET: "PARQUET";
|
|
1872
|
-
};
|
|
1873
|
-
export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat];
|
|
1874
1786
|
export interface ProtectedQueryS3OutputConfiguration {
|
|
1875
1787
|
resultFormat: ResultFormat | undefined;
|
|
1876
1788
|
bucket: string | undefined;
|
|
@@ -1932,13 +1844,6 @@ export interface CreateMembershipInput {
|
|
|
1932
1844
|
| undefined;
|
|
1933
1845
|
paymentConfiguration?: MembershipPaymentConfiguration | undefined;
|
|
1934
1846
|
}
|
|
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
1847
|
export interface Membership {
|
|
1943
1848
|
id: string | undefined;
|
|
1944
1849
|
arn: string | undefined;
|
|
@@ -2158,3 +2063,137 @@ export interface ProtectedQueryError {
|
|
|
2158
2063
|
message: string | undefined;
|
|
2159
2064
|
code: string | undefined;
|
|
2160
2065
|
}
|
|
2066
|
+
export interface ProtectedQuerySingleMemberOutput {
|
|
2067
|
+
accountId: string | undefined;
|
|
2068
|
+
}
|
|
2069
|
+
export interface ProtectedQueryS3Output {
|
|
2070
|
+
location: string | undefined;
|
|
2071
|
+
}
|
|
2072
|
+
export interface ProtectedQueryDistributeOutput {
|
|
2073
|
+
s3?: ProtectedQueryS3Output | undefined;
|
|
2074
|
+
memberList?: ProtectedQuerySingleMemberOutput[] | undefined;
|
|
2075
|
+
}
|
|
2076
|
+
export type ProtectedQueryOutput =
|
|
2077
|
+
| ProtectedQueryOutput.DistributeMember
|
|
2078
|
+
| ProtectedQueryOutput.MemberListMember
|
|
2079
|
+
| ProtectedQueryOutput.S3Member
|
|
2080
|
+
| ProtectedQueryOutput.$UnknownMember;
|
|
2081
|
+
export declare namespace ProtectedQueryOutput {
|
|
2082
|
+
interface S3Member {
|
|
2083
|
+
s3: ProtectedQueryS3Output;
|
|
2084
|
+
memberList?: never;
|
|
2085
|
+
distribute?: never;
|
|
2086
|
+
$unknown?: never;
|
|
2087
|
+
}
|
|
2088
|
+
interface MemberListMember {
|
|
2089
|
+
s3?: never;
|
|
2090
|
+
memberList: ProtectedQuerySingleMemberOutput[];
|
|
2091
|
+
distribute?: never;
|
|
2092
|
+
$unknown?: never;
|
|
2093
|
+
}
|
|
2094
|
+
interface DistributeMember {
|
|
2095
|
+
s3?: never;
|
|
2096
|
+
memberList?: never;
|
|
2097
|
+
distribute: ProtectedQueryDistributeOutput;
|
|
2098
|
+
$unknown?: never;
|
|
2099
|
+
}
|
|
2100
|
+
interface $UnknownMember {
|
|
2101
|
+
s3?: never;
|
|
2102
|
+
memberList?: never;
|
|
2103
|
+
distribute?: never;
|
|
2104
|
+
$unknown: [string, any];
|
|
2105
|
+
}
|
|
2106
|
+
interface Visitor<T> {
|
|
2107
|
+
s3: (value: ProtectedQueryS3Output) => T;
|
|
2108
|
+
memberList: (value: ProtectedQuerySingleMemberOutput[]) => T;
|
|
2109
|
+
distribute: (value: ProtectedQueryDistributeOutput) => T;
|
|
2110
|
+
_: (name: string, value: any) => T;
|
|
2111
|
+
}
|
|
2112
|
+
}
|
|
2113
|
+
export interface ProtectedQueryResult {
|
|
2114
|
+
output: ProtectedQueryOutput | undefined;
|
|
2115
|
+
}
|
|
2116
|
+
export interface ProtectedQueryMemberOutputConfiguration {
|
|
2117
|
+
accountId: string | undefined;
|
|
2118
|
+
}
|
|
2119
|
+
export type ProtectedQueryDistributeOutputConfigurationLocation =
|
|
2120
|
+
| ProtectedQueryDistributeOutputConfigurationLocation.MemberMember
|
|
2121
|
+
| ProtectedQueryDistributeOutputConfigurationLocation.S3Member
|
|
2122
|
+
| ProtectedQueryDistributeOutputConfigurationLocation.$UnknownMember;
|
|
2123
|
+
export declare namespace ProtectedQueryDistributeOutputConfigurationLocation {
|
|
2124
|
+
interface S3Member {
|
|
2125
|
+
s3: ProtectedQueryS3OutputConfiguration;
|
|
2126
|
+
member?: never;
|
|
2127
|
+
$unknown?: never;
|
|
2128
|
+
}
|
|
2129
|
+
interface MemberMember {
|
|
2130
|
+
s3?: never;
|
|
2131
|
+
member: ProtectedQueryMemberOutputConfiguration;
|
|
2132
|
+
$unknown?: never;
|
|
2133
|
+
}
|
|
2134
|
+
interface $UnknownMember {
|
|
2135
|
+
s3?: never;
|
|
2136
|
+
member?: never;
|
|
2137
|
+
$unknown: [string, any];
|
|
2138
|
+
}
|
|
2139
|
+
interface Visitor<T> {
|
|
2140
|
+
s3: (value: ProtectedQueryS3OutputConfiguration) => T;
|
|
2141
|
+
member: (value: ProtectedQueryMemberOutputConfiguration) => T;
|
|
2142
|
+
_: (name: string, value: any) => T;
|
|
2143
|
+
}
|
|
2144
|
+
}
|
|
2145
|
+
export interface ProtectedQueryDistributeOutputConfiguration {
|
|
2146
|
+
locations: ProtectedQueryDistributeOutputConfigurationLocation[] | undefined;
|
|
2147
|
+
}
|
|
2148
|
+
export type ProtectedQueryOutputConfiguration =
|
|
2149
|
+
| ProtectedQueryOutputConfiguration.DistributeMember
|
|
2150
|
+
| ProtectedQueryOutputConfiguration.MemberMember
|
|
2151
|
+
| ProtectedQueryOutputConfiguration.S3Member
|
|
2152
|
+
| ProtectedQueryOutputConfiguration.$UnknownMember;
|
|
2153
|
+
export declare namespace ProtectedQueryOutputConfiguration {
|
|
2154
|
+
interface S3Member {
|
|
2155
|
+
s3: ProtectedQueryS3OutputConfiguration;
|
|
2156
|
+
member?: never;
|
|
2157
|
+
distribute?: never;
|
|
2158
|
+
$unknown?: never;
|
|
2159
|
+
}
|
|
2160
|
+
interface MemberMember {
|
|
2161
|
+
s3?: never;
|
|
2162
|
+
member: ProtectedQueryMemberOutputConfiguration;
|
|
2163
|
+
distribute?: never;
|
|
2164
|
+
$unknown?: never;
|
|
2165
|
+
}
|
|
2166
|
+
interface DistributeMember {
|
|
2167
|
+
s3?: never;
|
|
2168
|
+
member?: never;
|
|
2169
|
+
distribute: ProtectedQueryDistributeOutputConfiguration;
|
|
2170
|
+
$unknown?: never;
|
|
2171
|
+
}
|
|
2172
|
+
interface $UnknownMember {
|
|
2173
|
+
s3?: never;
|
|
2174
|
+
member?: never;
|
|
2175
|
+
distribute?: never;
|
|
2176
|
+
$unknown: [string, any];
|
|
2177
|
+
}
|
|
2178
|
+
interface Visitor<T> {
|
|
2179
|
+
s3: (value: ProtectedQueryS3OutputConfiguration) => T;
|
|
2180
|
+
member: (value: ProtectedQueryMemberOutputConfiguration) => T;
|
|
2181
|
+
distribute: (value: ProtectedQueryDistributeOutputConfiguration) => T;
|
|
2182
|
+
_: (name: string, value: any) => T;
|
|
2183
|
+
}
|
|
2184
|
+
}
|
|
2185
|
+
export interface ProtectedQueryResultConfiguration {
|
|
2186
|
+
outputConfiguration: ProtectedQueryOutputConfiguration | undefined;
|
|
2187
|
+
}
|
|
2188
|
+
export interface ProtectedQuerySQLParameters {
|
|
2189
|
+
queryString?: string | undefined;
|
|
2190
|
+
analysisTemplateArn?: string | undefined;
|
|
2191
|
+
parameters?: Record<string, string> | undefined;
|
|
2192
|
+
}
|
|
2193
|
+
export interface BilledResourceUtilization {
|
|
2194
|
+
units: number | undefined;
|
|
2195
|
+
}
|
|
2196
|
+
export interface ProtectedQueryStatistics {
|
|
2197
|
+
totalDurationInMillis?: number | undefined;
|
|
2198
|
+
billedResourceUtilization?: BilledResourceUtilization | undefined;
|
|
2199
|
+
}
|
|
@@ -4,12 +4,16 @@ import {
|
|
|
4
4
|
MemberAbility,
|
|
5
5
|
MembershipJobLogStatus,
|
|
6
6
|
MembershipQueryLogStatus,
|
|
7
|
+
MembershipStatus,
|
|
7
8
|
PrivacyBudgetTemplateAutoRefresh,
|
|
8
9
|
PrivacyBudgetType,
|
|
9
10
|
ProtectedJobAnalysisType,
|
|
10
11
|
ProtectedJobStatus,
|
|
11
12
|
ProtectedJobType,
|
|
13
|
+
ProtectedQueryStatus,
|
|
14
|
+
ProtectedQueryType,
|
|
12
15
|
TargetProtectedJobStatus,
|
|
16
|
+
TargetProtectedQueryStatus,
|
|
13
17
|
} from "./enums";
|
|
14
18
|
import {
|
|
15
19
|
AccessBudgetsPrivacyTemplateParametersInput,
|
|
@@ -20,7 +24,6 @@ import {
|
|
|
20
24
|
MembershipPaymentConfiguration,
|
|
21
25
|
MembershipProtectedJobResultConfiguration,
|
|
22
26
|
MembershipProtectedQueryResultConfiguration,
|
|
23
|
-
MembershipStatus,
|
|
24
27
|
MLMemberAbilities,
|
|
25
28
|
PrivacyBudget,
|
|
26
29
|
PrivacyBudgetTemplateParametersOutput,
|
|
@@ -28,153 +31,11 @@ import {
|
|
|
28
31
|
ProtectedJobComputeConfiguration,
|
|
29
32
|
ProtectedJobParameters,
|
|
30
33
|
ProtectedQueryError,
|
|
31
|
-
|
|
34
|
+
ProtectedQueryResult,
|
|
35
|
+
ProtectedQueryResultConfiguration,
|
|
36
|
+
ProtectedQuerySQLParameters,
|
|
37
|
+
ProtectedQueryStatistics,
|
|
32
38
|
} from "./models_0";
|
|
33
|
-
export interface ProtectedQuerySingleMemberOutput {
|
|
34
|
-
accountId: string | undefined;
|
|
35
|
-
}
|
|
36
|
-
export interface ProtectedQueryS3Output {
|
|
37
|
-
location: string | undefined;
|
|
38
|
-
}
|
|
39
|
-
export interface ProtectedQueryDistributeOutput {
|
|
40
|
-
s3?: ProtectedQueryS3Output | undefined;
|
|
41
|
-
memberList?: ProtectedQuerySingleMemberOutput[] | undefined;
|
|
42
|
-
}
|
|
43
|
-
export type ProtectedQueryOutput =
|
|
44
|
-
| ProtectedQueryOutput.DistributeMember
|
|
45
|
-
| ProtectedQueryOutput.MemberListMember
|
|
46
|
-
| ProtectedQueryOutput.S3Member
|
|
47
|
-
| ProtectedQueryOutput.$UnknownMember;
|
|
48
|
-
export declare namespace ProtectedQueryOutput {
|
|
49
|
-
interface S3Member {
|
|
50
|
-
s3: ProtectedQueryS3Output;
|
|
51
|
-
memberList?: never;
|
|
52
|
-
distribute?: never;
|
|
53
|
-
$unknown?: never;
|
|
54
|
-
}
|
|
55
|
-
interface MemberListMember {
|
|
56
|
-
s3?: never;
|
|
57
|
-
memberList: ProtectedQuerySingleMemberOutput[];
|
|
58
|
-
distribute?: never;
|
|
59
|
-
$unknown?: never;
|
|
60
|
-
}
|
|
61
|
-
interface DistributeMember {
|
|
62
|
-
s3?: never;
|
|
63
|
-
memberList?: never;
|
|
64
|
-
distribute: ProtectedQueryDistributeOutput;
|
|
65
|
-
$unknown?: never;
|
|
66
|
-
}
|
|
67
|
-
interface $UnknownMember {
|
|
68
|
-
s3?: never;
|
|
69
|
-
memberList?: never;
|
|
70
|
-
distribute?: never;
|
|
71
|
-
$unknown: [string, any];
|
|
72
|
-
}
|
|
73
|
-
interface Visitor<T> {
|
|
74
|
-
s3: (value: ProtectedQueryS3Output) => T;
|
|
75
|
-
memberList: (value: ProtectedQuerySingleMemberOutput[]) => T;
|
|
76
|
-
distribute: (value: ProtectedQueryDistributeOutput) => T;
|
|
77
|
-
_: (name: string, value: any) => T;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
export interface ProtectedQueryResult {
|
|
81
|
-
output: ProtectedQueryOutput | undefined;
|
|
82
|
-
}
|
|
83
|
-
export interface ProtectedQueryMemberOutputConfiguration {
|
|
84
|
-
accountId: string | undefined;
|
|
85
|
-
}
|
|
86
|
-
export type ProtectedQueryDistributeOutputConfigurationLocation =
|
|
87
|
-
| ProtectedQueryDistributeOutputConfigurationLocation.MemberMember
|
|
88
|
-
| ProtectedQueryDistributeOutputConfigurationLocation.S3Member
|
|
89
|
-
| ProtectedQueryDistributeOutputConfigurationLocation.$UnknownMember;
|
|
90
|
-
export declare namespace ProtectedQueryDistributeOutputConfigurationLocation {
|
|
91
|
-
interface S3Member {
|
|
92
|
-
s3: ProtectedQueryS3OutputConfiguration;
|
|
93
|
-
member?: never;
|
|
94
|
-
$unknown?: never;
|
|
95
|
-
}
|
|
96
|
-
interface MemberMember {
|
|
97
|
-
s3?: never;
|
|
98
|
-
member: ProtectedQueryMemberOutputConfiguration;
|
|
99
|
-
$unknown?: never;
|
|
100
|
-
}
|
|
101
|
-
interface $UnknownMember {
|
|
102
|
-
s3?: never;
|
|
103
|
-
member?: never;
|
|
104
|
-
$unknown: [string, any];
|
|
105
|
-
}
|
|
106
|
-
interface Visitor<T> {
|
|
107
|
-
s3: (value: ProtectedQueryS3OutputConfiguration) => T;
|
|
108
|
-
member: (value: ProtectedQueryMemberOutputConfiguration) => T;
|
|
109
|
-
_: (name: string, value: any) => T;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
export interface ProtectedQueryDistributeOutputConfiguration {
|
|
113
|
-
locations: ProtectedQueryDistributeOutputConfigurationLocation[] | undefined;
|
|
114
|
-
}
|
|
115
|
-
export type ProtectedQueryOutputConfiguration =
|
|
116
|
-
| ProtectedQueryOutputConfiguration.DistributeMember
|
|
117
|
-
| ProtectedQueryOutputConfiguration.MemberMember
|
|
118
|
-
| ProtectedQueryOutputConfiguration.S3Member
|
|
119
|
-
| ProtectedQueryOutputConfiguration.$UnknownMember;
|
|
120
|
-
export declare namespace ProtectedQueryOutputConfiguration {
|
|
121
|
-
interface S3Member {
|
|
122
|
-
s3: ProtectedQueryS3OutputConfiguration;
|
|
123
|
-
member?: never;
|
|
124
|
-
distribute?: never;
|
|
125
|
-
$unknown?: never;
|
|
126
|
-
}
|
|
127
|
-
interface MemberMember {
|
|
128
|
-
s3?: never;
|
|
129
|
-
member: ProtectedQueryMemberOutputConfiguration;
|
|
130
|
-
distribute?: never;
|
|
131
|
-
$unknown?: never;
|
|
132
|
-
}
|
|
133
|
-
interface DistributeMember {
|
|
134
|
-
s3?: never;
|
|
135
|
-
member?: never;
|
|
136
|
-
distribute: ProtectedQueryDistributeOutputConfiguration;
|
|
137
|
-
$unknown?: never;
|
|
138
|
-
}
|
|
139
|
-
interface $UnknownMember {
|
|
140
|
-
s3?: never;
|
|
141
|
-
member?: never;
|
|
142
|
-
distribute?: never;
|
|
143
|
-
$unknown: [string, any];
|
|
144
|
-
}
|
|
145
|
-
interface Visitor<T> {
|
|
146
|
-
s3: (value: ProtectedQueryS3OutputConfiguration) => T;
|
|
147
|
-
member: (value: ProtectedQueryMemberOutputConfiguration) => T;
|
|
148
|
-
distribute: (value: ProtectedQueryDistributeOutputConfiguration) => T;
|
|
149
|
-
_: (name: string, value: any) => T;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
export interface ProtectedQueryResultConfiguration {
|
|
153
|
-
outputConfiguration: ProtectedQueryOutputConfiguration | undefined;
|
|
154
|
-
}
|
|
155
|
-
export interface ProtectedQuerySQLParameters {
|
|
156
|
-
queryString?: string | undefined;
|
|
157
|
-
analysisTemplateArn?: string | undefined;
|
|
158
|
-
parameters?: Record<string, string> | undefined;
|
|
159
|
-
}
|
|
160
|
-
export interface BilledResourceUtilization {
|
|
161
|
-
units: number | undefined;
|
|
162
|
-
}
|
|
163
|
-
export interface ProtectedQueryStatistics {
|
|
164
|
-
totalDurationInMillis?: number | undefined;
|
|
165
|
-
billedResourceUtilization?: BilledResourceUtilization | undefined;
|
|
166
|
-
}
|
|
167
|
-
export declare const ProtectedQueryStatus: {
|
|
168
|
-
readonly CANCELLED: "CANCELLED";
|
|
169
|
-
readonly CANCELLING: "CANCELLING";
|
|
170
|
-
readonly FAILED: "FAILED";
|
|
171
|
-
readonly STARTED: "STARTED";
|
|
172
|
-
readonly SUBMITTED: "SUBMITTED";
|
|
173
|
-
readonly SUCCESS: "SUCCESS";
|
|
174
|
-
readonly TIMED_OUT: "TIMED_OUT";
|
|
175
|
-
};
|
|
176
|
-
export type ProtectedQueryStatus =
|
|
177
|
-
(typeof ProtectedQueryStatus)[keyof typeof ProtectedQueryStatus];
|
|
178
39
|
export interface ProtectedQuery {
|
|
179
40
|
id: string | undefined;
|
|
180
41
|
membershipId: string | undefined;
|
|
@@ -415,11 +276,6 @@ export interface StartProtectedJobInput {
|
|
|
415
276
|
export interface StartProtectedJobOutput {
|
|
416
277
|
protectedJob: ProtectedJob | undefined;
|
|
417
278
|
}
|
|
418
|
-
export declare const ProtectedQueryType: {
|
|
419
|
-
readonly SQL: "SQL";
|
|
420
|
-
};
|
|
421
|
-
export type ProtectedQueryType =
|
|
422
|
-
(typeof ProtectedQueryType)[keyof typeof ProtectedQueryType];
|
|
423
279
|
export interface StartProtectedQueryInput {
|
|
424
280
|
type: ProtectedQueryType | undefined;
|
|
425
281
|
membershipIdentifier: string | undefined;
|
|
@@ -452,11 +308,6 @@ export interface UpdateProtectedJobInput {
|
|
|
452
308
|
export interface UpdateProtectedJobOutput {
|
|
453
309
|
protectedJob: ProtectedJob | undefined;
|
|
454
310
|
}
|
|
455
|
-
export declare const TargetProtectedQueryStatus: {
|
|
456
|
-
readonly CANCELLED: "CANCELLED";
|
|
457
|
-
};
|
|
458
|
-
export type TargetProtectedQueryStatus =
|
|
459
|
-
(typeof TargetProtectedQueryStatus)[keyof typeof TargetProtectedQueryStatus];
|
|
460
311
|
export interface UpdateProtectedQueryInput {
|
|
461
312
|
membershipIdentifier: string | undefined;
|
|
462
313
|
protectedQueryIdentifier: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cleanrooms",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cleanrooms Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.940.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cleanrooms",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.940.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.940.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.940.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
30
|
"@aws-sdk/types": "3.936.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.940.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|