@aws-sdk/client-cleanrooms 3.428.0 → 3.429.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.
@@ -22,7 +22,7 @@ export declare class AccessDeniedException extends __BaseException {
22
22
  * @public
23
23
  * <p>A reason code for the exception.</p>
24
24
  */
25
- reason?: AccessDeniedExceptionReason | string;
25
+ reason?: AccessDeniedExceptionReason;
26
26
  /**
27
27
  * @internal
28
28
  */
@@ -57,7 +57,7 @@ export interface AggregateColumn {
57
57
  * @public
58
58
  * <p>Aggregation function that can be applied to aggregate column in query.</p>
59
59
  */
60
- function: AggregateFunctionName | string | undefined;
60
+ function: AggregateFunctionName | undefined;
61
61
  }
62
62
  /**
63
63
  * @public
@@ -94,7 +94,7 @@ export interface AggregationConstraint {
94
94
  * <p>The type of aggregation the constraint allows. The only valid value is currently
95
95
  * `COUNT_DISTINCT`.</p>
96
96
  */
97
- type: AggregationType | string | undefined;
97
+ type: AggregationType | undefined;
98
98
  }
99
99
  /**
100
100
  * @public
@@ -159,7 +159,7 @@ export interface AnalysisParameter {
159
159
  * @public
160
160
  * <p>The type of parameter.</p>
161
161
  */
162
- type: ParameterType | string | undefined;
162
+ type: ParameterType | undefined;
163
163
  /**
164
164
  * @public
165
165
  * <p>Optional. The default value that is applied in the analysis template. The member who can
@@ -235,13 +235,13 @@ export interface AnalysisRuleAggregation {
235
235
  * <p>Control that requires member who runs query to do a join with their configured table
236
236
  * and/or other configured table in query.</p>
237
237
  */
238
- joinRequired?: JoinRequiredOption | string;
238
+ joinRequired?: JoinRequiredOption;
239
239
  /**
240
240
  * @public
241
241
  * <p>Which logical operators (if any) are to be used in an INNER JOIN match condition.
242
242
  * Default is <code>AND</code>.</p>
243
243
  */
244
- allowedJoinOperators?: (JoinOperator | string)[];
244
+ allowedJoinOperators?: JoinOperator[];
245
245
  /**
246
246
  * @public
247
247
  * <p>The columns that query runners are allowed to select, group by, or filter by.</p>
@@ -252,7 +252,7 @@ export interface AnalysisRuleAggregation {
252
252
  * <p>Set of scalar functions that are allowed to be used on dimension columns and the output
253
253
  * of aggregation of metrics.</p>
254
254
  */
255
- scalarFunctions: (ScalarFunctions | string)[] | undefined;
255
+ scalarFunctions: ScalarFunctions[] | undefined;
256
256
  /**
257
257
  * @public
258
258
  * <p>Columns that must meet a specific threshold value (after an aggregation function is
@@ -294,7 +294,7 @@ export interface AnalysisRuleList {
294
294
  * <p>The logical operators (if any) that are to be used in an INNER JOIN match condition.
295
295
  * Default is <code>AND</code>.</p>
296
296
  */
297
- allowedJoinOperators?: (JoinOperator | string)[];
297
+ allowedJoinOperators?: JoinOperator[];
298
298
  /**
299
299
  * @public
300
300
  * <p>Columns that can be listed in the output.</p>
@@ -414,7 +414,7 @@ export interface AnalysisRule {
414
414
  * @public
415
415
  * <p>The type of analysis rule.</p>
416
416
  */
417
- type: AnalysisRuleType | string | undefined;
417
+ type: AnalysisRuleType | undefined;
418
418
  /**
419
419
  * @public
420
420
  * <p>The name for the analysis rule.</p>
@@ -541,7 +541,7 @@ export interface AnalysisTemplate {
541
541
  * @public
542
542
  * <p>The format of the analysis template.</p>
543
543
  */
544
- format: AnalysisFormat | string | undefined;
544
+ format: AnalysisFormat | undefined;
545
545
  /**
546
546
  * @public
547
547
  * <p>The source of the analysis template.</p>
@@ -596,12 +596,12 @@ export declare class ConflictException extends __BaseException {
596
596
  * @public
597
597
  * <p>The type of the conflicting resource.</p>
598
598
  */
599
- resourceType?: ResourceType | string;
599
+ resourceType?: ResourceType;
600
600
  /**
601
601
  * @public
602
602
  * <p>A reason code for the exception.</p>
603
603
  */
604
- reason?: ConflictExceptionReason | string;
604
+ reason?: ConflictExceptionReason;
605
605
  /**
606
606
  * @internal
607
607
  */
