@aws-sdk/client-cleanrooms 3.687.0 → 3.691.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.
@@ -23,7 +23,7 @@ export declare class AccessDeniedException extends __BaseException {
23
23
  * <p>A reason code for the exception.</p>
24
24
  * @public
25
25
  */
26
- reason?: AccessDeniedExceptionReason;
26
+ reason?: AccessDeniedExceptionReason | undefined;
27
27
  /**
28
28
  * @internal
29
29
  */
@@ -192,7 +192,7 @@ export interface AnalysisParameter {
192
192
  * query can override this value in the query editor.</p>
193
193
  * @public
194
194
  */
195
- defaultValue?: string;
195
+ defaultValue?: string | undefined;
196
196
  }
197
197
  /**
198
198
  * @public
@@ -273,13 +273,13 @@ export interface AnalysisRuleAggregation {
273
273
  * and/or other configured table in query.</p>
274
274
  * @public
275
275
  */
276
- joinRequired?: JoinRequiredOption;
276
+ joinRequired?: JoinRequiredOption | undefined;
277
277
  /**
278
278
  * <p>Which logical operators (if any) are to be used in an INNER JOIN match condition.
279
279
  * Default is <code>AND</code>.</p>
280
280
  * @public
281
281
  */
282
- allowedJoinOperators?: JoinOperator[];
282
+ allowedJoinOperators?: JoinOperator[] | undefined;
283
283
  /**
284
284
  * <p>The columns that query runners are allowed to select, group by, or filter by.</p>
285
285
  * @public
@@ -304,7 +304,7 @@ export interface AnalysisRuleAggregation {
304
304
  * (<code>AnalysisRuleCustom</code>).</p>
305
305
  * @public
306
306
  */
307
- additionalAnalyses?: AdditionalAnalyses;
307
+ additionalAnalyses?: AdditionalAnalyses | undefined;
308
308
  }
309
309
  /**
310
310
  * <p>Specifies the name of the column that contains the unique identifier of your users, whose privacy you want to protect.</p>
@@ -344,22 +344,22 @@ export interface AnalysisRuleCustom {
344
344
  * <code>allowedAnalyses</code> is <code>ANY_QUERY</code>.</p>
345
345
  * @public
346
346
  */
347
- allowedAnalysisProviders?: string[];
347
+ allowedAnalysisProviders?: string[] | undefined;
348
348
  /**
349
349
  * <p> An indicator as to whether additional analyses (such as Clean Rooms ML) can be applied to the output of the direct query.</p>
350
350
  * @public
351
351
  */
352
- additionalAnalyses?: AdditionalAnalyses;
352
+ additionalAnalyses?: AdditionalAnalyses | undefined;
353
353
  /**
354
354
  * <p> A list of columns that aren't allowed to be shown in the query output.</p>
355
355
  * @public
356
356
  */
357
- disallowedOutputColumns?: string[];
357
+ disallowedOutputColumns?: string[] | undefined;
358
358
  /**
359
359
  * <p>The differential privacy configuration.</p>
360
360
  * @public
361
361
  */
362
- differentialPrivacy?: DifferentialPrivacyConfiguration;
362
+ differentialPrivacy?: DifferentialPrivacyConfiguration | undefined;
363
363
  }
364
364
  /**
365
365
  * <p>Provides the name of the columns that are required to overlap.</p>
@@ -370,7 +370,7 @@ export interface QueryConstraintRequireOverlap {
370
370
  * <p>The columns that are required to overlap.</p>
371
371
  * @public
372
372
  */
373
- columns?: string[];
373
+ columns?: string[] | undefined;
374
374
  }
375
375
  /**
376
376
  * <p>Provides any necessary query constraint information.</p>
@@ -421,7 +421,7 @@ export interface AnalysisRuleIdMappingTable {
421
421
  * <p>The columns that query runners are allowed to select, group by, or filter by.</p>
422
422
  * @public
423
423
  */
424
- dimensionColumns?: string[];
424
+ dimensionColumns?: string[] | undefined;
425
425
  }
426
426
  /**
427
427
  * <p>A type of analysis rule that enables row-level analysis.</p>
@@ -439,7 +439,7 @@ export interface AnalysisRuleList {
439
439
  * Default is <code>AND</code>.</p>
440
440
  * @public
441
441
  */
442
- allowedJoinOperators?: JoinOperator[];
442
+ allowedJoinOperators?: JoinOperator[] | undefined;
443
443
  /**
444
444
  * <p>Columns that can be listed in the output.</p>
445
445
  * @public
@@ -449,7 +449,7 @@ export interface AnalysisRuleList {
449
449
  * <p> An indicator as to whether additional analyses (such as Clean Rooms ML) can be applied to the output of the direct query.</p>
450
450
  * @public
451
451
  */
452
- additionalAnalyses?: AdditionalAnalyses;
452
+ additionalAnalyses?: AdditionalAnalyses | undefined;
453
453
  }
454
454
  /**
455
455
  * <p>Controls on the query specifications that can be run on configured table.</p>
@@ -612,7 +612,7 @@ export interface AnalysisSchema {
612
612
  * <p>The tables referenced in the analysis schema.</p>
613
613
  * @public
614
614
  */
615
- referencedTables?: string[];
615
+ referencedTables?: string[] | undefined;
616
616
  }
617
617
  /**
618
618
  * <p>The structure that defines the body of the analysis template.</p>
@@ -699,7 +699,7 @@ export interface AnalysisTemplateValidationStatusDetail {
699
699
  * <p>The reasons for the validation results.</p>
700
700
  * @public
701
701
  */
702
- reasons?: AnalysisTemplateValidationStatusReason[];
702
+ reasons?: AnalysisTemplateValidationStatusReason[] | undefined;
703
703
  }
704
704
  /**
705
705
  * <p>The analysis template.</p>
@@ -740,7 +740,7 @@ export interface AnalysisTemplate {
740
740
  * <p>The description of the analysis template.</p>
741
741
  * @public
742
742
  */
743
- description?: string;
743
+ description?: string | undefined;
744
744
  /**
745
745
  * <p>The name of the analysis template.</p>
746
746
  * @public
@@ -775,12 +775,12 @@ export interface AnalysisTemplate {
775
775
  * <p>The parameters of the analysis template.</p>
776
776
  * @public
777
777
  */
778
- analysisParameters?: AnalysisParameter[];
778
+ analysisParameters?: AnalysisParameter[] | undefined;
779
779
  /**
780
780
  * <p>Information about the validations performed on the analysis template.</p>
781
781
  * @public
782
782
  */
783
- validations?: AnalysisTemplateValidationStatusDetail[];
783
+ validations?: AnalysisTemplateValidationStatusDetail[] | undefined;
784
784
  }
785
785
  /**
786
786
  * @public
@@ -820,17 +820,17 @@ export declare class ConflictException extends __BaseException {
820
820
  * <p>The ID of the conflicting resource.</p>
821
821
  * @public
822
822
  */
823
- resourceId?: string;
823
+ resourceId?: string | undefined;
824
824
  /**
825
825
  * <p>The type of the conflicting resource.</p>
826
826
  * @public
827
827
  */
828
- resourceType?: ResourceType;
828
+ resourceType?: ResourceType | undefined;
829
829
  /**
830
830
  * <p>A reason code for the exception.</p>
831
831
  * @public
832
832
  */
833
- reason?: ConflictExceptionReason;
833
+ reason?: ConflictExceptionReason | undefined;
834
834
  /**
835
835
  * @internal
836
836
  */
@@ -844,7 +844,7 @@ export interface CreateAnalysisTemplateInput {
844
844
  * <p>The description of the analysis template.</p>
845
845
  * @public
846
846
  */
847
- description?: string;
847
+ description?: string | undefined;
848
848
  /**
849
849
  * <p>The identifier for a membership resource.</p>
850
850
  * @public
@@ -873,12 +873,12 @@ export interface CreateAnalysisTemplateInput {
873
873
  * to this resource.</p>
874
874
  * @public
875
875
  */
876
- tags?: Record<string, string>;
876
+ tags?: Record<string, string> | undefined;
877
877
  /**
878
878
  * <p>The parameters of the analysis template.</p>
879
879
  * @public
880
880
  */
881
- analysisParameters?: AnalysisParameter[];
881
+ analysisParameters?: AnalysisParameter[] | undefined;
882
882
  }
883
883
  /**
884
884
  * @public
@@ -999,12 +999,12 @@ export declare class ValidationException extends __BaseException {
999
999
  * <p>A reason code for the exception.</p>
1000
1000
  * @public
1001
1001
  */
1002
- reason?: ValidationExceptionReason;
1002
+ reason?: ValidationExceptionReason | undefined;
1003
1003
  /**
1004
1004
  * <p>Validation errors for specific input parameters.</p>
1005
1005
  * @public
1006
1006
  */