@@ -630,7 +630,7 @@ export interface CreateAnalysisTemplateInput {
630
630
  * @public
631
631
  * <p>The format of the analysis template.</p>
632
632
  */
633
- format: AnalysisFormat | string | undefined;
633
+ format: AnalysisFormat | undefined;
634
634
  /**
635
635
  * @public
636
636
  * <p>The information in the analysis template. Currently supports <code>text</code>, the
@@ -689,7 +689,7 @@ export declare class ResourceNotFoundException extends __BaseException {
689
689
  * @public
690
690
  * <p>The type of the missing resource.</p>
691
691
  */
692
- resourceType: ResourceType | string | undefined;
692
+ resourceType: ResourceType | undefined;
693
693
  /**
694
694
  * @internal
695
695
  */
@@ -770,7 +770,7 @@ export declare class ValidationException extends __BaseException {
770
770
  * @public
771
771
  * <p>A reason code for the exception.</p>
772
772
  */
773
- reason?: ValidationExceptionReason | string;
773
+ reason?: ValidationExceptionReason;
774
774
  /**
775
775
  * @public
776
776
  * <p>Validation errors for specific input parameters.</p>
@@ -1028,7 +1028,7 @@ export interface CollaborationAnalysisTemplate {
1028
1028
  * @public
1029
1029
  * <p>The format of the analysis template in the collaboration.</p>
1030
1030
  */
1031
- format: AnalysisFormat | string | undefined;
1031
+ format: AnalysisFormat | undefined;
1032
1032
  /**
1033
1033
  * @public
1034
1034
  * <p>The source of the analysis template within a collaboration.</p>
@@ -1164,13 +1164,13 @@ export interface Schema {
1164
1164
  * <p>The analysis rule types associated with the schema. Currently, only one entry is
1165
1165
  * present.</p>
1166
1166
  */
1167
- analysisRuleTypes: (AnalysisRuleType | string)[] | undefined;
1167
+ analysisRuleTypes: AnalysisRuleType[] | undefined;
1168
1168
  /**
1169
1169
  * @public
1170
1170
  * <p>The analysis method for the schema. The only valid value is currently
1171
1171
  * DIRECT_QUERY.</p>
1172
1172
  */
1173
- analysisMethod?: AnalysisMethod | string;
1173
+ analysisMethod?: AnalysisMethod;
1174
1174
  /**
1175
1175
  * @public
1176
1176
  * <p>The unique account ID for the Amazon Web Services account that owns the schema.</p>
@@ -1211,7 +1211,7 @@ export interface Schema {
1211
1211
  * @public
1212
1212
  * <p>The type of schema. The only valid value is currently `TABLE`.</p>
1213
1213
  */
1214
- type: SchemaType | string | undefined;
1214
+ type: SchemaType | undefined;
1215
1215
  }
1216
1216
  /**
1217
1217
  * @public
@@ -1287,7 +1287,7 @@ export interface MemberSpecification {
1287
1287
  * @public
1288
1288
  * <p>The abilities granted to the collaboration member.</p>
1289
1289
  */
1290
- memberAbilities: (MemberAbility | string)[] | undefined;
1290
+ memberAbilities: MemberAbility[] | undefined;
1291
1291
  /**
1292
1292
  * @public
1293
1293
  * <p>The member's display name.</p>
@@ -1329,7 +1329,7 @@ export interface CreateCollaborationInput {
1329
1329
  * @public
1330
1330
  * <p>The abilities granted to the collaboration creator.</p>
1331
1331
  */
1332
- creatorMemberAbilities: (MemberAbility | string)[] | undefined;
1332
+ creatorMemberAbilities: MemberAbility[] | undefined;
1333
1333
  /**
1334
1334
  * @public
1335
1335
  * <p>The display name of the collaboration creator.</p>
@@ -1346,7 +1346,7 @@ export interface CreateCollaborationInput {
1346
1346
  * <p>An indicator as to whether query logging has been enabled or disabled for the
1347
1347
  * collaboration.</p>
1348
1348
  */
1349
- queryLogStatus: CollaborationQueryLogStatus | string | undefined;
1349
+ queryLogStatus: CollaborationQueryLogStatus | undefined;
1350
1350
  /**
1351
1351
  * @public
1352
1352
  * <p>An optional label that you can assign to a resource when you create it. Each tag
@@ -1422,7 +1422,7 @@ export interface Collaboration {
1422
1422
  * @public
1423
1423
  * <p>The status of a member in a collaboration.</p>
1424
1424
  */
1425
- memberStatus: MemberStatus | string | undefined;
1425
+ memberStatus: MemberStatus | undefined;
1426
1426
  /**
1427
1427
  * @public
1428
1428
  * <p>The unique ID for your membership within the collaboration.</p>
@@ -1443,7 +1443,7 @@ export interface Collaboration {
1443
1443
  * <p>An indicator as to whether query logging has been enabled or disabled for the
1444
1444
  * collaboration.</p>
1445
1445
  */
1446
- queryLogStatus: CollaborationQueryLogStatus | string | undefined;
1446
+ queryLogStatus: CollaborationQueryLogStatus | undefined;
1447
1447
  }
1448
1448
  /**
1449
1449
  * @public
@@ -1583,7 +1583,7 @@ export interface GetSchemaAnalysisRuleInput {
1583
1583
  * <p>The type of the schema analysis rule to retrieve. Schema analysis rules are uniquely
1584
1584
  * identified by a combination of the collaboration, the schema name, and their type.</p>
1585
1585
  */
1586
- type: AnalysisRuleType | string | undefined;
1586
+ type: AnalysisRuleType | undefined;
1587
1587
  }
1588
1588
  /**
1589
1589
  * @public
@@ -1721,7 +1721,7 @@ export interface ListCollaborationsInput {
1721
1721
  * @public
1722
1722
  * <p>The caller's status in a collaboration.</p>
1723
1723
  */
1724
- memberStatus?: FilterableMemberStatus | string;
1724
+ memberStatus?: FilterableMemberStatus;
1725
1725
  }
1726
1726
  /**
1727
1727
  * @public
@@ -1769,7 +1769,7 @@ export interface CollaborationSummary {
1769
1769
  * @public
1770
1770
  * <p>The status of a member in a collaboration.</p>
1771
1771
  */
1772
- memberStatus: MemberStatus | string | undefined;
1772
+ memberStatus: MemberStatus | undefined;
1773
1773
  /**
1774
1774
  * @public
1775
1775
  * <p>The identifier of a member in a collaboration.</p>
@@ -1834,7 +1834,7 @@ export interface MemberSummary {
1834
1834
  * <p>The status of the member. Valid values are `INVITED`, `ACTIVE`, `LEFT`, and
1835
1835
  * `REMOVED`.</p>
1836
1836
  */
1837
- status: MemberStatus | string | undefined;
1837
+ status: MemberStatus | undefined;
1838
1838
  /**
1839
1839
  * @public
1840
1840
  * <p>The member's display name.</p>
@@ -1844,7 +1844,7 @@ export interface MemberSummary {
1844
1844
  * @public
1845
1845
  * <p>The abilities granted to the collaboration member.</p>
1846
1846
  */
1847
- abilities: (MemberAbility | string)[] | undefined;
1847
+ abilities: MemberAbility[] | undefined;
1848
1848
  /**
1849
1849
  * @public
1850
1850
  * <p>The time when the member was created.</p>
@@ -1897,7 +1897,7 @@ export interface ListSchemasInput {
1897
1897
  * <p>If present, filter schemas by schema type. The only valid schema type is currently
1898
1898
  * `TABLE`.</p>
1899
1899
  */
1900
- schemaType?: SchemaType | string;
1900
+ schemaType?: SchemaType;
1901
1901
  /**
1902
1902
  * @public
1903
1903
  * <p>The token value retrieved from a previous call to access the next page of
@@ -1924,7 +1924,7 @@ export interface SchemaSummary {
1924
1924
  * @public
1925
1925
  * <p>The type of schema object. The only valid schema type is currently `TABLE`.</p>
1926
1926
  */
1927
- type: SchemaType | string | undefined;
1927
+ type: SchemaType | undefined;
1928
1928
  /**
1929
1929
  * @public
1930
1930
  * <p>The unique account ID for the Amazon Web Services account that owns the schema.</p>
@@ -1954,13 +1954,13 @@ export interface SchemaSummary {
1954
1954
  * @public
1955
1955
  * <p>The types of analysis rules that are associated with this schema object.</p>
1956
1956
  */
1957
- analysisRuleTypes: (AnalysisRuleType | string)[] | undefined;
1957
+ analysisRuleTypes: AnalysisRuleType[] | undefined;
1958
1958
  /**
1959
1959
  * @public
1960
1960
  * <p>The analysis method for the associated schema. The only valid value is currently
1961
1961
  * `DIRECT_QUERY`.</p>
1962
1962
  */
1963
- analysisMethod?: AnalysisMethod | string;
1963
+ analysisMethod?: AnalysisMethod;
1964
1964
  }
1965
1965
  /**
1966
1966
  * @public
@@ -2374,7 +2374,7 @@ export interface CreateConfiguredTableInput {
2374
2374
  * <p>The analysis method for the configured tables. The only valid value is currently
2375
2375
  * `DIRECT_QUERY`.</p>
2376
2376
  */
2377
- analysisMethod: AnalysisMethod | string | undefined;
2377
+ analysisMethod: AnalysisMethod | undefined;
2378
2378
  /**
2379
2379
  * @public
2380
2380
  * <p>An optional label that you can assign to a resource when you create it. Each tag
@@ -2442,13 +2442,13 @@ export interface ConfiguredTable {
2442
2442
  * <p>The types of analysis rules associated with this configured table. Currently, only one
2443
2443
  * analysis rule may be associated with a configured table.</p>
2444
2444
  */
2445
- analysisRuleTypes: (ConfiguredTableAnalysisRuleType | string)[] | undefined;
2445
+ analysisRuleTypes: ConfiguredTableAnalysisRuleType[] | undefined;
2446
2446
  /**
2447
2447
  * @public
2448
2448
  * <p>The analysis method for the configured table. The only valid value is currently
2449
2449
  * `DIRECT_QUERY`.</p>
2450
2450
  */
2451
- analysisMethod: AnalysisMethod | string | undefined;
2451
+ analysisMethod: AnalysisMethod | undefined;
2452
2452
  /**
2453
2453
  * @public
2454
2454
  * <p>The columns within the underlying Glue table that can be utilized within
@@ -2567,7 +2567,7 @@ export interface CreateConfiguredTableAnalysisRuleInput {
2567
2567
  * @public
2568
2568
  * <p>The type of analysis rule.</p>
2569
2569
  */
2570
- analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
2570
+ analysisRuleType: ConfiguredTableAnalysisRuleType | undefined;
2571
2571
  /**
2572
2572
  * @public
2573
2573
  * <p>The entire created configured table analysis rule object.</p>
@@ -2599,7 +2599,7 @@ export interface ConfiguredTableAnalysisRule {
2599
2599
  * @public
2600
2600
  * <p>The type of configured table analysis rule.</p>
2601
2601
  */
2602
- type: ConfiguredTableAnalysisRuleType | string | undefined;
2602
+ type: ConfiguredTableAnalysisRuleType | undefined;
2603
2603
  /**
2604
2604
  * @public
2605
2605
  * <p>The time the configured table analysis rule was created.</p>
@@ -2652,7 +2652,7 @@ export interface DeleteConfiguredTableAnalysisRuleInput {
2652
2652
  * <p>The analysis rule type to be deleted. Configured table analysis rules are uniquely
2653
2653
  * identified by their configured table identifier and analysis rule type.</p>
2654
2654
  */
2655
- analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
2655
+ analysisRuleType: ConfiguredTableAnalysisRuleType | undefined;
2656
2656
  }
2657
2657
  /**
2658
2658
  * @public
@@ -2695,7 +2695,7 @@ export interface GetConfiguredTableAnalysisRuleInput {
2695
2695
  * <p>The analysis rule to be retrieved. Configured table analysis rules are uniquely
2696
2696
  * identified by their configured table identifier and analysis rule type.</p>
2697
2697
  */
2698
- analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
2698
+ analysisRuleType: ConfiguredTableAnalysisRuleType | undefined;
2699
2699
  }
2700
2700
  /**
2701
2701
  * @public
@@ -2757,13 +2757,13 @@ export interface ConfiguredTableSummary {
2757
2757
  * @public
2758
2758
  * <p>The types of analysis rules associated with this configured table.</p>
2759
2759
  */