1007
- fieldList?: ValidationExceptionField[];
1007
+ fieldList?: ValidationExceptionField[] | undefined;
1008
1008
  /**
1009
1009
  * @internal
1010
1010
  */
@@ -1068,13 +1068,13 @@ export interface ListAnalysisTemplatesInput {
1068
1068
  * <p>The pagination token that's used to fetch the next set of results.</p>
1069
1069
  * @public
1070
1070
  */
1071
- nextToken?: string;
1071
+ nextToken?: string | undefined;
1072
1072
  /**
1073
1073
  * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
1074
1074
  * `maxResults` value has not been met.</p>
1075
1075
  * @public
1076
1076
  */
1077
- maxResults?: number;
1077
+ maxResults?: number | undefined;
1078
1078
  }
1079
1079
  /**
1080
1080
  * <p>The metadata of the analysis template.</p>
@@ -1131,7 +1131,7 @@ export interface AnalysisTemplateSummary {
1131
1131
  * <p>The description of the analysis template.</p>
1132
1132
  * @public
1133
1133
  */
1134
- description?: string;
1134
+ description?: string | undefined;
1135
1135
  }
1136
1136
  /**
1137
1137
  * @public
@@ -1141,7 +1141,7 @@ export interface ListAnalysisTemplatesOutput {
1141
1141
  * <p>The pagination token that's used to fetch the next set of results.</p>
1142
1142
  * @public
1143
1143
  */
1144
- nextToken?: string;
1144
+ nextToken?: string | undefined;
1145
1145
  /**
1146
1146
  * <p>Lists analysis template metadata.</p>
1147
1147
  * @public
@@ -1166,7 +1166,7 @@ export interface UpdateAnalysisTemplateInput {
1166
1166
  * <p>A new description for the analysis template.</p>
1167
1167
  * @public
1168
1168
  */
1169
- description?: string;
1169
+ description?: string | undefined;
1170
1170
  }
1171
1171
  /**
1172
1172
  * @public
@@ -1249,7 +1249,7 @@ export interface CollaborationAnalysisTemplate {
1249
1249
  * <p>The description of the analysis template.</p>
1250
1250
  * @public
1251
1251
  */
1252
- description?: string;
1252
+ description?: string | undefined;
1253
1253
  /**
1254
1254
  * <p>The identifier used to reference members of the collaboration. Currently only supports
1255
1255
  * Amazon Web Services account ID.</p>
@@ -1290,12 +1290,12 @@ export interface CollaborationAnalysisTemplate {
1290
1290
  * <p>The analysis parameters that have been specified in the analysis template.</p>
1291
1291
  * @public
1292
1292
  */
1293
- analysisParameters?: AnalysisParameter[];
1293
+ analysisParameters?: AnalysisParameter[] | undefined;
1294
1294
  /**
1295
1295
  * <p>The validations that were performed.</p>
1296
1296
  * @public
1297
1297
  */
1298
- validations?: AnalysisTemplateValidationStatusDetail[];
1298
+ validations?: AnalysisTemplateValidationStatusDetail[] | undefined;
1299
1299
  }
1300
1300
  /**
1301
1301
  * <p>Details of errors thrown by the call to retrieve multiple analysis templates within a
@@ -1465,17 +1465,17 @@ export interface SchemaStatusDetail {
1465
1465
  * <p>The reasons why the schema status is set to its current state.</p>
1466
1466
  * @public
1467
1467
  */
1468
- reasons?: SchemaStatusReason[];
1468
+ reasons?: SchemaStatusReason[] | undefined;
1469
1469
  /**
1470
1470
  * <p>The analysis rule type for which the schema status has been evaluated.</p>
1471
1471
  * @public
1472
1472
  */
1473
- analysisRuleType?: AnalysisRuleType;
1473
+ analysisRuleType?: AnalysisRuleType | undefined;
1474
1474
  /**
1475
1475
  * <p>The configuration details of the schema analysis rule for the given type.</p>
1476
1476
  * @public
1477
1477
  */
1478
- configurations?: SchemaConfiguration[];
1478
+ configurations?: SchemaConfiguration[] | undefined;
1479
1479
  /**
1480
1480
  * <p>The type of analysis that can be performed on the schema.</p>
1481
1481
  * <p>A schema can have an <code>analysisType</code> of <code>DIRECT_ANALYSIS</code>, <code>ADDITIONAL_ANALYSIS_FOR_AUDIENCE_GENERATION</code>, or both.</p>
@@ -1590,7 +1590,7 @@ export interface Schema {
1590
1590
  * <code>DIRECT_QUERY</code>.</p>
1591
1591
  * @public
1592
1592
  */
1593
- analysisMethod?: AnalysisMethod;
1593
+ analysisMethod?: AnalysisMethod | undefined;
1594
1594
  /**
1595
1595
  * <p>The unique account ID for the Amazon Web Services account that owns the schema.</p>
1596
1596
  * @public
@@ -1641,7 +1641,7 @@ export interface Schema {
1641
1641
  * <p>The schema type properties.</p>
1642
1642
  * @public
1643
1643
  */
1644
- schemaTypeProperties?: SchemaTypeProperties;
1644
+ schemaTypeProperties?: SchemaTypeProperties | undefined;
1645
1645
  }
1646
1646
  /**
1647
1647
  * @public
@@ -1818,12 +1818,12 @@ export interface MLPaymentConfig {
1818
1818
  * <p>The payment responsibilities accepted by the member for model training.</p>
1819
1819
  * @public
1820
1820
  */
1821
- modelTraining?: ModelTrainingPaymentConfig;
1821
+ modelTraining?: ModelTrainingPaymentConfig | undefined;
1822
1822
  /**
1823
1823
  * <p>The payment responsibilities accepted by the member for model inference.</p>
1824
1824
  * @public
1825
1825
  */
1826
- modelInference?: ModelInferencePaymentConfig;
1826
+ modelInference?: ModelInferencePaymentConfig | undefined;
1827
1827
  }
1828
1828
  /**
1829
1829
  * <p>An object representing the collaboration member's payment responsibilities set by the
@@ -1863,7 +1863,7 @@ export interface PaymentConfiguration {
1863
1863
  * collaboration creator.</p>
1864
1864
  * @public
1865
1865
  */
1866
- machineLearning?: MLPaymentConfig;
1866
+ machineLearning?: MLPaymentConfig | undefined;
1867
1867
  }
1868
1868
  /**
1869
1869
  * <p>The settings for client-side encryption for cryptographic computing.</p>
@@ -1917,7 +1917,7 @@ export interface MemberSpecification {
1917
1917
  * <p>Custom ML modeling is in beta release and is subject to change. For beta terms and conditions, see <i>Betas and Previews</i> in the <a href="https://aws.amazon.com/service-terms/">Amazon Web Services Service Terms</a>.</p>
1918
1918
  * @public
1919
1919
  */
1920
- mlMemberAbilities?: MLMemberAbilities;
1920
+ mlMemberAbilities?: MLMemberAbilities | undefined;
1921
1921
  /**
1922
1922
  * <p>The member's display name.</p>
1923
1923
  * @public
@@ -1929,7 +1929,7 @@ export interface MemberSpecification {
1929
1929
  * compute costs, then the member who can query is the default payer.</p>
1930
1930
  * @public
1931
1931
  */
1932
- paymentConfiguration?: PaymentConfiguration;
1932
+ paymentConfiguration?: PaymentConfiguration | undefined;
1933
1933
  }
1934
1934
  /**
1935
1935
  * @public
@@ -1972,7 +1972,7 @@ export interface CreateCollaborationInput {
1972
1972
  * <p>Custom ML modeling is in beta release and is subject to change. For beta terms and conditions, see <i>Betas and Previews</i> in the <a href="https://aws.amazon.com/service-terms/">Amazon Web Services Service Terms</a>.</p>
1973
1973
  * @public
1974
1974
  */
1975
- creatorMLMemberAbilities?: MLMemberAbilities;
1975
+ creatorMLMemberAbilities?: MLMemberAbilities | undefined;
1976
1976
  /**
1977
1977
  * <p>The display name of the collaboration creator.</p>
1978
1978
  * @public
@@ -1983,7 +1983,7 @@ export interface CreateCollaborationInput {
1983
1983
  * Rooms.</p>
1984
1984
  * @public
1985
1985
  */
1986
- dataEncryptionMetadata?: DataEncryptionMetadata;
1986
+ dataEncryptionMetadata?: DataEncryptionMetadata | undefined;
1987
1987
  /**
1988
1988
  * <p>An indicator as to whether query logging has been enabled or disabled for the
1989
1989
  * collaboration.</p>
@@ -1997,19 +1997,19 @@ export interface CreateCollaborationInput {
1997
1997
  * to this resource.</p>
1998
1998
  * @public
1999
1999
  */