2760
- analysisRuleTypes: (ConfiguredTableAnalysisRuleType | string)[] | undefined;
2760
+ analysisRuleTypes: ConfiguredTableAnalysisRuleType[] | undefined;
2761
2761
  /**
2762
2762
  * @public
2763
2763
  * <p>The analysis method for the configured tables. The only valid value is currently
2764
2764
  * `DIRECT_QUERY`.</p>
2765
2765
  */
2766
- analysisMethod: AnalysisMethod | string | undefined;
2766
+ analysisMethod: AnalysisMethod | undefined;
2767
2767
  }
2768
2768
  /**
2769
2769
  * @public
@@ -2827,7 +2827,7 @@ export interface UpdateConfiguredTableAnalysisRuleInput {
2827
2827
  * <p>The analysis rule type to be updated. Configured table analysis rules are uniquely
2828
2828
  * identified by their configured table identifier and analysis rule type.</p>
2829
2829
  */
2830
- analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
2830
+ analysisRuleType: ConfiguredTableAnalysisRuleType | undefined;
2831
2831
  /**
2832
2832
  * @public
2833
2833
  * <p>The new analysis rule policy for the configured table analysis rule.</p>
@@ -2886,7 +2886,7 @@ export interface ProtectedQueryS3OutputConfiguration {
2886
2886
  * @public
2887
2887
  * <p>Intended file format of the result.</p>
2888
2888
  */
2889
- resultFormat: ResultFormat | string | undefined;
2889
+ resultFormat: ResultFormat | undefined;
2890
2890
  /**
2891
2891
  * @public
2892
2892
  * <p>The S3 bucket to unload the protected query results.</p>
@@ -2975,7 +2975,7 @@ export interface CreateMembershipInput {
2975
2975
  * <p>An indicator as to whether query logging has been enabled or disabled for the
2976
2976
  * collaboration.</p>
2977
2977
  */
2978
- queryLogStatus: MembershipQueryLogStatus | string | undefined;
2978
+ queryLogStatus: MembershipQueryLogStatus | undefined;
2979
2979
  /**
2980
2980
  * @public
2981
2981
  * <p>An optional label that you can assign to a resource when you create it. Each tag
@@ -3061,18 +3061,18 @@ export interface Membership {
3061
3061
  * <p>The status of the membership. Valid values are `ACTIVE`, `REMOVED`, and
3062
3062
  * `COLLABORATION_DELETED`.</p>
3063
3063
  */
3064
- status: MembershipStatus | string | undefined;
3064
+ status: MembershipStatus | undefined;
3065
3065
  /**
3066
3066
  * @public
3067
3067
  * <p>The abilities granted to the collaboration member.</p>
3068
3068
  */
3069
- memberAbilities: (MemberAbility | string)[] | undefined;
3069
+ memberAbilities: MemberAbility[] | undefined;
3070
3070
  /**
3071
3071
  * @public
3072
3072
  * <p>An indicator as to whether query logging has been enabled or disabled for the
3073
3073
  * collaboration.</p>
3074
3074
  */
3075
- queryLogStatus: MembershipQueryLogStatus | string | undefined;
3075
+ queryLogStatus: MembershipQueryLogStatus | undefined;
3076
3076
  /**
3077
3077
  * @public
3078
3078
  * <p>The default
@@ -3361,7 +3361,7 @@ export interface ProtectedQuery {
3361
3361
  * @public
3362
3362
  * <p>The status of the query.</p>
3363
3363
  */
3364
- status: ProtectedQueryStatus | string | undefined;
3364
+ status: ProtectedQueryStatus | undefined;
3365
3365
  /**
3366
3366
  * @public
3367
3367
  * <p>Contains any details needed to write the query results.</p>
@@ -3412,7 +3412,7 @@ export interface ListMembershipsInput {
3412
3412
  * @public
3413
3413
  * <p>A filter which will return only memberships in the specified status.</p>
3414
3414
  */
3415
- status?: MembershipStatus | string;
3415
+ status?: MembershipStatus;
3416
3416
  }
3417
3417
  /**
3418
3418
  * @public
@@ -3470,12 +3470,12 @@ export interface MembershipSummary {
3470
3470
  * <p>The status of the membership. Valid values are `ACTIVE`, `REMOVED`, and
3471
3471
  * `COLLABORATION_DELETED`.</p>
3472
3472
  */
3473
- status: MembershipStatus | string | undefined;
3473
+ status: MembershipStatus | undefined;
3474
3474
  /**
3475
3475
  * @public
3476
3476
  * <p>The abilities granted to the collaboration member.</p>
3477
3477
  */
3478
- memberAbilities: (MemberAbility | string)[] | undefined;
3478
+ memberAbilities: MemberAbility[] | undefined;
3479
3479
  }
3480
3480
  /**
3481
3481
  * @public
@@ -3506,7 +3506,7 @@ export interface ListProtectedQueriesInput {
3506
3506
  * @public
3507
3507
  * <p>A filter on the status of the protected query.</p>
3508
3508
  */
3509
- status?: ProtectedQueryStatus | string;
3509
+ status?: ProtectedQueryStatus;
3510
3510
  /**
3511
3511
  * @public
3512
3512
  * <p>The token value retrieved from a previous call to access the next page of
@@ -3551,7 +3551,7 @@ export interface ProtectedQuerySummary {
3551
3551
  * <p>The status of the protected query. Value values are `SUBMITTED`, `STARTED`, `CANCELLED`,
3552
3552
  * `CANCELLING`, `FAILED`, `SUCCESS`, `TIMED_OUT`.</p>
3553
3553
  */
3554
- status: ProtectedQueryStatus | string | undefined;
3554
+ status: ProtectedQueryStatus | undefined;
3555
3555
  }
3556
3556
  /**
3557
3557
  * @public
@@ -3588,7 +3588,7 @@ export interface StartProtectedQueryInput {
3588
3588
  * @public
3589
3589
  * <p>The type of the protected query to be started.</p>
3590
3590
  */