2000
- tags?: Record<string, string>;
2000
+ tags?: Record<string, string> | undefined;
2001
2001
  /**
2002
2002
  * <p>The collaboration creator's payment responsibilities set by the collaboration creator. </p>
2003
2003
  * <p>If the collaboration creator hasn't specified anyone as the member paying for query
2004
2004
  * compute costs, then the member who can query is the default payer.</p>
2005
2005
  * @public
2006
2006
  */
2007
- creatorPaymentConfiguration?: PaymentConfiguration;
2007
+ creatorPaymentConfiguration?: PaymentConfiguration | undefined;
2008
2008
  /**
2009
2009
  * <p> The analytics engine.</p>
2010
2010
  * @public
2011
2011
  */
2012
- analyticsEngine?: AnalyticsEngine;
2012
+ analyticsEngine?: AnalyticsEngine | undefined;
2013
2013
  }
2014
2014
  /**
2015
2015
  * @public
@@ -2051,7 +2051,7 @@ export interface Collaboration {
2051
2051
  * <p>A description of the collaboration provided by the collaboration owner.</p>
2052
2052
  * @public
2053
2053
  */
2054
- description?: string;
2054
+ description?: string | undefined;
2055
2055
  /**
2056
2056
  * <p>The identifier used to reference members of the collaboration. Currently only supports
2057
2057
  * Amazon Web Services account ID.</p>
@@ -2082,17 +2082,17 @@ export interface Collaboration {
2082
2082
  * <p>The unique ID for your membership within the collaboration.</p>
2083
2083
  * @public
2084
2084
  */
2085
- membershipId?: string;
2085
+ membershipId?: string | undefined;
2086
2086
  /**
2087
2087
  * <p>The unique ARN for your membership within the collaboration.</p>
2088
2088
  * @public
2089
2089
  */
2090
- membershipArn?: string;
2090
+ membershipArn?: string | undefined;
2091
2091
  /**
2092
2092
  * <p>The settings for client-side encryption for cryptographic computing.</p>
2093
2093
  * @public
2094
2094
  */
2095
- dataEncryptionMetadata?: DataEncryptionMetadata;
2095
+ dataEncryptionMetadata?: DataEncryptionMetadata | undefined;
2096
2096
  /**
2097
2097
  * <p>An indicator as to whether query logging has been enabled or disabled for the
2098
2098
  * collaboration.</p>
@@ -2103,7 +2103,7 @@ export interface Collaboration {
2103
2103
  * <p> The analytics engine for the collaboration.</p>
2104
2104
  * @public
2105
2105
  */
2106
- analyticsEngine?: AnalyticsEngine;
2106
+ analyticsEngine?: AnalyticsEngine | undefined;
2107
2107
  }
2108
2108
  /**
2109
2109
  * @public
@@ -2251,7 +2251,7 @@ export interface CollaborationConfiguredAudienceModelAssociation {
2251
2251
  * <p>The description of the configured audience model association.</p>
2252
2252
  * @public
2253
2253
  */
2254
- description?: string;
2254
+ description?: string | undefined;
2255
2255
  /**
2256
2256
  * <p>The identifier used to reference members of the collaboration. Only supports Amazon Web Services account ID.</p>
2257
2257
  * @public
@@ -2372,7 +2372,7 @@ export interface CollaborationIdNamespaceAssociation {
2372
2372
  * <p>The description of the collaboration ID namespace association.</p>
2373
2373
  * @public
2374
2374
  */
2375
- description?: string;
2375
+ description?: string | undefined;
2376
2376
  /**
2377
2377
  * <p>The unique identifier of the Amazon Web Services account that created the collaboration ID namespace association.</p>
2378
2378
  * @public
@@ -2402,7 +2402,7 @@ export interface CollaborationIdNamespaceAssociation {
2402
2402
  * <p>The configuration settings for the ID mapping table.</p>
2403
2403
  * @public
2404
2404
  */
2405
- idMappingConfig?: IdMappingConfig;
2405
+ idMappingConfig?: IdMappingConfig | undefined;
2406
2406
  }
2407
2407
  /**
2408
2408
  * @public
@@ -2639,13 +2639,13 @@ export interface ListCollaborationAnalysisTemplatesInput {
2639
2639
  * <p>The pagination token that's used to fetch the next set of results.</p>
2640
2640
  * @public
2641
2641
  */
2642
- nextToken?: string;
2642
+ nextToken?: string | undefined;
2643
2643
  /**
2644
2644
  * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
2645
2645
  * `maxResults` value has not been met.</p>
2646
2646
  * @public
2647
2647
  */
2648
- maxResults?: number;
2648
+ maxResults?: number | undefined;
2649
2649
  }
2650
2650
  /**
2651
2651
  * <p>The metadata of the analysis template within a collaboration.</p>
@@ -2700,7 +2700,7 @@ export interface CollaborationAnalysisTemplateSummary {
2700
2700
  * <p>The description of the analysis template.</p>
2701
2701
  * @public
2702
2702
  */
2703
- description?: string;
2703
+ description?: string | undefined;
2704
2704
  }
2705
2705
  /**
2706
2706
  * @public
@@ -2710,7 +2710,7 @@ export interface ListCollaborationAnalysisTemplatesOutput {
2710
2710
  * <p>The pagination token that's used to fetch the next set of results.</p>
2711
2711
  * @public
2712
2712
  */
2713
- nextToken?: string;
2713
+ nextToken?: string | undefined;
2714
2714
  /**
2715
2715
  * <p>The metadata of the analysis template within a collaboration.</p>
2716
2716
  * @public
@@ -2730,13 +2730,13 @@ export interface ListCollaborationConfiguredAudienceModelAssociationsInput {
2730
2730
  * <p>The pagination token that's used to fetch the next set of results.</p>
2731
2731
  * @public
2732
2732
  */
2733
- nextToken?: string;
2733
+ nextToken?: string | undefined;
2734
2734
  /**
2735
2735
  * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
2736
2736
  * `maxResults` value has not been met.</p>
2737
2737
  * @public
2738
2738
  */
2739
- maxResults?: number;
2739
+ maxResults?: number | undefined;
2740
2740
  }
2741
2741
  /**
2742
2742
  * <p>A summary of the configured audience model association in the collaboration.</p>
@@ -2787,7 +2787,7 @@ export interface CollaborationConfiguredAudienceModelAssociationSummary {
2787
2787
  * <p>The description of the configured audience model association.</p>
2788
2788
  * @public
2789
2789
  */
2790
- description?: string;
2790
+ description?: string | undefined;
2791
2791
  }
2792
2792
  /**
2793
2793
  * @public
@@ -2802,7 +2802,7 @@ export interface ListCollaborationConfiguredAudienceModelAssociationsOutput {
2802
2802
  * <p>The pagination token that's used to fetch the next set of results.</p>
2803
2803
  * @public
2804
2804
  */
2805
- nextToken?: string;
2805
+ nextToken?: string | undefined;
2806
2806
  }
2807
2807
  /**
2808
2808
  * @public
@@ -2817,12 +2817,12 @@ export interface ListCollaborationIdNamespaceAssociationsInput {
2817
2817
  * <p>The pagination token that's used to fetch the next set of results.</p>
2818
2818
  * @public
2819
2819
  */
2820
- nextToken?: string;
2820
+ nextToken?: string | undefined;
2821
2821
  /**
2822
2822
  * <p>The maximum size of the results that is returned per call. Service chooses a default if it has not been set. Service may return a nextToken even if the maximum results has not been met.&gt;</p>
2823
2823
  * @public
2824
2824
  */
2825
- maxResults?: number;
2825
+ maxResults?: number | undefined;
2826
2826
  }
2827
2827
  /**
2828
2828
  * <p>Detailed information about the ID namespace association input reference properties.</p>
@@ -2889,7 +2889,7 @@ export interface CollaborationIdNamespaceAssociationSummary {
2889
2889
  * <p>The description of the collaboration ID namepsace association.</p>
2890
2890
  * @public
2891
2891
  */
2892
- description?: string;
2892
+ description?: string | undefined;
2893
2893
  /**
2894
2894
  * <p>The input reference properties that are used to create the collaboration ID namespace association.</p>
2895
2895
  * @public
@@ -2904,7 +2904,7 @@ export interface ListCollaborationIdNamespaceAssociationsOutput {
2904
2904
  * <p>The token value provided to access the next page of results.</p>
2905
2905
  * @public
2906
2906
  */
2907
- nextToken?: string;
2907
+ nextToken?: string | undefined;
2908
2908
  /**
2909
2909
  * <p>The summary information of the collaboration ID namespace associations that you requested.</p>
2910
2910
  * @public
@@ -2930,12 +2930,12 @@ export interface ListCollaborationPrivacyBudgetsInput {
2930
2930
  * `maxResults` value has not been met.</p>
2931
2931
  * @public
2932
2932
  */
2933
- maxResults?: number;
2933
+ maxResults?: number | undefined;
2934
2934
  /**
2935
2935
  * <p>The pagination token that's used to fetch the next set of results.</p>
2936
2936
  * @public
2937
2937
  */
2938
- nextToken?: string;
2938
+ nextToken?: string | undefined;
2939
2939
  }
2940
2940
  /**
2941
2941
  * @public
@@ -3088,7 +3088,7 @@ export interface ListCollaborationPrivacyBudgetsOutput {
3088
3088
  * <p>The pagination token that's used to fetch the next set of results.</p>
3089
3089
  * @public
3090
3090
  */
3091
- nextToken?: string;
3091
+ nextToken?: string | undefined;
3092
3092
  }
3093
3093
  /**
3094
3094
  * @public
@@ -3103,13 +3103,13 @@ export interface ListCollaborationPrivacyBudgetTemplatesInput {
3103
3103
  * <p>The pagination token that's used to fetch the next set of results.</p>
3104
3104
  * @public
3105
3105
  */
3106
- nextToken?: string;
3106
+ nextToken?: string | undefined;
3107
3107
  /**
3108
3108
  * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
3109
3109
  * `maxResults` value has not been met.</p>
3110
3110
  * @public
3111
3111
  */
3112
- maxResults?: number;
3112
+ maxResults?: number | undefined;
3113
3113
  }
3114
3114
  /**
3115
3115
  * <p>A summary of the collaboration's privacy budget template. This summary includes information about who created the privacy budget template and what collaborations it belongs to.</p>
@@ -3165,7 +3165,7 @@ export interface ListCollaborationPrivacyBudgetTemplatesOutput {
3165
3165
  * <p>The pagination token that's used to fetch the next set of results.</p>
3166
3166
  * @public
3167
3167
  */
3168
- nextToken?: string;
3168
+ nextToken?: string | undefined;
3169
3169
  /**
3170
3170
  * <p>An array that summarizes the collaboration privacy budget templates. The summary includes collaboration information, creation information, the privacy budget type.</p>
3171
3171
  * @public
@@ -3192,18 +3192,18 @@ export interface ListCollaborationsInput {
3192
3192
  * <p>The pagination token that's used to fetch the next set of results.</p>
3193
3193
  * @public
3194
3194
  */
3195
- nextToken?: string;
3195
+ nextToken?: string | undefined;
3196
3196
  /**
3197
3197
  * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
3198
3198
  * `maxResults` value has not been met.</p>
3199
3199
  * @public
3200
3200
  */
3201
- maxResults?: number;
3201
+ maxResults?: number | undefined;
3202
3202
  /**
3203
3203
  * <p>The caller's status in a collaboration.</p>
3204
3204
  * @public
3205
3205
  */
3206
- memberStatus?: FilterableMemberStatus;
3206
+ memberStatus?: FilterableMemberStatus | undefined;
3207
3207
  }
3208
3208
  /**
3209
3209
  * <p>The metadata of the collaboration.</p>
@@ -3256,17 +3256,17 @@ export interface CollaborationSummary {
3256
3256
  * <p>The identifier of a member in a collaboration.</p>
3257
3257
  * @public
3258
3258
  */
3259
- membershipId?: string;
3259
+ membershipId?: string | undefined;
3260
3260
  /**
3261
3261
  * <p>The ARN of a member in a collaboration.</p>
3262
3262
  * @public
3263
3263
  */
3264
- membershipArn?: string;
3264
+ membershipArn?: string | undefined;
3265
3265
  /**
3266
3266
  * <p> The analytics engine.</p>
3267
3267
  * @public
3268
3268
  */
3269
- analyticsEngine?: AnalyticsEngine;
3269
+ analyticsEngine?: AnalyticsEngine | undefined;
3270
3270
  }
3271
3271
  /**
3272
3272
  * @public
@@ -3276,7 +3276,7 @@ export interface ListCollaborationsOutput {
3276
3276
  * <p>The pagination token that's used to fetch the next set of results.</p>
3277
3277
  * @public
3278
3278
  */
3279
- nextToken?: string;
3279
+ nextToken?: string | undefined;
3280
3280
  /**
3281
3281
  * <p>The list of collaborations.</p>
3282
3282
  * @public
@@ -3296,13 +3296,13 @@ export interface ListMembersInput {
3296
3296
  * <p>The pagination token that's used to fetch the next set of results.</p>
3297
3297
  * @public
3298
3298
  */
3299
- nextToken?: string;
3299
+ nextToken?: string | undefined;
3300
3300
  /**
3301
3301
  * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
3302
3302
  * `maxResults` value has not been met.</p>
3303
3303
  * @public
3304
3304
  */
3305
- maxResults?: number;
3305
+ maxResults?: number | undefined;
3306
3306
  }
3307
3307
  /**
3308
3308
  * <p>The member object listed by the request.</p>
@@ -3335,7 +3335,7 @@ export interface MemberSummary {
3335
3335
  * <p>Custom ML modeling is in beta release and is subject to change. For beta terms and conditions, see <i>Betas and Previews</i> in the <a href="https://aws.amazon.com/service-terms/">Amazon Web Services Service Terms</a>.</p>
3336
3336
  * @public
3337
3337
  */
3338
- mlAbilities?: MLMemberAbilities;
3338
+ mlAbilities?: MLMemberAbilities | undefined;
3339
3339
  /**
3340
3340
  * <p>The time when the member was created.</p>
3341
3341
  * @public
@@ -3350,12 +3350,12 @@ export interface MemberSummary {
3350
3350
  * <p>The unique ID for the member's associated membership, if present.</p>
3351
3351
  * @public
3352
3352
  */
3353
- membershipId?: string;
3353
+ membershipId?: string | undefined;
3354
3354
  /**
3355
3355
  * <p>The unique ARN for the member's associated membership, if present.</p>
3356
3356
  * @public
3357
3357
  */
3358
- membershipArn?: string;
3358
+ membershipArn?: string | undefined;
3359
3359
  /**
3360
3360
  * <p>The collaboration member's payment responsibilities set by the collaboration creator. </p>
3361
3361
  * @public
@@ -3370,7 +3370,7 @@ export interface ListMembersOutput {
3370
3370
  * <p>The pagination token that's used to fetch the next set of results.</p>
3371
3371
  * @public
3372
3372
  */
3373
- nextToken?: string;
3373
+ nextToken?: string | undefined;
3374
3374
  /**
3375
3375
  * <p>The list of members returned by the ListMembers operation.</p>
3376
3376
  * @public
@@ -3391,18 +3391,18 @@ export interface ListSchemasInput {
3391
3391
  * <p>If present, filter schemas by schema type.</p>
3392
3392
  * @public
3393
3393
  */
3394
- schemaType?: SchemaType;
3394
+ schemaType?: SchemaType | undefined;
3395
3395
  /**
3396
3396
  * <p>The pagination token that's used to fetch the next set of results.</p>
3397
3397
  * @public
3398
3398
  */
3399
- nextToken?: string;
3399
+ nextToken?: string | undefined;
3400
3400
  /**
3401
3401
  * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
3402
3402
  * `maxResults` value has not been met.</p>
3403
3403
  * @public
3404
3404
  */
3405
- maxResults?: number;
3405
+ maxResults?: number | undefined;
3406
3406
  }
3407
3407
  /**
3408
3408
  * <p>The schema summary for the objects listed by the request.</p>
@@ -3454,7 +3454,7 @@ export interface SchemaSummary {
3454
3454
  * `DIRECT_QUERY`.</p>
3455
3455
  * @public
3456
3456
  */
3457
- analysisMethod?: AnalysisMethod;
3457
+ analysisMethod?: AnalysisMethod | undefined;
3458
3458
  }
3459
3459
  /**
3460
3460
  * @public
@@ -3469,7 +3469,7 @@ export interface ListSchemasOutput {
3469
3469
  * <p>The pagination token that's used to fetch the next set of results.</p>
3470
3470
  * @public
3471
3471
  */
3472
- nextToken?: string;
3472
+ nextToken?: string | undefined;
3473
3473
  }
3474
3474
  /**
3475
3475
  * @public
@@ -3485,12 +3485,12 @@ export interface UpdateCollaborationInput {
3485
3485
  * unique.</p>
3486
3486
  * @public
3487
3487
  */
3488
- name?: string;
3488
+ name?: string | undefined;
3489
3489
  /**
3490
3490
  * <p>A description of the collaboration.</p>
3491
3491
  * @public
3492
3492
  */