3591
- type: ProtectedQueryType | string | undefined;
3591
+ type: ProtectedQueryType | undefined;
3592
3592
  /**
3593
3593
  * @public
3594
3594
  * <p>A unique identifier for the membership to run this query against. Currently accepts a
@@ -3630,7 +3630,7 @@ export interface UpdateMembershipInput {
3630
3630
  * <p>An indicator as to whether query logging has been enabled or disabled for the
3631
3631
  * collaboration.</p>
3632
3632
  */
3633
- queryLogStatus?: MembershipQueryLogStatus | string;
3633
+ queryLogStatus?: MembershipQueryLogStatus;
3634
3634
  /**
3635
3635
  * @public
3636
3636
  * <p>The default
@@ -3679,7 +3679,7 @@ export interface UpdateProtectedQueryInput {
3679
3679
  * <p>The target status of a query. Used to update the execution status of a currently running
3680
3680
  * query.</p>
3681
3681
  */
3682
- targetStatus: TargetProtectedQueryStatus | string | undefined;
3682
+ targetStatus: TargetProtectedQueryStatus | undefined;
3683
3683
  }
3684
3684
  /**
3685
3685
  * @public
@@ -8,7 +8,7 @@ export type AccessDeniedExceptionReason =
8
8
  export declare class AccessDeniedException extends __BaseException {
9
9
  readonly name: "AccessDeniedException";
10
10
  readonly $fault: "client";
11
- reason?: AccessDeniedExceptionReason | string;
11
+ reason?: AccessDeniedExceptionReason;
12
12
  constructor(
13
13
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
14
14
  );
@@ -24,7 +24,7 @@ export type AggregateFunctionName =
24
24
  (typeof AggregateFunctionName)[keyof typeof AggregateFunctionName];
25
25
  export interface AggregateColumn {
26
26
  columnNames: string[] | undefined;
27
- function: AggregateFunctionName | string | undefined;
27
+ function: AggregateFunctionName | undefined;
28
28
  }
29
29
  export declare const AggregationType: {
30
30
  readonly COUNT_DISTINCT: "COUNT_DISTINCT";
@@ -34,7 +34,7 @@ export type AggregationType =
34
34
  export interface AggregationConstraint {
35
35
  columnName: string | undefined;
36
36
  minimum: number | undefined;
37
- type: AggregationType | string | undefined;
37
+ type: AggregationType | undefined;
38
38
  }
39
39
  export declare const AnalysisFormat: {
40
40
  readonly SQL: "SQL";
@@ -66,7 +66,7 @@ export declare const ParameterType: {
66
66
  export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
67
67
  export interface AnalysisParameter {
68
68
  name: string | undefined;
69
- type: ParameterType | string | undefined;
69
+ type: ParameterType | undefined;
70
70
  defaultValue?: string;
71
71
  }
72
72
  export declare const JoinOperator: {
@@ -99,10 +99,10 @@ export type ScalarFunctions =
99
99
  export interface AnalysisRuleAggregation {
100
100
  aggregateColumns: AggregateColumn[] | undefined;
101
101
  joinColumns: string[] | undefined;
102
- joinRequired?: JoinRequiredOption | string;
103
- allowedJoinOperators?: (JoinOperator | string)[];
102
+ joinRequired?: JoinRequiredOption;
103
+ allowedJoinOperators?: JoinOperator[];
104
104
  dimensionColumns: string[] | undefined;
105
- scalarFunctions: (ScalarFunctions | string)[] | undefined;
105
+ scalarFunctions: ScalarFunctions[] | undefined;
106
106
  outputConstraints: AggregationConstraint[] | undefined;
107
107
  }
108
108
  export interface AnalysisRuleCustom {
@@ -111,7 +111,7 @@ export interface AnalysisRuleCustom {
111
111
  }
112
112
  export interface AnalysisRuleList {
113
113
  joinColumns: string[] | undefined;
114
- allowedJoinOperators?: (JoinOperator | string)[];
114
+ allowedJoinOperators?: JoinOperator[];
115
115
  listColumns: string[] | undefined;
116
116
  }
117
117
  export type AnalysisRulePolicyV1 =
@@ -179,7 +179,7 @@ export type AnalysisRuleType =
179
179
  (typeof AnalysisRuleType)[keyof typeof AnalysisRuleType];
180
180
  export interface AnalysisRule {
181
181
  collaborationId: string | undefined;
182
- type: AnalysisRuleType | string | undefined;
182
+ type: AnalysisRuleType | undefined;
183
183
  name: string | undefined;
184
184
  createTime: Date | undefined;
185
185
  updateTime: Date | undefined;
@@ -218,7 +218,7 @@ export interface AnalysisTemplate {
218
218
  createTime: Date | undefined;
219
219
  updateTime: Date | undefined;
220
220
  schema: AnalysisSchema | undefined;
221
- format: AnalysisFormat | string | undefined;
221
+ format: AnalysisFormat | undefined;
222
222
  source: AnalysisSource | undefined;
223
223
  analysisParameters?: AnalysisParameter[];
224
224
  }
@@ -240,15 +240,15 @@ export declare class ConflictException extends __BaseException {
240
240
  readonly name: "ConflictException";
241
241
  readonly $fault: "client";
242
242
  resourceId?: string;
243
- resourceType?: ResourceType | string;
244
- reason?: ConflictExceptionReason | string;
243
+ resourceType?: ResourceType;
244
+ reason?: ConflictExceptionReason;
245
245
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
246
246
  }
247
247
  export interface CreateAnalysisTemplateInput {
248
248
  description?: string;
249
249
  membershipIdentifier: string | undefined;
250
250
  name: string | undefined;
251
- format: AnalysisFormat | string | undefined;
251
+ format: AnalysisFormat | undefined;
252
252
  source: AnalysisSource | undefined;
253
253
  tags?: Record<string, string>;
254
254
  analysisParameters?: AnalysisParameter[];
@@ -267,7 +267,7 @@ export declare class ResourceNotFoundException extends __BaseException {
267
267
  readonly name: "ResourceNotFoundException";
268
268
  readonly $fault: "client";
269
269
  resourceId: string | undefined;
270
- resourceType: ResourceType | string | undefined;
270
+ resourceType: ResourceType | undefined;
271
271
  constructor(
272
272
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
273
273
  );
@@ -303,7 +303,7 @@ export type ValidationExceptionReason =
303
303
  export declare class ValidationException extends __BaseException {
304
304
  readonly name: "ValidationException";
305
305
  readonly $fault: "client";
306
- reason?: ValidationExceptionReason | string;
306
+ reason?: ValidationExceptionReason;
307
307
  fieldList?: ValidationExceptionField[];
308
308
  constructor(
309
309
  opts: __ExceptionOptionType<ValidationException, __BaseException>
@@ -365,7 +365,7 @@ export interface CollaborationAnalysisTemplate {
365
365
  createTime: Date | undefined;
366
366
  updateTime: Date | undefined;
367
367
  schema: AnalysisSchema | undefined;
368
- format: AnalysisFormat | string | undefined;
368
+ format: AnalysisFormat | undefined;
369
369
  source: AnalysisSource | undefined;
370
370
  analysisParameters?: AnalysisParameter[];
371
371
  }
@@ -398,8 +398,8 @@ export type SchemaType = (typeof SchemaType)[keyof typeof SchemaType];
398
398
  export interface Schema {
399
399
  columns: Column[] | undefined;
400
400
  partitionKeys: Column[] | undefined;
401
- analysisRuleTypes: (AnalysisRuleType | string)[] | undefined;
402
- analysisMethod?: AnalysisMethod | string;
401
+ analysisRuleTypes: AnalysisRuleType[] | undefined;
402
+ analysisMethod?: AnalysisMethod;
403
403
  creatorAccountId: string | undefined;
404
404
  name: string | undefined;
405
405
  collaborationId: string | undefined;
@@ -407,7 +407,7 @@ export interface Schema {
407
407
  description: string | undefined;
408
408
  createTime: Date | undefined;
409
409
  updateTime: Date | undefined;
410
- type: SchemaType | string | undefined;
410
+ type: SchemaType | undefined;
411
411
  }
412
412
  export interface BatchGetSchemaOutput {
413
413
  schemas: Schema[] | undefined;
@@ -426,7 +426,7 @@ export interface DataEncryptionMetadata {
426
426
  }
427
427
  export interface MemberSpecification {
428
428
  accountId: string | undefined;
429
- memberAbilities: (MemberAbility | string)[] | undefined;
429
+ memberAbilities: MemberAbility[] | undefined;
430
430
  displayName: string | undefined;
431
431
  }
432
432
  export declare const CollaborationQueryLogStatus: {
@@ -439,10 +439,10 @@ export interface CreateCollaborationInput {
439
439
  members: MemberSpecification[] | undefined;
440
440
  name: string | undefined;
441
441
  description: string | undefined;
442
- creatorMemberAbilities: (MemberAbility | string)[] | undefined;
442
+ creatorMemberAbilities: MemberAbility[] | undefined;
443
443
  creatorDisplayName: string | undefined;
444
444
  dataEncryptionMetadata?: DataEncryptionMetadata;
445
- queryLogStatus: CollaborationQueryLogStatus | string | undefined;
445
+ queryLogStatus: CollaborationQueryLogStatus | undefined;
446
446
  tags?: Record<string, string>;
447
447
  }
448
448
  export declare const MemberStatus: {
@@ -461,11 +461,11 @@ export interface Collaboration {
461
461
  creatorDisplayName: string | undefined;
462
462
  createTime: Date | undefined;
463
463
  updateTime: Date | undefined;
464
- memberStatus: MemberStatus | string | undefined;
464
+ memberStatus: MemberStatus | undefined;
465
465
  membershipId?: string;
466
466
  membershipArn?: string;
467
467
  dataEncryptionMetadata?: DataEncryptionMetadata;
468
- queryLogStatus: CollaborationQueryLogStatus | string | undefined;
468
+ queryLogStatus: CollaborationQueryLogStatus | undefined;
469
469
  }
470
470
  export interface CreateCollaborationOutput {
471
471
  collaboration: Collaboration | undefined;
@@ -502,7 +502,7 @@ export interface GetSchemaOutput {
502
502
  export interface GetSchemaAnalysisRuleInput {
503
503
  collaborationIdentifier: string | undefined;
504
504
  name: string | undefined;
505
- type: AnalysisRuleType | string | undefined;
505
+ type: AnalysisRuleType | undefined;
506
506
  }
507
507
  export interface GetSchemaAnalysisRuleOutput {
508
508
  analysisRule: AnalysisRule | undefined;
@@ -538,7 +538,7 @@ export type FilterableMemberStatus =
538
538
  export interface ListCollaborationsInput {
539
539
  nextToken?: string;
540
540
  maxResults?: number;
541
- memberStatus?: FilterableMemberStatus | string;
541
+ memberStatus?: FilterableMemberStatus;
542
542
  }
543
543
  export interface CollaborationSummary {
544
544
  id: string | undefined;
@@ -548,7 +548,7 @@ export interface CollaborationSummary {
548
548
  creatorDisplayName: string | undefined;
549
549
  createTime: Date | undefined;
550
550
  updateTime: Date | undefined;
551
- memberStatus: MemberStatus | string | undefined;
551
+ memberStatus: MemberStatus | undefined;
552
552
  membershipId?: string;
553
553
  membershipArn?: string;
554
554
  }
@@ -563,9 +563,9 @@ export interface ListMembersInput {
563
563
  }
564
564
  export interface MemberSummary {
565
565
  accountId: string | undefined;
566
- status: MemberStatus | string | undefined;
566
+ status: MemberStatus | undefined;
567
567
  displayName: string | undefined;
568
- abilities: (MemberAbility | string)[] | undefined;
568
+ abilities: MemberAbility[] | undefined;
569
569
  createTime: Date | undefined;
570
570
  updateTime: Date | undefined;
571
571
  membershipId?: string;
@@ -577,20 +577,20 @@ export interface ListMembersOutput {
577
577
  }
578
578
  export interface ListSchemasInput {
579
579
  collaborationIdentifier: string | undefined;
580
- schemaType?: SchemaType | string;
580
+ schemaType?: SchemaType;
581
581
  nextToken?: string;
582
582
  maxResults?: number;
583
583
  }
584
584
  export interface SchemaSummary {
585
585
  name: string | undefined;
586
- type: SchemaType | string | undefined;
586
+ type: SchemaType | undefined;
587
587
  creatorAccountId: string | undefined;
588
588
  createTime: Date | undefined;
589
589
  updateTime: Date | undefined;
590
590
  collaborationId: string | undefined;
591
591
  collaborationArn: string | undefined;
592
- analysisRuleTypes: (AnalysisRuleType | string)[] | undefined;
593
- analysisMethod?: AnalysisMethod | string;
592
+ analysisRuleTypes: AnalysisRuleType[] | undefined;
593
+ analysisMethod?: AnalysisMethod;
594
594
  }
595
595
  export interface ListSchemasOutput {
596
596
  schemaSummaries: SchemaSummary[] | undefined;
@@ -697,7 +697,7 @@ export interface CreateConfiguredTableInput {
697
697
  description?: string;
698
698
  tableReference: TableReference | undefined;
699
699
  allowedColumns: string[] | undefined;
700
- analysisMethod: AnalysisMethod | string | undefined;
700
+ analysisMethod: AnalysisMethod | undefined;
701
701
  tags?: Record<string, string>;
702
702
  }
703
703
  export declare const ConfiguredTableAnalysisRuleType: {
@@ -715,8 +715,8 @@ export interface ConfiguredTable {
715
715
  tableReference: TableReference | undefined;
716
716
  createTime: Date | undefined;
717
717
  updateTime: Date | undefined;
718
- analysisRuleTypes: (ConfiguredTableAnalysisRuleType | string)[] | undefined;
719
- analysisMethod: AnalysisMethod | string | undefined;
718
+ analysisRuleTypes: ConfiguredTableAnalysisRuleType[] | undefined;
719
+ analysisMethod: AnalysisMethod | undefined;
720
720
  allowedColumns: string[] | undefined;
721
721
  }
722
722
  export interface CreateConfiguredTableOutput {
@@ -786,14 +786,14 @@ export declare namespace ConfiguredTableAnalysisRulePolicy {
786
786
  }
787
787
  export interface CreateConfiguredTableAnalysisRuleInput {
788
788
  configuredTableIdentifier: string | undefined;
789
- analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
789
+ analysisRuleType: ConfiguredTableAnalysisRuleType | undefined;
790
790
  analysisRulePolicy: ConfiguredTableAnalysisRulePolicy | undefined;
791
791
  }
792
792
  export interface ConfiguredTableAnalysisRule {
793
793
  configuredTableId: string | undefined;
794
794
  configuredTableArn: string | undefined;
795
795
  policy: ConfiguredTableAnalysisRulePolicy | undefined;
796
- type: ConfiguredTableAnalysisRuleType | string | undefined;
796
+ type: ConfiguredTableAnalysisRuleType | undefined;
797
797
  createTime: Date | undefined;
798
798
  updateTime: Date | undefined;
799
799
  }
@@ -806,7 +806,7 @@ export interface DeleteConfiguredTableInput {
806
806
  export interface DeleteConfiguredTableOutput {}
807
807
  export interface DeleteConfiguredTableAnalysisRuleInput {
808
808
  configuredTableIdentifier: string | undefined;
809
- analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
809
+ analysisRuleType: ConfiguredTableAnalysisRuleType | undefined;
810
810
  }
811
811
  export interface DeleteConfiguredTableAnalysisRuleOutput {}
812
812
  export interface GetConfiguredTableInput {
@@ -817,7 +817,7 @@ export interface GetConfiguredTableOutput {
817
817
  }
818
818
  export interface GetConfiguredTableAnalysisRuleInput {
819
819
  configuredTableIdentifier: string | undefined;
820
- analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
820
+ analysisRuleType: ConfiguredTableAnalysisRuleType | undefined;
821
821
  }
822
822
  export interface GetConfiguredTableAnalysisRuleOutput {
823
823
  analysisRule: ConfiguredTableAnalysisRule | undefined;
@@ -832,8 +832,8 @@ export interface ConfiguredTableSummary {
832
832
  name: string | undefined;
833
833
  createTime: Date | undefined;
834
834
  updateTime: Date | undefined;
835
- analysisRuleTypes: (ConfiguredTableAnalysisRuleType | string)[] | undefined;
836
- analysisMethod: AnalysisMethod | string | undefined;
835
+ analysisRuleTypes: ConfiguredTableAnalysisRuleType[] | undefined;
836
+ analysisMethod: AnalysisMethod | undefined;
837
837
  }
838
838
  export interface ListConfiguredTablesOutput {
839
839
  configuredTableSummaries: ConfiguredTableSummary[] | undefined;
@@ -849,7 +849,7 @@ export interface UpdateConfiguredTableOutput {
849
849
  }
850
850
  export interface UpdateConfiguredTableAnalysisRuleInput {
851
851
  configuredTableIdentifier: string | undefined;
852
- analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
852
+ analysisRuleType: ConfiguredTableAnalysisRuleType | undefined;
853
853
  analysisRulePolicy: ConfiguredTableAnalysisRulePolicy | undefined;
854
854
  }
855
855
  export interface UpdateConfiguredTableAnalysisRuleOutput {
@@ -867,7 +867,7 @@ export declare const ResultFormat: {
867
867
  };
868
868
  export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat];
869
869
  export interface ProtectedQueryS3OutputConfiguration {
870
- resultFormat: ResultFormat | string | undefined;
870
+ resultFormat: ResultFormat | undefined;
871
871
  bucket: string | undefined;
872
872
  keyPrefix?: string;
873
873
  }
@@ -904,7 +904,7 @@ export type MembershipQueryLogStatus =
904
904
  (typeof MembershipQueryLogStatus)[keyof typeof MembershipQueryLogStatus];
905
905
  export interface CreateMembershipInput {
906
906
  collaborationIdentifier: string | undefined;
907
- queryLogStatus: MembershipQueryLogStatus | string | undefined;
907
+ queryLogStatus: MembershipQueryLogStatus | undefined;
908
908
  tags?: Record<string, string>;
909
909
  defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
910
910
  }
@@ -925,9 +925,9 @@ export interface Membership {
925
925
  collaborationName: string | undefined;
926
926
  createTime: Date | undefined;
927
927
  updateTime: Date | undefined;
928
- status: MembershipStatus | string | undefined;
929
- memberAbilities: (MemberAbility | string)[] | undefined;
930
- queryLogStatus: MembershipQueryLogStatus | string | undefined;
928
+ status: MembershipStatus | undefined;
929
+ memberAbilities: MemberAbility[] | undefined;
930
+ queryLogStatus: MembershipQueryLogStatus | undefined;
931
931
  defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
932
932
  }
933
933
  export interface CreateMembershipOutput {
@@ -1036,7 +1036,7 @@ export interface ProtectedQuery {
1036
1036
  membershipArn: string | undefined;
1037
1037
  createTime: Date | undefined;
1038
1038
  sqlParameters?: ProtectedQuerySQLParameters;
1039
- status: ProtectedQueryStatus | string | undefined;
1039
+ status: ProtectedQueryStatus | undefined;
1040
1040
  resultConfiguration?: ProtectedQueryResultConfiguration;
1041
1041
  statistics?: ProtectedQueryStatistics;
1042
1042
  result?: ProtectedQueryResult;
@@ -1048,7 +1048,7 @@ export interface GetProtectedQueryOutput {
1048
1048
  export interface ListMembershipsInput {
1049
1049
  nextToken?: string;
1050
1050
  maxResults?: number;
1051
- status?: MembershipStatus | string;
1051
+ status?: MembershipStatus;
1052
1052
  }
1053
1053
  export interface MembershipSummary {
1054
1054
  id: string | undefined;
@@ -1060,8 +1060,8 @@ export interface MembershipSummary {
1060
1060
  collaborationName: string | undefined;
1061
1061
  createTime: Date | undefined;
1062
1062
  updateTime: Date | undefined;
1063
- status: MembershipStatus | string | undefined;
1064
- memberAbilities: (MemberAbility | string)[] | undefined;
1063
+ status: MembershipStatus | undefined;
1064
+ memberAbilities: MemberAbility[] | undefined;
1065
1065
  }
1066
1066
  export interface ListMembershipsOutput {
1067
1067
  nextToken?: string;
@@ -1069,7 +1069,7 @@ export interface ListMembershipsOutput {
1069
1069
  }
1070
1070
  export interface ListProtectedQueriesInput {
1071
1071
  membershipIdentifier: string | undefined;
1072
- status?: ProtectedQueryStatus | string;
1072
+ status?: ProtectedQueryStatus;
1073
1073
  nextToken?: string;
1074
1074
  maxResults?: number;
1075
1075
  }
@@ -1078,7 +1078,7 @@ export interface ProtectedQuerySummary {
1078
1078
  membershipId: string | undefined;
1079
1079
  membershipArn: string | undefined;
1080
1080
  createTime: Date | undefined;
1081
- status: ProtectedQueryStatus | string | undefined;
1081
+ status: ProtectedQueryStatus | undefined;
1082
1082
  }
1083
1083
  export interface ListProtectedQueriesOutput {
1084
1084
  nextToken?: string;
@@ -1090,7 +1090,7 @@ export declare const ProtectedQueryType: {
1090
1090
  export type ProtectedQueryType =
1091
1091
  (typeof ProtectedQueryType)[keyof typeof ProtectedQueryType];
1092
1092
  export interface StartProtectedQueryInput {
1093
- type: ProtectedQueryType | string | undefined;
1093
+ type: ProtectedQueryType | undefined;
1094
1094
  membershipIdentifier: string | undefined;
1095
1095
  sqlParameters: ProtectedQuerySQLParameters | undefined;
1096
1096
  resultConfiguration?: ProtectedQueryResultConfiguration;
@@ -1100,7 +1100,7 @@ export interface StartProtectedQueryOutput {
1100
1100
  }
1101
1101
  export interface UpdateMembershipInput {
1102
1102
  membershipIdentifier: string | undefined;
1103
- queryLogStatus?: MembershipQueryLogStatus | string;
1103
+ queryLogStatus?: MembershipQueryLogStatus;
1104
1104
  defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
1105
1105
  }
1106
1106
  export interface UpdateMembershipOutput {
@@ -1114,7 +1114,7 @@ export type TargetProtectedQueryStatus =
1114
1114
  export interface UpdateProtectedQueryInput {
1115
1115
  membershipIdentifier: string | undefined;
1116
1116
  protectedQueryIdentifier: string | undefined;
1117
- targetStatus: TargetProtectedQueryStatus | string | undefined;
1117
+ targetStatus: TargetProtectedQueryStatus | undefined;
1118
1118
  }
1119
1119
  export interface UpdateProtectedQueryOutput {
1120
1120
  protectedQuery: ProtectedQuery | 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.428.0",
4
+ "version": "3.429.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",