3493
- description?: string;
3493
+ description?: string | undefined;
3494
3494
  }
3495
3495
  /**
3496
3496
  * @public
@@ -3536,12 +3536,12 @@ export interface CreateConfiguredAudienceModelAssociationInput {
3536
3536
  * to this resource.</p>
3537
3537
  * @public
3538
3538
  */
3539
- tags?: Record<string, string>;
3539
+ tags?: Record<string, string> | undefined;
3540
3540
  /**
3541
3541
  * <p>A description of the configured audience model association.</p>
3542
3542
  * @public
3543
3543
  */
3544
- description?: string;
3544
+ description?: string | undefined;
3545
3545
  }
3546
3546
  /**
3547
3547
  * <p>Details about the configured audience model association.</p>
@@ -3597,7 +3597,7 @@ export interface ConfiguredAudienceModelAssociation {
3597
3597
  * <p>The description of the configured audience model association.</p>
3598
3598
  * @public
3599
3599
  */
3600
- description?: string;
3600
+ description?: string | undefined;
3601
3601
  /**
3602
3602
  * <p>The time at which the configured audience model association was created.</p>
3603
3603
  * @public
@@ -3677,13 +3677,13 @@ export interface ListConfiguredAudienceModelAssociationsInput {
3677
3677
  * <p>The pagination token that's used to fetch the next set of results.</p>
3678
3678
  * @public
3679
3679
  */
3680
- nextToken?: string;
3680
+ nextToken?: string | undefined;
3681
3681
  /**
3682
3682
  * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
3683
3683
  * `maxResults` value has not been met.</p>
3684
3684
  * @public
3685
3685
  */
3686
- maxResults?: number;
3686
+ maxResults?: number | undefined;
3687
3687
  }
3688
3688
  /**
3689
3689
  * <p>A summary of the configured audience model association.</p>
@@ -3744,7 +3744,7 @@ export interface ConfiguredAudienceModelAssociationSummary {
3744
3744
  * <p>The description of the configured audience model association.</p>
3745
3745
  * @public
3746
3746
  */
3747
- description?: string;
3747
+ description?: string | undefined;
3748
3748
  }
3749
3749
  /**
3750
3750
  * @public
@@ -3759,7 +3759,7 @@ export interface ListConfiguredAudienceModelAssociationsOutput {
3759
3759
  * <p>The token value provided to access the next page of results.</p>
3760
3760
  * @public
3761
3761
  */
3762
- nextToken?: string;
3762
+ nextToken?: string | undefined;
3763
3763
  }
3764
3764
  /**
3765
3765
  * @public
@@ -3779,12 +3779,12 @@ export interface UpdateConfiguredAudienceModelAssociationInput {
3779
3779
  * <p>A new description for the configured audience model association.</p>
3780
3780
  * @public
3781
3781
  */
3782
- description?: string;
3782
+ description?: string | undefined;
3783
3783
  /**
3784
3784
  * <p>A new name for the configured audience model association.</p>
3785
3785
  * @public
3786
3786
  */
3787
- name?: string;
3787
+ name?: string | undefined;
3788
3788
  }
3789
3789
  /**
3790
3790
  * @public
@@ -3810,7 +3810,7 @@ export interface CreateConfiguredTableAssociationInput {
3810
3810
  * <p>A description for the configured table association.</p>
3811
3811
  * @public
3812
3812
  */
3813
- description?: string;
3813
+ description?: string | undefined;
3814
3814
  /**
3815
3815
  * <p>A unique identifier for one of your memberships for a collaboration. The configured
3816
3816
  * table is associated to the collaboration that this membership belongs to. Currently accepts
@@ -3836,7 +3836,7 @@ export interface CreateConfiguredTableAssociationInput {
3836
3836
  * to this resource.</p>
3837
3837
  * @public
3838
3838
  */
3839
- tags?: Record<string, string>;
3839
+ tags?: Record<string, string> | undefined;
3840
3840
  }
3841
3841
  /**
3842
3842
  * @public
@@ -3901,12 +3901,12 @@ export interface ConfiguredTableAssociation {
3901
3901
  * <p>A description of the configured table association.</p>
3902
3902
  * @public
3903
3903
  */
3904
- description?: string;
3904
+ description?: string | undefined;
3905
3905
  /**
3906
3906
  * <p> The analysis rule types for the configured table association.</p>
3907
3907
  * @public
3908
3908
  */
3909
- analysisRuleTypes?: ConfiguredTableAssociationAnalysisRuleType[];
3909
+ analysisRuleTypes?: ConfiguredTableAssociationAnalysisRuleType[] | undefined;
3910
3910
  /**
3911
3911
  * <p>The time the configured table association was created.</p>
3912
3912
  * @public
@@ -3938,7 +3938,7 @@ export interface ConfiguredTableAssociationAnalysisRuleAggregation {
3938
3938
  * with this configured table.</p>
3939
3939
  * @public
3940
3940
  */
3941
- allowedResultReceivers?: string[];
3941
+ allowedResultReceivers?: string[] | undefined;
3942
3942
  /**
3943
3943
  * <p> The list of resources or wildcards (ARNs) that are allowed to perform additional analysis on query output.</p>
3944
3944
  * <p>The <code>allowedAdditionalAnalyses</code> parameter is currently supported for the list
@@ -3946,7 +3946,7 @@ export interface ConfiguredTableAssociationAnalysisRuleAggregation {
3946
3946
  * (<code>AnalysisRuleCustom</code>).</p>
3947
3947
  * @public
3948
3948
  */
3949
- allowedAdditionalAnalyses?: string[];
3949
+ allowedAdditionalAnalyses?: string[] | undefined;
3950
3950
  }
3951
3951
  /**
3952
3952
  * <p> The configured table association analysis rule applied to a configured table with the custom analysis rule.</p>
@@ -3958,12 +3958,12 @@ export interface ConfiguredTableAssociationAnalysisRuleCustom {
3958
3958
  * with this configured table.</p>
3959
3959
  * @public
3960
3960
  */
3961
- allowedResultReceivers?: string[];
3961
+ allowedResultReceivers?: string[] | undefined;
3962
3962
  /**
3963
3963
  * <p> The list of resources or wildcards (ARNs) that are allowed to perform additional analysis on query output.</p>
3964
3964
  * @public
3965
3965
  */
3966
- allowedAdditionalAnalyses?: string[];
3966
+ allowedAdditionalAnalyses?: string[] | undefined;
3967
3967
  }
3968
3968
  /**
3969
3969
  * <p> The configured table association analysis rule applied to a configured table with the list analysis rule.</p>
@@ -3975,12 +3975,12 @@ export interface ConfiguredTableAssociationAnalysisRuleList {
3975
3975
  * with this configured table.</p>
3976
3976
  * @public
3977
3977
  */
3978
- allowedResultReceivers?: string[];
3978
+ allowedResultReceivers?: string[] | undefined;
3979
3979
  /**
3980
3980
  * <p> The list of resources or wildcards (ARNs) that are allowed to perform additional analysis on query output.</p>
3981
3981
  * @public
3982
3982
  */
3983
- allowedAdditionalAnalyses?: string[];
3983
+ allowedAdditionalAnalyses?: string[] | undefined;
3984
3984
  }
3985
3985
  /**
3986
3986
  * <p> Controls on the query specifications that can be run on an associated configured table.</p>
@@ -4276,13 +4276,13 @@ export interface ListConfiguredTableAssociationsInput {
4276
4276
  * <p>The pagination token that's used to fetch the next set of results.</p>
4277
4277
  * @public
4278
4278
  */
4279
- nextToken?: string;
4279
+ nextToken?: string | undefined;
4280
4280
  /**
4281
4281
  * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
4282
4282
  * `maxResults` value has not been met.</p>
4283
4283
  * @public
4284
4284
  */
4285
- maxResults?: number;
4285
+ maxResults?: number | undefined;
4286
4286
  }
4287
4287
  /**
4288
4288
  * <p>The configured table association summary for the objects listed by the request.</p>
@@ -4346,7 +4346,7 @@ export interface ListConfiguredTableAssociationsOutput {
4346
4346
  * <p>The pagination token that's used to fetch the next set of results.</p>
4347
4347
  * @public
4348
4348
  */
4349
- nextToken?: string;
4349
+ nextToken?: string | undefined;
4350
4350
  }
4351
4351
  /**
4352
4352
  * @public
@@ -4368,12 +4368,12 @@ export interface UpdateConfiguredTableAssociationInput {
4368
4368
  * <p>A new description for the configured table association.</p>
4369
4369
  * @public
4370
4370
  */
4371
- description?: string;
4371
+ description?: string | undefined;
4372
4372
  /**
4373
4373
  * <p>The service will assume this role to access catalog metadata and query the table.</p>
4374
4374
  * @public
4375
4375
  */
4376
- roleArn?: string;
4376
+ roleArn?: string | undefined;
4377
4377
  }
4378
4378
  /**
4379
4379
  * @public
@@ -4484,7 +4484,7 @@ export interface CreateConfiguredTableInput {
4484
4484
  * <p>A description for the configured table.</p>
4485
4485
  * @public
4486
4486
  */
4487
- description?: string;
4487
+ description?: string | undefined;
4488
4488
  /**
4489
4489
  * <p>A reference to the Glue table being configured.</p>
4490
4490
  * @public
@@ -4509,7 +4509,7 @@ export interface CreateConfiguredTableInput {
4509
4509
  * to this resource.</p>
4510
4510
  * @public
4511
4511
  */
4512
- tags?: Record<string, string>;
4512
+ tags?: Record<string, string> | undefined;
4513
4513
  }
4514
4514
  /**
4515
4515
  * @public
@@ -4548,7 +4548,7 @@ export interface ConfiguredTable {
4548
4548
  * <p>A description for the configured table.</p>
4549
4549
  * @public
4550
4550
  */
4551
- description?: string;
4551
+ description?: string | undefined;
4552
4552
  /**
4553
4553
  * <p>The Glue table that this configured table represents.</p>
4554
4554
  * @public
@@ -4842,13 +4842,13 @@ export interface ListConfiguredTablesInput {
4842
4842
  * <p>The pagination token that's used to fetch the next set of results.</p>
4843
4843
  * @public
4844
4844
  */
4845
- nextToken?: string;
4845
+ nextToken?: string | undefined;
4846
4846
  /**
4847
4847
  * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
4848
4848
  * `maxResults` value has not been met.</p>
4849
4849
  * @public
4850
4850
  */
4851
- maxResults?: number;
4851
+ maxResults?: number | undefined;
4852
4852
  }
4853
4853
  /**
4854
4854
  * <p>The configured table summary for the objects listed by the request.</p>
@@ -4905,7 +4905,7 @@ export interface ListConfiguredTablesOutput {
4905
4905
  * <p>The pagination token that's used to fetch the next set of results.</p>
4906
4906
  * @public
4907
4907
  */
4908
- nextToken?: string;
4908
+ nextToken?: string | undefined;
4909
4909
  }
4910
4910
  /**
4911
4911
  * @public
@@ -4921,12 +4921,12 @@ export interface UpdateConfiguredTableInput {
4921
4921
  * <p>A new name for the configured table.</p>
4922
4922
  * @public
4923
4923
  */
4924
- name?: string;
4924
+ name?: string | undefined;
4925
4925
  /**
4926
4926
  * <p>A new description for the configured table.</p>
4927
4927
  * @public
4928
4928
  */
4929
- description?: string;
4929
+ description?: string | undefined;
4930
4930
  }
4931
4931
  /**
4932
4932
  * @public
@@ -5005,7 +5005,7 @@ export interface CreateIdMappingTableInput {
5005
5005
  * <p>A description of the ID mapping table.</p>
5006
5006
  * @public
5007
5007
  */
5008
- description?: string;
5008
+ description?: string | undefined;
5009
5009
  /**
5010
5010
  * <p>The input reference configuration needed to create the ID mapping table.</p>
5011
5011
  * @public
@@ -5018,12 +5018,12 @@ export interface CreateIdMappingTableInput {
5018
5018
  * to this resource.</p>
5019
5019
  * @public
5020
5020
  */
5021
- tags?: Record<string, string>;
5021
+ tags?: Record<string, string> | undefined;
5022
5022
  /**
5023
5023
  * <p>The Amazon Resource Name (ARN) of the Amazon Web Services KMS key. This value is used to encrypt the mapping table data that is stored by Clean Rooms.</p>
5024
5024
  * @public
5025
5025
  */
5026
- kmsKeyArn?: string;
5026
+ kmsKeyArn?: string | undefined;
5027
5027
  }
5028
5028
  /**
5029
5029
  * <p>The input reference properties for the ID mapping table.</p>
@@ -5080,7 +5080,7 @@ export interface IdMappingTable {
5080
5080
  * <p>The description of the ID mapping table.</p>
5081
5081
  * @public
5082
5082
  */
5083
- description?: string;
5083
+ description?: string | undefined;
5084
5084
  /**
5085
5085
  * <p>The name of the ID mapping table.</p>
5086
5086
  * @public
@@ -5105,7 +5105,7 @@ export interface IdMappingTable {
5105
5105
  * <p>The Amazon Resource Name (ARN) of the Amazon Web Services KMS key.</p>
5106
5106
  * @public
5107
5107
  */
5108
- kmsKeyArn?: string;
5108
+ kmsKeyArn?: string | undefined;
5109
5109
  }
5110
5110
  /**
5111
5111
  * @public
@@ -5175,12 +5175,12 @@ export interface ListIdMappingTablesInput {
5175
5175
  * <p>The pagination token that's used to fetch the next set of results.</p>
5176
5176
  * @public
5177
5177
  */
5178
- nextToken?: string;
5178
+ nextToken?: string | undefined;
5179
5179
  /**
5180
5180
  * <p>The maximum size of the results that is returned per call. Service chooses a default if it has not been set. Service may return a nextToken even if the maximum results has not been met.</p>
5181
5181
  * @public
5182
5182
  */
5183
- maxResults?: number;
5183
+ maxResults?: number | undefined;
5184
5184
  }
5185
5185
  /**
5186
5186
  * <p>Detailed information about the ID mapping table.</p>
@@ -5231,7 +5231,7 @@ export interface IdMappingTableSummary {
5231
5231
  * <p>The description of this ID mapping table.</p>
5232
5232
  * @public
5233
5233
  */
5234
- description?: string;
5234
+ description?: string | undefined;
5235
5235
  /**
5236
5236
  * <p>The input reference configuration for the ID mapping table.</p>
5237
5237
  * @public
@@ -5256,7 +5256,7 @@ export interface ListIdMappingTablesOutput {
5256
5256
  * <p>The token value provided to access the next page of results.</p>
5257
5257
  * @public
5258
5258
  */
5259
- nextToken?: string;
5259
+ nextToken?: string | undefined;
5260
5260
  }
5261
5261
  /**
5262
5262
  * @public
@@ -5301,12 +5301,12 @@ export interface UpdateIdMappingTableInput {
5301
5301
  * <p>A new description for the ID mapping table.</p>
5302
5302
  * @public
5303
5303
  */
5304
- description?: string;
5304
+ description?: string | undefined;
5305
5305
  /**
5306
5306
  * <p>The Amazon Resource Name (ARN) of the Amazon Web Services KMS key.</p>
5307
5307
  * @public
5308
5308
  */
5309
- kmsKeyArn?: string;
5309
+ kmsKeyArn?: string | undefined;
5310
5310
  }
5311
5311
  /**
5312
5312
  * @public
@@ -5339,7 +5339,7 @@ export interface CreateIdNamespaceAssociationInput {
5339
5339
  * to this resource.</p>
5340
5340
  * @public
5341
5341
  */
5342
- tags?: Record<string, string>;
5342
+ tags?: Record<string, string> | undefined;
5343
5343
  /**
5344
5344
  * <p>The name for the ID namespace association.</p>
5345
5345
  * @public
@@ -5349,12 +5349,12 @@ export interface CreateIdNamespaceAssociationInput {
5349
5349
  * <p>The description of the ID namespace association.</p>
5350
5350
  * @public
5351
5351
  */
5352
- description?: string;
5352
+ description?: string | undefined;
5353
5353
  /**
5354
5354
  * <p>The configuration settings for the ID mapping table.</p>
5355
5355
  * @public
5356
5356
  */
5357
- idMappingConfig?: IdMappingConfig;
5357
+ idMappingConfig?: IdMappingConfig | undefined;
5358
5358
  }
5359
5359
  /**
5360
5360
  * <p>Provides information to create the ID namespace association.</p>
@@ -5400,7 +5400,7 @@ export interface IdNamespaceAssociation {
5400
5400
  * <p>The description of the ID namespace association.</p>
5401
5401
  * @public
5402
5402
  */
5403
- description?: string;
5403
+ description?: string | undefined;
5404
5404
  /**
5405
5405
  * <p>The time at which the ID namespace association was created.</p>
5406
5406
  * @public
@@ -5425,7 +5425,7 @@ export interface IdNamespaceAssociation {
5425
5425
  * <p>The configuration settings for the ID mapping table.</p>
5426
5426
  * @public
5427
5427
  */
5428
- idMappingConfig?: IdMappingConfig;
5428
+ idMappingConfig?: IdMappingConfig | undefined;
5429
5429
  }
5430
5430
  /**
5431
5431
  * @public
@@ -5495,12 +5495,12 @@ export interface ListIdNamespaceAssociationsInput {
5495
5495
  * <p>The pagination token that's used to fetch the next set of results.</p>
5496
5496
  * @public
5497
5497
  */
5498
- nextToken?: string;
5498
+ nextToken?: string | undefined;
5499
5499
  /**
5500
5500
  * <p>The maximum size of the results that is returned per call. Service chooses a default if it has not been set. Service may return a nextToken even if the maximum results has not been met.</p>
5501
5501
  * @public
5502
5502
  */
5503
- maxResults?: number;
5503
+ maxResults?: number | undefined;
5504
5504
  }
5505
5505
  /**
5506
5506
  * <p>Detailed information about the ID namespace association.</p>
@@ -5561,7 +5561,7 @@ export interface IdNamespaceAssociationSummary {
5561
5561
  * <p>The description of the ID namespace association.</p>
5562
5562
  * @public
5563
5563
  */
5564
- description?: string;
5564
+ description?: string | undefined;
5565
5565
  /**
5566
5566
  * <p>The input reference properties for this ID namespace association.</p>
5567
5567
  * @public
@@ -5576,7 +5576,7 @@ export interface ListIdNamespaceAssociationsOutput {
5576
5576
  * <p>The token value provided to access the next page of results.</p>
5577
5577
  * @public
5578
5578
  */
5579
- nextToken?: string;
5579
+ nextToken?: string | undefined;
5580
5580
  /**
5581
5581
  * <p>The summary information of the ID namespace associations that you requested.</p>
5582
5582
  * @public
@@ -5601,17 +5601,17 @@ export interface UpdateIdNamespaceAssociationInput {
5601
5601
  * <p>A new name for the ID namespace association.</p>
5602
5602
  * @public
5603
5603
  */
5604
- name?: string;
5604
+ name?: string | undefined;
5605
5605
  /**
5606
5606
  * <p>A new description for the ID namespace association.</p>
5607
5607
  * @public
5608
5608
  */
5609
- description?: string;
5609
+ description?: string | undefined;
5610
5610
  /**
5611
5611
  * <p>The configuration settings for the ID mapping table.</p>
5612
5612
  * @public
5613
5613
  */
5614
- idMappingConfig?: IdMappingConfig;
5614
+ idMappingConfig?: IdMappingConfig | undefined;
5615
5615
  }
5616
5616
  /**
5617
5617
  * @public
@@ -5675,14 +5675,14 @@ export interface ProtectedQueryS3OutputConfiguration {
5675
5675
  * <p>The S3 prefix to unload the protected query results.</p>
5676
5676
  * @public
5677
5677
  */
5678
- keyPrefix?: string;
5678
+ keyPrefix?: string | undefined;
5679
5679
  /**
5680
5680
  * <p>Indicates whether files should be output as a single file (<code>TRUE</code>) or output
5681
5681
  * as multiple files (<code>FALSE</code>). This parameter is only supported for analyses with
5682
5682
  * the Spark analytics engine.</p>
5683
5683
  * @public
5684
5684
  */
5685
- singleFileOutput?: boolean;
5685
+ singleFileOutput?: boolean | undefined;
5686
5686
  }
5687
5687
  /**
5688
5688
  * <p>Contains configurations for protected query results.</p>
@@ -5729,7 +5729,7 @@ export interface MembershipProtectedQueryResultConfiguration {
5729
5729
  * query results to the result location, given by the member who can receive results.</p>
5730
5730
  * @public
5731
5731
  */
5732
- roleArn?: string;
5732
+ roleArn?: string | undefined;
5733
5733
  }
5734
5734
  /**
5735
5735
  * <p>An object representing the collaboration member's model inference payment responsibilities set by the
@@ -5795,12 +5795,12 @@ export interface MembershipMLPaymentConfig {
5795
5795
  * <p>The payment responsibilities accepted by the member for model training.</p>
5796
5796
  * @public
5797
5797
  */
5798
- modelTraining?: MembershipModelTrainingPaymentConfig;
5798
+ modelTraining?: MembershipModelTrainingPaymentConfig | undefined;
5799
5799
  /**
5800
5800
  * <p>The payment responsibilities accepted by the member for model inference.</p>
5801
5801
  * @public
5802
5802
  */
5803
- modelInference?: MembershipModelInferencePaymentConfig;
5803
+ modelInference?: MembershipModelInferencePaymentConfig | undefined;
5804
5804
  }
5805
5805
  /**
5806
5806
  * <p>An object representing the payment responsibilities accepted by the collaboration member
@@ -5846,7 +5846,7 @@ export interface MembershipPaymentConfiguration {
5846
5846
  * costs.</p>
5847
5847
  * @public
5848
5848
  */
5849
- machineLearning?: MembershipMLPaymentConfig;
5849
+ machineLearning?: MembershipMLPaymentConfig | undefined;
5850
5850
  }
5851
5851
  /**
5852
5852
  * @public
@@ -5882,13 +5882,13 @@ export interface CreateMembershipInput {
5882
5882
  * to this resource.</p>
5883
5883
  * @public
5884
5884
  */
5885
- tags?: Record<string, string>;
5885
+ tags?: Record<string, string> | undefined;
5886
5886
  /**
5887
5887
  * <p>The default protected query result configuration as specified by the member who can
5888
5888
  * receive results.</p>
5889
5889
  * @public
5890
5890
  */
5891
- defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
5891
+ defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration | undefined;
5892
5892
  /**
5893
5893
  * <p>The payment responsibilities accepted by the collaboration member.</p>
5894
5894
  * <p>Not required if the collaboration member has the member ability to run queries. </p>
@@ -5896,7 +5896,7 @@ export interface CreateMembershipInput {
5896
5896
  * is configured as a payer by the collaboration creator. </p>
5897
5897
  * @public
5898
5898
  */
5899
- paymentConfiguration?: MembershipPaymentConfiguration;
5899
+ paymentConfiguration?: MembershipPaymentConfiguration | undefined;
5900
5900
  }
5901
5901
  /**
5902
5902
  * @public
@@ -5977,7 +5977,7 @@ export interface Membership {
5977
5977
  * <p>Custom ML modeling is in beta release and is subject to change. For beta terms and conditions, see <i>Betas and Previews</i> in the <a href="https://aws.amazon.com/service-terms/">Amazon Web Services Service Terms</a>.</p>
5978
5978
  * @public
5979
5979
  */
5980
- mlMemberAbilities?: MLMemberAbilities;
5980
+ mlMemberAbilities?: MLMemberAbilities | undefined;
5981
5981
  /**
5982
5982
  * <p>An indicator as to whether query logging has been enabled or disabled for the
5983
5983
  * membership.</p>
@@ -5989,7 +5989,7 @@ export interface Membership {
5989
5989
  * receive results.</p>
5990
5990
  * @public
5991
5991
  */
5992
- defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
5992
+ defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration | undefined;
5993
5993
  /**
5994
5994
  * <p>The payment responsibilities accepted by the collaboration member.</p>
5995
5995
  * @public
@@ -6078,12 +6078,12 @@ export interface WorkerComputeConfiguration {
6078
6078
  * <p> The worker compute configuration type.</p>
6079
6079
  * @public
6080
6080
  */
6081
- type?: WorkerComputeType;
6081
+ type?: WorkerComputeType | undefined;
6082
6082
  /**
6083
6083
  * <p> The number of workers.</p>
6084
6084
  * @public
6085
6085
  */
6086
- number?: number;
6086
+ number?: number | undefined;
6087
6087
  }
6088
6088
  /**
6089
6089
  * <p> The configuration of the compute resources for an analysis with the Spark analytics engine.</p>
@@ -6139,12 +6139,12 @@ export interface DifferentialPrivacySensitivityParameters {
6139
6139
  * <p>The lower bound of the aggregation expression.</p>
6140
6140
  * @public
6141
6141
  */
6142
- minColumnValue?: number;
6142
+ minColumnValue?: number | undefined;
6143
6143
  /**
6144
6144
  * <p>The upper bound of the aggregation expression.</p>
6145
6145
  * @public
6146
6146
  */
6147
- maxColumnValue?: number;
6147
+ maxColumnValue?: number | undefined;
6148
6148
  }
6149
6149
  /**
6150
6150
  * <p>An array that contains the sensitivity parameters.</p>
@@ -6322,18 +6322,18 @@ export interface ProtectedQuerySQLParameters {
6322
6322
  * <p>The query string to be submitted.</p>
6323
6323
  * @public
6324
6324
  */
6325
- queryString?: string;
6325
+ queryString?: string | undefined;
6326
6326
  /**
6327
6327
  * <p>The Amazon Resource Name (ARN) associated with the analysis template within a
6328
6328
  * collaboration.</p>
6329
6329
  * @public
6330
6330
  */
6331
- analysisTemplateArn?: string;
6331
+ analysisTemplateArn?: string | undefined;
6332
6332
  /**
6333
6333
  * <p>The protected query SQL parameters.</p>
6334
6334
  * @public
6335
6335
  */
6336
- parameters?: Record<string, string>;
6336
+ parameters?: Record<string, string> | undefined;
6337
6337
  }
6338
6338
  /**
6339
6339
  * <p> Information related to the utilization of resources that have been billed or charged for in a given context, such as a protected query.</p>
@@ -6355,12 +6355,12 @@ export interface ProtectedQueryStatistics {
6355
6355
  * <p>The duration of the protected query, from creation until query completion.</p>
6356
6356
  * @public
6357
6357
  */
6358
- totalDurationInMillis?: number;
6358
+ totalDurationInMillis?: number | undefined;
6359
6359
  /**
6360
6360
  * <p> The billed resource utilization.</p>
6361
6361
  * @public
6362
6362
  */
6363
- billedResourceUtilization?: BilledResourceUtilization;
6363
+ billedResourceUtilization?: BilledResourceUtilization | undefined;
6364
6364
  }
6365
6365
  /**
6366
6366
  * @public
@@ -6408,7 +6408,7 @@ export interface ProtectedQuery {
6408
6408
  * <p>The protected query SQL parameters.</p>
6409
6409
  * @public
6410
6410
  */
6411
- sqlParameters?: ProtectedQuerySQLParameters;
6411
+ sqlParameters?: ProtectedQuerySQLParameters | undefined;
6412
6412
  /**
6413
6413
  * <p>The status of the query.</p>
6414
6414
  * @public
@@ -6418,32 +6418,32 @@ export interface ProtectedQuery {
6418
6418
  * <p>Contains any details needed to write the query results.</p>
6419
6419
  * @public
6420
6420
  */
6421
- resultConfiguration?: ProtectedQueryResultConfiguration;
6421
+ resultConfiguration?: ProtectedQueryResultConfiguration | undefined;
6422
6422
  /**
6423
6423
  * <p>Statistics about protected query execution.</p>
6424
6424
  * @public
6425
6425
  */
6426
- statistics?: ProtectedQueryStatistics;
6426
+ statistics?: ProtectedQueryStatistics | undefined;
6427
6427
  /**
6428
6428
  * <p>The result of the protected query.</p>
6429
6429
  * @public
6430
6430
  */
6431
- result?: ProtectedQueryResult;
6431
+ result?: ProtectedQueryResult | undefined;
6432
6432
  /**
6433
6433
  * <p>An error thrown by the protected query.</p>
6434
6434
  * @public
6435
6435
  */
6436
- error?: ProtectedQueryError;
6436
+ error?: ProtectedQueryError | undefined;
6437
6437
  /**
6438
6438
  * <p>The sensitivity parameters of the differential privacy results of the protected query.</p>
6439
6439
  * @public
6440
6440
  */
6441
- differentialPrivacy?: DifferentialPrivacyParameters;
6441
+ differentialPrivacy?: DifferentialPrivacyParameters | undefined;
6442
6442
  /**
6443
6443
  * <p> The compute configuration for the protected query.</p>
6444
6444
  * @public
6445
6445
  */
6446
- computeConfiguration?: ComputeConfiguration;
6446
+ computeConfiguration?: ComputeConfiguration | undefined;
6447
6447
  }
6448
6448
  /**
6449
6449
  * @public
@@ -6463,18 +6463,18 @@ export interface ListMembershipsInput {
6463
6463
  * <p>The pagination token that's used to fetch the next set of results.</p>
6464
6464
  * @public
6465
6465
  */
6466
- nextToken?: string;
6466
+ nextToken?: string | undefined;
6467
6467
  /**
6468
6468
  * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
6469
6469
  * `maxResults` value has not been met.</p>
6470
6470
  * @public
6471
6471
  */
6472
- maxResults?: number;
6472
+ maxResults?: number | undefined;
6473
6473
  /**
6474
6474
  * <p>A filter which will return only memberships in the specified status.</p>
6475
6475
  * @public
6476
6476
  */
6477
- status?: MembershipStatus;
6477
+ status?: MembershipStatus | undefined;
6478
6478
  }
6479
6479
  /**
6480
6480
  * <p>The membership object listed by the request.</p>
@@ -6542,7 +6542,7 @@ export interface MembershipSummary {
6542
6542
  * <p>Custom ML modeling is in beta release and is subject to change. For beta terms and conditions, see <i>Betas and Previews</i> in the <a href="https://aws.amazon.com/service-terms/">Amazon Web Services Service Terms</a>.</p>
6543
6543
  * @public
6544
6544
  */
6545
- mlMemberAbilities?: MLMemberAbilities;
6545
+ mlMemberAbilities?: MLMemberAbilities | undefined;
6546
6546
  /**
6547
6547
  * <p>The payment responsibilities accepted by the collaboration member.</p>
6548
6548
  * @public
@@ -6557,7 +6557,7 @@ export interface ListMembershipsOutput {
6557
6557
  * <p>The pagination token that's used to fetch the next set of results.</p>
6558
6558
  * @public
6559
6559
  */
6560
- nextToken?: string;
6560
+ nextToken?: string | undefined;
6561
6561
  /**
6562
6562
  * <p>The list of memberships returned from the ListMemberships operation.</p>
6563
6563
  * @public
@@ -6582,13 +6582,13 @@ export interface ListPrivacyBudgetsInput {
6582
6582
  * <p>The pagination token that's used to fetch the next set of results.</p>
6583
6583
  * @public
6584
6584
  */
6585
- nextToken?: string;
6585
+ nextToken?: string | undefined;
6586
6586
  /**
6587
6587
  * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
6588
6588
  * `maxResults` value has not been met.</p>
6589
6589
  * @public
6590
6590
  */
6591
- maxResults?: number;
6591
+ maxResults?: number | undefined;
6592
6592
  }
6593
6593
  /**
6594
6594
  * <p>An array that summaries the specified privacy budget. This summary includes collaboration information, creation information, membership information, and privacy budget information.</p>
@@ -6664,7 +6664,7 @@ export interface ListPrivacyBudgetsOutput {
6664
6664
  * <p>The pagination token that's used to fetch the next set of results.</p>
6665
6665
  * @public
6666
6666
  */
6667
- nextToken?: string;
6667
+ nextToken?: string | undefined;
6668
6668
  }
6669
6669
  /**
6670
6670
  * @public
@@ -6679,18 +6679,18 @@ export interface ListProtectedQueriesInput {
6679
6679
  * <p>A filter on the status of the protected query.</p>
6680
6680
  * @public
6681
6681
  */
6682
- status?: ProtectedQueryStatus;
6682
+ status?: ProtectedQueryStatus | undefined;
6683
6683
  /**
6684
6684
  * <p>The pagination token that's used to fetch the next set of results.</p>
6685
6685
  * @public
6686
6686
  */
6687
- nextToken?: string;
6687
+ nextToken?: string | undefined;
6688
6688
  /**
6689
6689
  * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
6690
6690
  * `maxResults` value has not been met. </p>
6691
6691
  * @public
6692
6692
  */
6693
- maxResults?: number;
6693
+ maxResults?: number | undefined;
6694
6694
  }
6695
6695
  /**
6696
6696
  * <p> The direct analysis configuration details.</p>
@@ -6701,7 +6701,7 @@ export interface DirectAnalysisConfigurationDetails {
6701
6701
  * <p> The account IDs for the member who received the results of a protected query.</p>
6702
6702
  * @public
6703
6703
  */
6704
- receiverAccountIds?: string[];
6704
+ receiverAccountIds?: string[] | undefined;
6705
6705
  }
6706
6706
  /**
6707
6707
  * <p> The configuration details.</p>
@@ -6747,7 +6747,7 @@ export interface ReceiverConfiguration {
6747
6747
  * <p> The configuration details of the receiver configuration.</p>
6748
6748
  * @public
6749
6749
  */
6750
- configurationDetails?: ConfigurationDetails;
6750
+ configurationDetails?: ConfigurationDetails | undefined;
6751
6751
  }
6752
6752
  /**
6753
6753
  * <p>The protected query summary for the objects listed by the request.</p>
@@ -6793,7 +6793,7 @@ export interface ListProtectedQueriesOutput {
6793
6793
  * <p>The pagination token that's used to fetch the next set of results.</p>
6794
6794
  * @public
6795
6795
  */
6796
- nextToken?: string;
6796
+ nextToken?: string | undefined;
6797
6797
  /**
6798
6798
  * <p>A list of protected queries.</p>
6799
6799
  * @public