@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.
@@ -9,7 +9,7 @@ export type AccessDeniedExceptionReason =
9
9
  export declare class AccessDeniedException extends __BaseException {
10
10
  readonly name: "AccessDeniedException";
11
11
  readonly $fault: "client";
12
- reason?: AccessDeniedExceptionReason;
12
+ reason?: AccessDeniedExceptionReason | undefined;
13
13
  constructor(
14
14
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
15
15
  );
@@ -88,7 +88,7 @@ export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
88
88
  export interface AnalysisParameter {
89
89
  name: string | undefined;
90
90
  type: ParameterType | undefined;
91
- defaultValue?: string;
91
+ defaultValue?: string | undefined;
92
92
  }
93
93
  export declare const JoinOperator: {
94
94
  readonly AND: "AND";
@@ -131,12 +131,12 @@ export type ScalarFunctions =
131
131
  export interface AnalysisRuleAggregation {
132
132
  aggregateColumns: AggregateColumn[] | undefined;
133
133
  joinColumns: string[] | undefined;
134
- joinRequired?: JoinRequiredOption;
135
- allowedJoinOperators?: JoinOperator[];
134
+ joinRequired?: JoinRequiredOption | undefined;
135
+ allowedJoinOperators?: JoinOperator[] | undefined;
136
136
  dimensionColumns: string[] | undefined;
137
137
  scalarFunctions: ScalarFunctions[] | undefined;
138
138
  outputConstraints: AggregationConstraint[] | undefined;
139
- additionalAnalyses?: AdditionalAnalyses;
139
+ additionalAnalyses?: AdditionalAnalyses | undefined;
140
140
  }
141
141
  export interface DifferentialPrivacyColumn {
142
142
  name: string | undefined;
@@ -146,13 +146,13 @@ export interface DifferentialPrivacyConfiguration {
146
146
  }
147
147
  export interface AnalysisRuleCustom {
148
148
  allowedAnalyses: string[] | undefined;
149
- allowedAnalysisProviders?: string[];
150
- additionalAnalyses?: AdditionalAnalyses;
151
- disallowedOutputColumns?: string[];
152
- differentialPrivacy?: DifferentialPrivacyConfiguration;
149
+ allowedAnalysisProviders?: string[] | undefined;
150
+ additionalAnalyses?: AdditionalAnalyses | undefined;
151
+ disallowedOutputColumns?: string[] | undefined;
152
+ differentialPrivacy?: DifferentialPrivacyConfiguration | undefined;
153
153
  }
154
154
  export interface QueryConstraintRequireOverlap {
155
- columns?: string[];
155
+ columns?: string[] | undefined;
156
156
  }
157
157
  export type QueryConstraint =
158
158
  | QueryConstraint.RequireOverlapMember
@@ -175,13 +175,13 @@ export declare namespace QueryConstraint {
175
175
  export interface AnalysisRuleIdMappingTable {
176
176
  joinColumns: string[] | undefined;
177
177
  queryConstraints: QueryConstraint[] | undefined;
178
- dimensionColumns?: string[];
178
+ dimensionColumns?: string[] | undefined;
179
179
  }
180
180
  export interface AnalysisRuleList {
181
181
  joinColumns: string[] | undefined;
182
- allowedJoinOperators?: JoinOperator[];
182
+ allowedJoinOperators?: JoinOperator[] | undefined;
183
183
  listColumns: string[] | undefined;
184
- additionalAnalyses?: AdditionalAnalyses;
184
+ additionalAnalyses?: AdditionalAnalyses | undefined;
185
185
  }
186
186
  export type AnalysisRulePolicyV1 =
187
187
  | AnalysisRulePolicyV1.AggregationMember
@@ -269,7 +269,7 @@ export interface AnalysisRule {
269
269
  policy: AnalysisRulePolicy | undefined;
270
270
  }
271
271
  export interface AnalysisSchema {
272
- referencedTables?: string[];
272
+ referencedTables?: string[] | undefined;
273
273
  }
274
274
  export type AnalysisSource =
275
275
  | AnalysisSource.TextMember
@@ -307,7 +307,7 @@ export type AnalysisTemplateValidationType =
307
307
  export interface AnalysisTemplateValidationStatusDetail {
308
308
  type: AnalysisTemplateValidationType | undefined;
309
309
  status: AnalysisTemplateValidationStatus | undefined;
310
- reasons?: AnalysisTemplateValidationStatusReason[];
310
+ reasons?: AnalysisTemplateValidationStatusReason[] | undefined;
311
311
  }
312
312
  export interface AnalysisTemplate {
313
313
  id: string | undefined;
@@ -316,15 +316,15 @@ export interface AnalysisTemplate {
316
316
  collaborationArn: string | undefined;
317
317
  membershipId: string | undefined;
318
318
  membershipArn: string | undefined;
319
- description?: string;
319
+ description?: string | undefined;
320
320
  name: string | undefined;
321
321
  createTime: Date | undefined;
322
322
  updateTime: Date | undefined;
323
323
  schema: AnalysisSchema | undefined;
324
324
  format: AnalysisFormat | undefined;
325
325
  source: AnalysisSource | undefined;
326
- analysisParameters?: AnalysisParameter[];
327
- validations?: AnalysisTemplateValidationStatusDetail[];
326
+ analysisParameters?: AnalysisParameter[] | undefined;
327
+ validations?: AnalysisTemplateValidationStatusDetail[] | undefined;
328
328
  }
329
329
  export declare const ConflictExceptionReason: {
330
330
  readonly ALREADY_EXISTS: "ALREADY_EXISTS";
@@ -343,19 +343,19 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
343
343
  export declare class ConflictException extends __BaseException {
344
344
  readonly name: "ConflictException";
345
345
  readonly $fault: "client";
346
- resourceId?: string;
347
- resourceType?: ResourceType;
348
- reason?: ConflictExceptionReason;
346
+ resourceId?: string | undefined;
347
+ resourceType?: ResourceType | undefined;
348
+ reason?: ConflictExceptionReason | undefined;
349
349
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
350
350
  }
351
351
  export interface CreateAnalysisTemplateInput {
352
- description?: string;
352
+ description?: string | undefined;
353
353
  membershipIdentifier: string | undefined;
354
354
  name: string | undefined;
355
355
  format: AnalysisFormat | undefined;
356
356
  source: AnalysisSource | undefined;
357
- tags?: Record<string, string>;
358
- analysisParameters?: AnalysisParameter[];
357
+ tags?: Record<string, string> | undefined;
358
+ analysisParameters?: AnalysisParameter[] | undefined;
359
359
  }
360
360
  export interface CreateAnalysisTemplateOutput {
361
361
  analysisTemplate: AnalysisTemplate | undefined;
@@ -407,8 +407,8 @@ export type ValidationExceptionReason =
407
407
  export declare class ValidationException extends __BaseException {
408
408
  readonly name: "ValidationException";
409
409
  readonly $fault: "client";
410
- reason?: ValidationExceptionReason;
411
- fieldList?: ValidationExceptionField[];
410
+ reason?: ValidationExceptionReason | undefined;
411
+ fieldList?: ValidationExceptionField[] | undefined;
412
412
  constructor(
413
413
  opts: __ExceptionOptionType<ValidationException, __BaseException>
414
414
  );
@@ -427,8 +427,8 @@ export interface GetAnalysisTemplateOutput {
427
427
  }
428
428
  export interface ListAnalysisTemplatesInput {
429
429
  membershipIdentifier: string | undefined;
430
- nextToken?: string;
431
- maxResults?: number;
430
+ nextToken?: string | undefined;
431
+ maxResults?: number | undefined;
432
432
  }
433
433
  export interface AnalysisTemplateSummary {
434
434
  arn: string | undefined;
@@ -440,16 +440,16 @@ export interface AnalysisTemplateSummary {
440
440
  membershipId: string | undefined;
441
441
  collaborationArn: string | undefined;
442
442
  collaborationId: string | undefined;
443
- description?: string;
443
+ description?: string | undefined;
444
444
  }
445
445
  export interface ListAnalysisTemplatesOutput {
446
- nextToken?: string;
446
+ nextToken?: string | undefined;
447
447
  analysisTemplateSummaries: AnalysisTemplateSummary[] | undefined;
448
448
  }
449
449
  export interface UpdateAnalysisTemplateInput {
450
450
  membershipIdentifier: string | undefined;
451
451
  analysisTemplateIdentifier: string | undefined;
452
- description?: string;
452
+ description?: string | undefined;
453
453
  }
454
454
  export interface UpdateAnalysisTemplateOutput {
455
455
  analysisTemplate: AnalysisTemplate | undefined;
@@ -474,7 +474,7 @@ export interface CollaborationAnalysisTemplate {
474
474
  arn: string | undefined;
475
475
  collaborationId: string | undefined;
476
476
  collaborationArn: string | undefined;
477
- description?: string;
477
+ description?: string | undefined;
478
478
  creatorAccountId: string | undefined;
479
479
  name: string | undefined;
480
480
  createTime: Date | undefined;
@@ -482,8 +482,8 @@ export interface CollaborationAnalysisTemplate {
482
482
  schema: AnalysisSchema | undefined;
483
483
  format: AnalysisFormat | undefined;
484
484
  source: AnalysisSource | undefined;
485
- analysisParameters?: AnalysisParameter[];
486
- validations?: AnalysisTemplateValidationStatusDetail[];
485
+ analysisParameters?: AnalysisParameter[] | undefined;
486
+ validations?: AnalysisTemplateValidationStatusDetail[] | undefined;
487
487
  }
488
488
  export interface BatchGetCollaborationAnalysisTemplateError {
489
489
  arn: string | undefined;
@@ -538,9 +538,9 @@ export declare const SchemaStatus: {
538
538
  export type SchemaStatus = (typeof SchemaStatus)[keyof typeof SchemaStatus];
539
539
  export interface SchemaStatusDetail {
540
540
  status: SchemaStatus | undefined;
541
- reasons?: SchemaStatusReason[];
542
- analysisRuleType?: AnalysisRuleType;
543
- configurations?: SchemaConfiguration[];
541
+ reasons?: SchemaStatusReason[] | undefined;
542
+ analysisRuleType?: AnalysisRuleType | undefined;
543
+ configurations?: SchemaConfiguration[] | undefined;
544
544
  analysisType: AnalysisType | undefined;
545
545
  }
546
546
  export declare const IdNamespaceType: {
@@ -583,7 +583,7 @@ export interface Schema {
583
583
  columns: Column[] | undefined;
584
584
  partitionKeys: Column[] | undefined;
585
585
  analysisRuleTypes: AnalysisRuleType[] | undefined;
586
- analysisMethod?: AnalysisMethod;
586
+ analysisMethod?: AnalysisMethod | undefined;
587
587
  creatorAccountId: string | undefined;
588
588
  name: string | undefined;
589
589
  collaborationId: string | undefined;
@@ -593,7 +593,7 @@ export interface Schema {
593
593
  updateTime: Date | undefined;
594
594
  type: SchemaType | undefined;
595
595
  schemaStatusDetails: SchemaStatusDetail[] | undefined;
596
- schemaTypeProperties?: SchemaTypeProperties;
596
+ schemaTypeProperties?: SchemaTypeProperties | undefined;
597
597
  }
598
598
  export interface BatchGetSchemaOutput {
599
599
  schemas: Schema[] | undefined;
@@ -638,15 +638,15 @@ export interface ModelTrainingPaymentConfig {
638
638
  isResponsible: boolean | undefined;
639
639
  }
640
640
  export interface MLPaymentConfig {
641
- modelTraining?: ModelTrainingPaymentConfig;
642
- modelInference?: ModelInferencePaymentConfig;
641
+ modelTraining?: ModelTrainingPaymentConfig | undefined;
642
+ modelInference?: ModelInferencePaymentConfig | undefined;
643
643
  }
644
644
  export interface QueryComputePaymentConfig {
645
645
  isResponsible: boolean | undefined;
646
646
  }
647
647
  export interface PaymentConfiguration {
648
648
  queryCompute: QueryComputePaymentConfig | undefined;
649
- machineLearning?: MLPaymentConfig;
649
+ machineLearning?: MLPaymentConfig | undefined;
650
650
  }
651
651
  export interface DataEncryptionMetadata {
652
652
  allowCleartext: boolean | undefined;
@@ -657,9 +657,9 @@ export interface DataEncryptionMetadata {
657
657
  export interface MemberSpecification {
658
658
  accountId: string | undefined;
659
659
  memberAbilities: MemberAbility[] | undefined;
660
- mlMemberAbilities?: MLMemberAbilities;
660
+ mlMemberAbilities?: MLMemberAbilities | undefined;
661
661
  displayName: string | undefined;
662
- paymentConfiguration?: PaymentConfiguration;
662
+ paymentConfiguration?: PaymentConfiguration | undefined;
663
663
  }
664
664
  export declare const CollaborationQueryLogStatus: {
665
665
  readonly DISABLED: "DISABLED";
@@ -672,13 +672,13 @@ export interface CreateCollaborationInput {
672
672
  name: string | undefined;
673
673
  description: string | undefined;
674
674
  creatorMemberAbilities: MemberAbility[] | undefined;
675
- creatorMLMemberAbilities?: MLMemberAbilities;
675
+ creatorMLMemberAbilities?: MLMemberAbilities | undefined;
676
676
  creatorDisplayName: string | undefined;
677
- dataEncryptionMetadata?: DataEncryptionMetadata;
677
+ dataEncryptionMetadata?: DataEncryptionMetadata | undefined;
678
678
  queryLogStatus: CollaborationQueryLogStatus | undefined;
679
- tags?: Record<string, string>;
680
- creatorPaymentConfiguration?: PaymentConfiguration;
681
- analyticsEngine?: AnalyticsEngine;
679
+ tags?: Record<string, string> | undefined;
680
+ creatorPaymentConfiguration?: PaymentConfiguration | undefined;
681
+ analyticsEngine?: AnalyticsEngine | undefined;
682
682
  }
683
683
  export declare const MemberStatus: {
684
684
  readonly ACTIVE: "ACTIVE";
@@ -691,17 +691,17 @@ export interface Collaboration {
691
691
  id: string | undefined;
692
692
  arn: string | undefined;
693
693
  name: string | undefined;
694
- description?: string;
694
+ description?: string | undefined;
695
695
  creatorAccountId: string | undefined;
696
696
  creatorDisplayName: string | undefined;
697
697
  createTime: Date | undefined;
698
698
  updateTime: Date | undefined;
699
699
  memberStatus: MemberStatus | undefined;
700
- membershipId?: string;
701
- membershipArn?: string;
702
- dataEncryptionMetadata?: DataEncryptionMetadata;
700
+ membershipId?: string | undefined;
701
+ membershipArn?: string | undefined;
702
+ dataEncryptionMetadata?: DataEncryptionMetadata | undefined;
703
703
  queryLogStatus: CollaborationQueryLogStatus | undefined;
704
- analyticsEngine?: AnalyticsEngine;
704
+ analyticsEngine?: AnalyticsEngine | undefined;
705
705
  }
706
706
  export interface CreateCollaborationOutput {
707
707
  collaboration: Collaboration | undefined;
@@ -739,7 +739,7 @@ export interface CollaborationConfiguredAudienceModelAssociation {
739
739
  collaborationArn: string | undefined;
740
740
  configuredAudienceModelArn: string | undefined;
741
741
  name: string | undefined;
742
- description?: string;
742
+ description?: string | undefined;
743
743
  creatorAccountId: string | undefined;
744
744
  createTime: Date | undefined;
745
745
  updateTime: Date | undefined;
@@ -770,7 +770,7 @@ export interface CollaborationIdNamespaceAssociation {
770
770
  collaborationId: string | undefined;
771
771
  collaborationArn: string | undefined;
772
772
  name: string | undefined;
773
- description?: string;
773
+ description?: string | undefined;
774
774
  creatorAccountId: string | undefined;
775
775
  createTime: Date | undefined;
776
776
  updateTime: Date | undefined;
@@ -778,7 +778,7 @@ export interface CollaborationIdNamespaceAssociation {
778
778
  inputReferenceProperties:
779
779
  | IdNamespaceAssociationInputReferenceProperties
780
780
  | undefined;
781
- idMappingConfig?: IdMappingConfig;
781
+ idMappingConfig?: IdMappingConfig | undefined;
782
782
  }
783
783
  export interface GetCollaborationIdNamespaceAssociationOutput {
784
784
  collaborationIdNamespaceAssociation:
@@ -861,8 +861,8 @@ export interface GetSchemaAnalysisRuleOutput {
861
861
  }
862
862
  export interface ListCollaborationAnalysisTemplatesInput {
863
863
  collaborationIdentifier: string | undefined;
864
- nextToken?: string;
865
- maxResults?: number;
864
+ nextToken?: string | undefined;
865
+ maxResults?: number | undefined;
866
866
  }
867
867
  export interface CollaborationAnalysisTemplateSummary {
868
868
  arn: string | undefined;
@@ -873,18 +873,18 @@ export interface CollaborationAnalysisTemplateSummary {
873
873
  collaborationArn: string | undefined;
874
874
  collaborationId: string | undefined;
875
875
  creatorAccountId: string | undefined;
876
- description?: string;
876
+ description?: string | undefined;
877
877
  }
878
878
  export interface ListCollaborationAnalysisTemplatesOutput {
879
- nextToken?: string;
879
+ nextToken?: string | undefined;
880
880
  collaborationAnalysisTemplateSummaries:
881
881
  | CollaborationAnalysisTemplateSummary[]
882
882
  | undefined;
883
883
  }
884
884
  export interface ListCollaborationConfiguredAudienceModelAssociationsInput {
885
885
  collaborationIdentifier: string | undefined;
886
- nextToken?: string;
887
- maxResults?: number;
886
+ nextToken?: string | undefined;
887
+ maxResults?: number | undefined;
888
888
  }
889
889
  export interface CollaborationConfiguredAudienceModelAssociationSummary {
890
890
  arn: string | undefined;
@@ -895,18 +895,18 @@ export interface CollaborationConfiguredAudienceModelAssociationSummary {
895
895
  collaborationArn: string | undefined;
896
896
  collaborationId: string | undefined;
897
897
  creatorAccountId: string | undefined;
898
- description?: string;
898
+ description?: string | undefined;
899
899
  }
900
900
  export interface ListCollaborationConfiguredAudienceModelAssociationsOutput {
901
901
  collaborationConfiguredAudienceModelAssociationSummaries:
902
902
  | CollaborationConfiguredAudienceModelAssociationSummary[]
903
903
  | undefined;
904
- nextToken?: string;
904
+ nextToken?: string | undefined;
905
905
  }
906
906
  export interface ListCollaborationIdNamespaceAssociationsInput {
907
907
  collaborationIdentifier: string | undefined;
908
- nextToken?: string;
909
- maxResults?: number;
908
+ nextToken?: string | undefined;
909
+ maxResults?: number | undefined;
910
910
  }
911
911
  export interface IdNamespaceAssociationInputReferencePropertiesSummary {
912
912
  idNamespaceType: IdNamespaceType | undefined;
@@ -921,13 +921,13 @@ export interface CollaborationIdNamespaceAssociationSummary {
921
921
  creatorAccountId: string | undefined;
922
922
  inputReferenceConfig: IdNamespaceAssociationInputReferenceConfig | undefined;
923
923
  name: string | undefined;
924
- description?: string;
924
+ description?: string | undefined;
925
925
  inputReferenceProperties:
926
926
  | IdNamespaceAssociationInputReferencePropertiesSummary
927
927
  | undefined;
928
928
  }
929
929
  export interface ListCollaborationIdNamespaceAssociationsOutput {
930
- nextToken?: string;
930
+ nextToken?: string | undefined;
931
931
  collaborationIdNamespaceAssociationSummaries:
932
932
  | CollaborationIdNamespaceAssociationSummary[]
933
933
  | undefined;
@@ -935,8 +935,8 @@ export interface ListCollaborationIdNamespaceAssociationsOutput {
935
935
  export interface ListCollaborationPrivacyBudgetsInput {
936
936
  collaborationIdentifier: string | undefined;
937
937
  privacyBudgetType: PrivacyBudgetType | undefined;
938
- maxResults?: number;
939
- nextToken?: string;
938
+ maxResults?: number | undefined;
939
+ nextToken?: string | undefined;
940
940
  }
941
941
  export declare const DifferentialPrivacyAggregationType: {
942
942
  readonly AVG: "AVG";
@@ -990,12 +990,12 @@ export interface ListCollaborationPrivacyBudgetsOutput {
990
990
  collaborationPrivacyBudgetSummaries:
991
991
  | CollaborationPrivacyBudgetSummary[]
992
992
  | undefined;
993
- nextToken?: string;
993
+ nextToken?: string | undefined;
994
994
  }
995
995
  export interface ListCollaborationPrivacyBudgetTemplatesInput {
996
996
  collaborationIdentifier: string | undefined;
997
- nextToken?: string;
998
- maxResults?: number;
997
+ nextToken?: string | undefined;
998
+ maxResults?: number | undefined;
999
999
  }
1000
1000
  export interface CollaborationPrivacyBudgetTemplateSummary {
1001
1001
  id: string | undefined;
@@ -1008,7 +1008,7 @@ export interface CollaborationPrivacyBudgetTemplateSummary {
1008
1008
  updateTime: Date | undefined;
1009
1009
  }
1010
1010
  export interface ListCollaborationPrivacyBudgetTemplatesOutput {
1011
- nextToken?: string;
1011
+ nextToken?: string | undefined;
1012
1012
  collaborationPrivacyBudgetTemplateSummaries:
1013
1013
  | CollaborationPrivacyBudgetTemplateSummary[]
1014
1014
  | undefined;
@@ -1020,9 +1020,9 @@ export declare const FilterableMemberStatus: {
1020
1020
  export type FilterableMemberStatus =
1021
1021
  (typeof FilterableMemberStatus)[keyof typeof FilterableMemberStatus];
1022
1022
  export interface ListCollaborationsInput {
1023
- nextToken?: string;
1024
- maxResults?: number;
1025
- memberStatus?: FilterableMemberStatus;
1023
+ nextToken?: string | undefined;
1024
+ maxResults?: number | undefined;
1025
+ memberStatus?: FilterableMemberStatus | undefined;
1026
1026
  }
1027
1027
  export interface CollaborationSummary {
1028
1028
  id: string | undefined;
@@ -1033,40 +1033,40 @@ export interface CollaborationSummary {
1033
1033
  createTime: Date | undefined;
1034
1034
  updateTime: Date | undefined;
1035
1035
  memberStatus: MemberStatus | undefined;
1036
- membershipId?: string;
1037
- membershipArn?: string;
1038
- analyticsEngine?: AnalyticsEngine;
1036
+ membershipId?: string | undefined;
1037
+ membershipArn?: string | undefined;
1038
+ analyticsEngine?: AnalyticsEngine | undefined;
1039
1039
  }
1040
1040
  export interface ListCollaborationsOutput {
1041
- nextToken?: string;
1041
+ nextToken?: string | undefined;
1042
1042
  collaborationList: CollaborationSummary[] | undefined;
1043
1043
  }
1044
1044
  export interface ListMembersInput {
1045
1045
  collaborationIdentifier: string | undefined;
1046
- nextToken?: string;
1047
- maxResults?: number;
1046
+ nextToken?: string | undefined;
1047
+ maxResults?: number | undefined;
1048
1048
  }
1049
1049
  export interface MemberSummary {
1050
1050
  accountId: string | undefined;
1051
1051
  status: MemberStatus | undefined;
1052
1052
  displayName: string | undefined;
1053
1053
  abilities: MemberAbility[] | undefined;
1054
- mlAbilities?: MLMemberAbilities;
1054
+ mlAbilities?: MLMemberAbilities | undefined;
1055
1055
  createTime: Date | undefined;
1056
1056
  updateTime: Date | undefined;
1057
- membershipId?: string;
1058
- membershipArn?: string;
1057
+ membershipId?: string | undefined;
1058
+ membershipArn?: string | undefined;
1059
1059
  paymentConfiguration: PaymentConfiguration | undefined;
1060
1060
  }
1061
1061
  export interface ListMembersOutput {
1062
- nextToken?: string;
1062
+ nextToken?: string | undefined;
1063
1063
  memberSummaries: MemberSummary[] | undefined;
1064
1064
  }
1065
1065
  export interface ListSchemasInput {
1066
1066
  collaborationIdentifier: string | undefined;
1067
- schemaType?: SchemaType;
1068
- nextToken?: string;
1069
- maxResults?: number;
1067
+ schemaType?: SchemaType | undefined;
1068
+ nextToken?: string | undefined;
1069
+ maxResults?: number | undefined;
1070
1070
  }
1071
1071
  export interface SchemaSummary {
1072
1072
  name: string | undefined;
@@ -1077,16 +1077,16 @@ export interface SchemaSummary {
1077
1077
  collaborationId: string | undefined;
1078
1078
  collaborationArn: string | undefined;
1079
1079
  analysisRuleTypes: AnalysisRuleType[] | undefined;
1080
- analysisMethod?: AnalysisMethod;
1080
+ analysisMethod?: AnalysisMethod | undefined;
1081
1081
  }
1082
1082
  export interface ListSchemasOutput {
1083
1083
  schemaSummaries: SchemaSummary[] | undefined;
1084
- nextToken?: string;
1084
+ nextToken?: string | undefined;
1085
1085
  }
1086
1086
  export interface UpdateCollaborationInput {
1087
1087
  collaborationIdentifier: string | undefined;
1088
- name?: string;
1089
- description?: string;
1088
+ name?: string | undefined;
1089
+ description?: string | undefined;
1090
1090
  }
1091
1091
  export interface UpdateCollaborationOutput {
1092
1092
  collaboration: Collaboration | undefined;
@@ -1096,8 +1096,8 @@ export interface CreateConfiguredAudienceModelAssociationInput {
1096
1096
  configuredAudienceModelArn: string | undefined;
1097
1097
  configuredAudienceModelAssociationName: string | undefined;
1098
1098
  manageResourcePolicies: boolean | undefined;
1099
- tags?: Record<string, string>;
1100
- description?: string;
1099
+ tags?: Record<string, string> | undefined;
1100
+ description?: string | undefined;
1101
1101
  }
1102
1102
  export interface ConfiguredAudienceModelAssociation {
1103
1103
  id: string | undefined;
@@ -1109,7 +1109,7 @@ export interface ConfiguredAudienceModelAssociation {
1109
1109
  collaborationArn: string | undefined;
1110
1110
  name: string | undefined;
1111
1111
  manageResourcePolicies: boolean | undefined;
1112
- description?: string;
1112
+ description?: string | undefined;
1113
1113
  createTime: Date | undefined;
1114
1114
  updateTime: Date | undefined;
1115
1115
  }
@@ -1134,8 +1134,8 @@ export interface GetConfiguredAudienceModelAssociationOutput {
1134
1134
  }
1135
1135
  export interface ListConfiguredAudienceModelAssociationsInput {
1136
1136
  membershipIdentifier: string | undefined;
1137
- nextToken?: string;
1138
- maxResults?: number;
1137
+ nextToken?: string | undefined;
1138
+ maxResults?: number | undefined;
1139
1139
  }
1140
1140
  export interface ConfiguredAudienceModelAssociationSummary {
1141
1141
  membershipId: string | undefined;
@@ -1148,19 +1148,19 @@ export interface ConfiguredAudienceModelAssociationSummary {
1148
1148
  arn: string | undefined;
1149
1149
  name: string | undefined;
1150
1150
  configuredAudienceModelArn: string | undefined;
1151
- description?: string;
1151
+ description?: string | undefined;
1152
1152
  }
1153
1153
  export interface ListConfiguredAudienceModelAssociationsOutput {
1154
1154
  configuredAudienceModelAssociationSummaries:
1155
1155
  | ConfiguredAudienceModelAssociationSummary[]
1156
1156
  | undefined;
1157
- nextToken?: string;
1157
+ nextToken?: string | undefined;
1158
1158
  }
1159
1159
  export interface UpdateConfiguredAudienceModelAssociationInput {
1160
1160
  configuredAudienceModelAssociationIdentifier: string | undefined;
1161
1161
  membershipIdentifier: string | undefined;
1162
- description?: string;
1163
- name?: string;
1162
+ description?: string | undefined;
1163
+ name?: string | undefined;
1164
1164
  }
1165
1165
  export interface UpdateConfiguredAudienceModelAssociationOutput {
1166
1166
  configuredAudienceModelAssociation:
@@ -1169,11 +1169,11 @@ export interface UpdateConfiguredAudienceModelAssociationOutput {
1169
1169
  }
1170
1170
  export interface CreateConfiguredTableAssociationInput {
1171
1171
  name: string | undefined;
1172
- description?: string;
1172
+ description?: string | undefined;
1173
1173
  membershipIdentifier: string | undefined;
1174
1174
  configuredTableIdentifier: string | undefined;
1175
1175
  roleArn: string | undefined;
1176
- tags?: Record<string, string>;
1176
+ tags?: Record<string, string> | undefined;
1177
1177
  }
1178
1178
  export declare const ConfiguredTableAssociationAnalysisRuleType: {
1179
1179
  readonly AGGREGATION: "AGGREGATION";
@@ -1191,8 +1191,8 @@ export interface ConfiguredTableAssociation {
1191
1191
  membershipArn: string | undefined;
1192
1192
  roleArn: string | undefined;
1193
1193
  name: string | undefined;
1194
- description?: string;
1195
- analysisRuleTypes?: ConfiguredTableAssociationAnalysisRuleType[];
1194
+ description?: string | undefined;
1195
+ analysisRuleTypes?: ConfiguredTableAssociationAnalysisRuleType[] | undefined;
1196
1196
  createTime: Date | undefined;
1197
1197
  updateTime: Date | undefined;
1198
1198
  }
@@ -1200,16 +1200,16 @@ export interface CreateConfiguredTableAssociationOutput {
1200
1200
  configuredTableAssociation: ConfiguredTableAssociation | undefined;
1201
1201
  }
1202
1202
  export interface ConfiguredTableAssociationAnalysisRuleAggregation {
1203
- allowedResultReceivers?: string[];
1204
- allowedAdditionalAnalyses?: string[];
1203
+ allowedResultReceivers?: string[] | undefined;
1204
+ allowedAdditionalAnalyses?: string[] | undefined;
1205
1205
  }
1206
1206
  export interface ConfiguredTableAssociationAnalysisRuleCustom {
1207
- allowedResultReceivers?: string[];
1208
- allowedAdditionalAnalyses?: string[];
1207
+ allowedResultReceivers?: string[] | undefined;
1208
+ allowedAdditionalAnalyses?: string[] | undefined;
1209
1209
  }
1210
1210
  export interface ConfiguredTableAssociationAnalysisRuleList {
1211
- allowedResultReceivers?: string[];
1212
- allowedAdditionalAnalyses?: string[];
1211
+ allowedResultReceivers?: string[] | undefined;
1212
+ allowedAdditionalAnalyses?: string[] | undefined;
1213
1213
  }
1214
1214
  export type ConfiguredTableAssociationAnalysisRulePolicyV1 =
1215
1215
  | ConfiguredTableAssociationAnalysisRulePolicyV1.AggregationMember
@@ -1321,8 +1321,8 @@ export interface GetConfiguredTableAssociationAnalysisRuleOutput {
1321
1321
  }
1322
1322
  export interface ListConfiguredTableAssociationsInput {
1323
1323
  membershipIdentifier: string | undefined;
1324
- nextToken?: string;
1325
- maxResults?: number;
1324
+ nextToken?: string | undefined;
1325
+ maxResults?: number | undefined;
1326
1326
  }
1327
1327
  export interface ConfiguredTableAssociationSummary {
1328
1328
  configuredTableId: string | undefined;
@@ -1338,13 +1338,13 @@ export interface ListConfiguredTableAssociationsOutput {
1338
1338
  configuredTableAssociationSummaries:
1339
1339
  | ConfiguredTableAssociationSummary[]
1340
1340
  | undefined;
1341
- nextToken?: string;
1341
+ nextToken?: string | undefined;
1342
1342
  }
1343
1343
  export interface UpdateConfiguredTableAssociationInput {
1344
1344
  configuredTableAssociationIdentifier: string | undefined;
1345
1345
  membershipIdentifier: string | undefined;
1346
- description?: string;
1347
- roleArn?: string;
1346
+ description?: string | undefined;
1347
+ roleArn?: string | undefined;
1348
1348
  }
1349
1349
  export interface UpdateConfiguredTableAssociationOutput {
1350
1350
  configuredTableAssociation: ConfiguredTableAssociation | undefined;
@@ -1382,11 +1382,11 @@ export declare namespace TableReference {
1382
1382
  }
1383
1383
  export interface CreateConfiguredTableInput {
1384
1384
  name: string | undefined;
1385
- description?: string;
1385
+ description?: string | undefined;
1386
1386
  tableReference: TableReference | undefined;
1387
1387
  allowedColumns: string[] | undefined;
1388
1388
  analysisMethod: AnalysisMethod | undefined;
1389
- tags?: Record<string, string>;
1389
+ tags?: Record<string, string> | undefined;
1390
1390
  }
1391
1391
  export declare const ConfiguredTableAnalysisRuleType: {
1392
1392
  readonly AGGREGATION: "AGGREGATION";
@@ -1399,7 +1399,7 @@ export interface ConfiguredTable {
1399
1399
  id: string | undefined;
1400
1400
  arn: string | undefined;
1401
1401
  name: string | undefined;
1402
- description?: string;
1402
+ description?: string | undefined;
1403
1403
  tableReference: TableReference | undefined;
1404
1404
  createTime: Date | undefined;
1405
1405
  updateTime: Date | undefined;
@@ -1511,8 +1511,8 @@ export interface GetConfiguredTableAnalysisRuleOutput {
1511
1511
  analysisRule: ConfiguredTableAnalysisRule | undefined;
1512
1512
  }
1513
1513
  export interface ListConfiguredTablesInput {
1514
- nextToken?: string;
1515
- maxResults?: number;
1514
+ nextToken?: string | undefined;
1515
+ maxResults?: number | undefined;
1516
1516
  }
1517
1517
  export interface ConfiguredTableSummary {
1518
1518
  id: string | undefined;
@@ -1525,12 +1525,12 @@ export interface ConfiguredTableSummary {
1525
1525
  }
1526
1526
  export interface ListConfiguredTablesOutput {
1527
1527
  configuredTableSummaries: ConfiguredTableSummary[] | undefined;
1528
- nextToken?: string;
1528
+ nextToken?: string | undefined;
1529
1529
  }
1530
1530
  export interface UpdateConfiguredTableInput {
1531
1531
  configuredTableIdentifier: string | undefined;
1532
- name?: string;
1533
- description?: string;
1532
+ name?: string | undefined;
1533
+ description?: string | undefined;
1534
1534
  }
1535
1535
  export interface UpdateConfiguredTableOutput {
1536
1536
  configuredTable: ConfiguredTable | undefined;
@@ -1550,10 +1550,10 @@ export interface IdMappingTableInputReferenceConfig {
1550
1550
  export interface CreateIdMappingTableInput {
1551
1551
  membershipIdentifier: string | undefined;
1552
1552
  name: string | undefined;
1553
- description?: string;
1553
+ description?: string | undefined;
1554
1554
  inputReferenceConfig: IdMappingTableInputReferenceConfig | undefined;
1555
- tags?: Record<string, string>;
1556
- kmsKeyArn?: string;
1555
+ tags?: Record<string, string> | undefined;
1556
+ kmsKeyArn?: string | undefined;
1557
1557
  }
1558
1558
  export interface IdMappingTableInputReferenceProperties {
1559
1559
  idMappingTableInputSource: IdMappingTableInputSource[] | undefined;
@@ -1566,12 +1566,12 @@ export interface IdMappingTable {
1566
1566
  membershipArn: string | undefined;
1567
1567
  collaborationId: string | undefined;
1568
1568
  collaborationArn: string | undefined;
1569
- description?: string;
1569
+ description?: string | undefined;
1570
1570
  name: string | undefined;
1571
1571
  createTime: Date | undefined;
1572
1572
  updateTime: Date | undefined;
1573
1573
  inputReferenceProperties: IdMappingTableInputReferenceProperties | undefined;
1574
- kmsKeyArn?: string;
1574
+ kmsKeyArn?: string | undefined;
1575
1575
  }
1576
1576
  export interface CreateIdMappingTableOutput {
1577
1577
  idMappingTable: IdMappingTable | undefined;
@@ -1590,8 +1590,8 @@ export interface GetIdMappingTableOutput {
1590
1590
  }
1591
1591
  export interface ListIdMappingTablesInput {
1592
1592
  membershipIdentifier: string | undefined;
1593
- nextToken?: string;
1594
- maxResults?: number;
1593
+ nextToken?: string | undefined;
1594
+ maxResults?: number | undefined;
1595
1595
  }
1596
1596
  export interface IdMappingTableSummary {
1597
1597
  collaborationArn: string | undefined;
@@ -1602,13 +1602,13 @@ export interface IdMappingTableSummary {
1602
1602
  updateTime: Date | undefined;
1603
1603
  id: string | undefined;
1604
1604
  arn: string | undefined;
1605
- description?: string;
1605
+ description?: string | undefined;
1606
1606
  inputReferenceConfig: IdMappingTableInputReferenceConfig | undefined;
1607
1607
  name: string | undefined;
1608
1608
  }
1609
1609
  export interface ListIdMappingTablesOutput {
1610
1610
  idMappingTableSummaries: IdMappingTableSummary[] | undefined;
1611
- nextToken?: string;
1611
+ nextToken?: string | undefined;
1612
1612
  }
1613
1613
  export interface PopulateIdMappingTableInput {
1614
1614
  idMappingTableIdentifier: string | undefined;
@@ -1620,8 +1620,8 @@ export interface PopulateIdMappingTableOutput {
1620
1620
  export interface UpdateIdMappingTableInput {
1621
1621
  idMappingTableIdentifier: string | undefined;
1622
1622
  membershipIdentifier: string | undefined;
1623
- description?: string;
1624
- kmsKeyArn?: string;
1623
+ description?: string | undefined;
1624
+ kmsKeyArn?: string | undefined;
1625
1625
  }
1626
1626
  export interface UpdateIdMappingTableOutput {
1627
1627
  idMappingTable: IdMappingTable | undefined;
@@ -1629,10 +1629,10 @@ export interface UpdateIdMappingTableOutput {
1629
1629
  export interface CreateIdNamespaceAssociationInput {
1630
1630
  membershipIdentifier: string | undefined;
1631
1631
  inputReferenceConfig: IdNamespaceAssociationInputReferenceConfig | undefined;
1632
- tags?: Record<string, string>;
1632
+ tags?: Record<string, string> | undefined;
1633
1633
  name: string | undefined;
1634
- description?: string;
1635
- idMappingConfig?: IdMappingConfig;
1634
+ description?: string | undefined;
1635
+ idMappingConfig?: IdMappingConfig | undefined;
1636
1636
  }
1637
1637
  export interface IdNamespaceAssociation {
1638
1638
  id: string | undefined;
@@ -1642,14 +1642,14 @@ export interface IdNamespaceAssociation {
1642
1642
  collaborationId: string | undefined;
1643
1643
  collaborationArn: string | undefined;
1644
1644
  name: string | undefined;
1645
- description?: string;
1645
+ description?: string | undefined;
1646
1646
  createTime: Date | undefined;
1647
1647
  updateTime: Date | undefined;
1648
1648
  inputReferenceConfig: IdNamespaceAssociationInputReferenceConfig | undefined;
1649
1649
  inputReferenceProperties:
1650
1650
  | IdNamespaceAssociationInputReferenceProperties
1651
1651
  | undefined;
1652
- idMappingConfig?: IdMappingConfig;
1652
+ idMappingConfig?: IdMappingConfig | undefined;
1653
1653
  }
1654
1654
  export interface CreateIdNamespaceAssociationOutput {
1655
1655
  idNamespaceAssociation: IdNamespaceAssociation | undefined;
@@ -1668,8 +1668,8 @@ export interface GetIdNamespaceAssociationOutput {
1668
1668
  }
1669
1669
  export interface ListIdNamespaceAssociationsInput {
1670
1670
  membershipIdentifier: string | undefined;
1671
- nextToken?: string;
1672
- maxResults?: number;
1671
+ nextToken?: string | undefined;
1672
+ maxResults?: number | undefined;
1673
1673
  }
1674
1674
  export interface IdNamespaceAssociationSummary {
1675
1675
  membershipId: string | undefined;
@@ -1682,21 +1682,21 @@ export interface IdNamespaceAssociationSummary {
1682
1682
  arn: string | undefined;
1683
1683
  inputReferenceConfig: IdNamespaceAssociationInputReferenceConfig | undefined;
1684
1684
  name: string | undefined;
1685
- description?: string;
1685
+ description?: string | undefined;
1686
1686
  inputReferenceProperties:
1687
1687
  | IdNamespaceAssociationInputReferencePropertiesSummary
1688
1688
  | undefined;
1689
1689
  }
1690
1690
  export interface ListIdNamespaceAssociationsOutput {
1691
- nextToken?: string;
1691
+ nextToken?: string | undefined;
1692
1692
  idNamespaceAssociationSummaries: IdNamespaceAssociationSummary[] | undefined;
1693
1693
  }
1694
1694
  export interface UpdateIdNamespaceAssociationInput {
1695
1695
  idNamespaceAssociationIdentifier: string | undefined;
1696
1696
  membershipIdentifier: string | undefined;
1697
- name?: string;
1698
- description?: string;
1699
- idMappingConfig?: IdMappingConfig;
1697
+ name?: string | undefined;
1698
+ description?: string | undefined;
1699
+ idMappingConfig?: IdMappingConfig | undefined;
1700
1700
  }
1701
1701
  export interface UpdateIdNamespaceAssociationOutput {
1702
1702
  idNamespaceAssociation: IdNamespaceAssociation | undefined;
@@ -1715,8 +1715,8 @@ export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat];
1715
1715
  export interface ProtectedQueryS3OutputConfiguration {
1716
1716
  resultFormat: ResultFormat | undefined;
1717
1717
  bucket: string | undefined;
1718
- keyPrefix?: string;
1719
- singleFileOutput?: boolean;
1718
+ keyPrefix?: string | undefined;
1719
+ singleFileOutput?: boolean | undefined;
1720
1720
  }
1721
1721
  export type MembershipProtectedQueryOutputConfiguration =
1722
1722
  | MembershipProtectedQueryOutputConfiguration.S3Member
@@ -1741,7 +1741,7 @@ export declare namespace MembershipProtectedQueryOutputConfiguration {
1741
1741
  }
1742
1742
  export interface MembershipProtectedQueryResultConfiguration {
1743
1743
  outputConfiguration: MembershipProtectedQueryOutputConfiguration | undefined;
1744
- roleArn?: string;
1744
+ roleArn?: string | undefined;
1745
1745
  }
1746
1746
  export interface MembershipModelInferencePaymentConfig {
1747
1747
  isResponsible: boolean | undefined;
@@ -1750,15 +1750,15 @@ export interface MembershipModelTrainingPaymentConfig {
1750
1750
  isResponsible: boolean | undefined;
1751
1751
  }
1752
1752
  export interface MembershipMLPaymentConfig {
1753
- modelTraining?: MembershipModelTrainingPaymentConfig;
1754
- modelInference?: MembershipModelInferencePaymentConfig;
1753
+ modelTraining?: MembershipModelTrainingPaymentConfig | undefined;
1754
+ modelInference?: MembershipModelInferencePaymentConfig | undefined;
1755
1755
  }
1756
1756
  export interface MembershipQueryComputePaymentConfig {
1757
1757
  isResponsible: boolean | undefined;
1758
1758
  }
1759
1759
  export interface MembershipPaymentConfiguration {
1760
1760
  queryCompute: MembershipQueryComputePaymentConfig | undefined;
1761
- machineLearning?: MembershipMLPaymentConfig;
1761
+ machineLearning?: MembershipMLPaymentConfig | undefined;
1762
1762
  }
1763
1763
  export declare const MembershipQueryLogStatus: {
1764
1764
  readonly DISABLED: "DISABLED";
@@ -1769,9 +1769,11 @@ export type MembershipQueryLogStatus =
1769
1769
  export interface CreateMembershipInput {
1770
1770
  collaborationIdentifier: string | undefined;
1771
1771
  queryLogStatus: MembershipQueryLogStatus | undefined;
1772
- tags?: Record<string, string>;
1773
- defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
1774
- paymentConfiguration?: MembershipPaymentConfiguration;
1772
+ tags?: Record<string, string> | undefined;
1773
+ defaultResultConfiguration?:
1774
+ | MembershipProtectedQueryResultConfiguration
1775
+ | undefined;
1776
+ paymentConfiguration?: MembershipPaymentConfiguration | undefined;
1775
1777
  }
1776
1778
  export declare const MembershipStatus: {
1777
1779
  readonly ACTIVE: "ACTIVE";
@@ -1792,9 +1794,11 @@ export interface Membership {
1792
1794
  updateTime: Date | undefined;
1793
1795
  status: MembershipStatus | undefined;
1794
1796
  memberAbilities: MemberAbility[] | undefined;
1795
- mlMemberAbilities?: MLMemberAbilities;
1797
+ mlMemberAbilities?: MLMemberAbilities | undefined;
1796
1798
  queryLogStatus: MembershipQueryLogStatus | undefined;
1797
- defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
1799
+ defaultResultConfiguration?:
1800
+ | MembershipProtectedQueryResultConfiguration
1801
+ | undefined;
1798
1802
  paymentConfiguration: MembershipPaymentConfiguration | undefined;
1799
1803
  }
1800
1804
  export interface CreateMembershipOutput {
@@ -1821,8 +1825,8 @@ export declare const WorkerComputeType: {
1821
1825
  export type WorkerComputeType =
1822
1826
  (typeof WorkerComputeType)[keyof typeof WorkerComputeType];
1823
1827
  export interface WorkerComputeConfiguration {
1824
- type?: WorkerComputeType;
1825
- number?: number;
1828
+ type?: WorkerComputeType | undefined;
1829
+ number?: number | undefined;
1826
1830
  }
1827
1831
  export type ComputeConfiguration =
1828
1832
  | ComputeConfiguration.WorkerMember
@@ -1846,8 +1850,8 @@ export interface DifferentialPrivacySensitivityParameters {
1846
1850
  aggregationType: DifferentialPrivacyAggregationType | undefined;
1847
1851
  aggregationExpression: string | undefined;
1848
1852
  userContributionLimit: number | undefined;
1849
- minColumnValue?: number;
1850
- maxColumnValue?: number;
1853
+ minColumnValue?: number | undefined;
1854
+ maxColumnValue?: number | undefined;
1851
1855
  }
1852
1856
  export interface DifferentialPrivacyParameters {
1853
1857
  sensitivityParameters: DifferentialPrivacySensitivityParameters[] | undefined;
@@ -1929,16 +1933,16 @@ export interface ProtectedQueryResultConfiguration {
1929
1933
  outputConfiguration: ProtectedQueryOutputConfiguration | undefined;
1930
1934
  }
1931
1935
  export interface ProtectedQuerySQLParameters {
1932
- queryString?: string;
1933
- analysisTemplateArn?: string;
1934
- parameters?: Record<string, string>;
1936
+ queryString?: string | undefined;
1937
+ analysisTemplateArn?: string | undefined;
1938
+ parameters?: Record<string, string> | undefined;
1935
1939
  }
1936
1940
  export interface BilledResourceUtilization {
1937
1941
  units: number | undefined;
1938
1942
  }
1939
1943
  export interface ProtectedQueryStatistics {
1940
- totalDurationInMillis?: number;
1941
- billedResourceUtilization?: BilledResourceUtilization;
1944
+ totalDurationInMillis?: number | undefined;
1945
+ billedResourceUtilization?: BilledResourceUtilization | undefined;
1942
1946
  }
1943
1947
  export declare const ProtectedQueryStatus: {
1944
1948
  readonly CANCELLED: "CANCELLED";
@@ -1956,22 +1960,22 @@ export interface ProtectedQuery {
1956
1960
  membershipId: string | undefined;
1957
1961
  membershipArn: string | undefined;
1958
1962
  createTime: Date | undefined;
1959
- sqlParameters?: ProtectedQuerySQLParameters;
1963
+ sqlParameters?: ProtectedQuerySQLParameters | undefined;
1960
1964
  status: ProtectedQueryStatus | undefined;
1961
- resultConfiguration?: ProtectedQueryResultConfiguration;
1962
- statistics?: ProtectedQueryStatistics;
1963
- result?: ProtectedQueryResult;
1964
- error?: ProtectedQueryError;
1965
- differentialPrivacy?: DifferentialPrivacyParameters;
1966
- computeConfiguration?: ComputeConfiguration;
1965
+ resultConfiguration?: ProtectedQueryResultConfiguration | undefined;
1966
+ statistics?: ProtectedQueryStatistics | undefined;
1967
+ result?: ProtectedQueryResult | undefined;
1968
+ error?: ProtectedQueryError | undefined;
1969
+ differentialPrivacy?: DifferentialPrivacyParameters | undefined;
1970
+ computeConfiguration?: ComputeConfiguration | undefined;
1967
1971
  }
1968
1972
  export interface GetProtectedQueryOutput {
1969
1973
  protectedQuery: ProtectedQuery | undefined;
1970
1974
  }
1971
1975
  export interface ListMembershipsInput {
1972
- nextToken?: string;
1973
- maxResults?: number;
1974
- status?: MembershipStatus;
1976
+ nextToken?: string | undefined;
1977
+ maxResults?: number | undefined;
1978
+ status?: MembershipStatus | undefined;
1975
1979
  }
1976
1980
  export interface MembershipSummary {
1977
1981
  id: string | undefined;
@@ -1985,18 +1989,18 @@ export interface MembershipSummary {
1985
1989
  updateTime: Date | undefined;
1986
1990
  status: MembershipStatus | undefined;
1987
1991
  memberAbilities: MemberAbility[] | undefined;
1988
- mlMemberAbilities?: MLMemberAbilities;
1992
+ mlMemberAbilities?: MLMemberAbilities | undefined;
1989
1993
  paymentConfiguration: MembershipPaymentConfiguration | undefined;
1990
1994
  }
1991
1995
  export interface ListMembershipsOutput {
1992
- nextToken?: string;
1996
+ nextToken?: string | undefined;
1993
1997
  membershipSummaries: MembershipSummary[] | undefined;
1994
1998
  }
1995
1999
  export interface ListPrivacyBudgetsInput {
1996
2000
  membershipIdentifier: string | undefined;
1997
2001
  privacyBudgetType: PrivacyBudgetType | undefined;
1998
- nextToken?: string;
1999
- maxResults?: number;
2002
+ nextToken?: string | undefined;
2003
+ maxResults?: number | undefined;
2000
2004
  }
2001
2005
  export interface PrivacyBudgetSummary {
2002
2006
  id: string | undefined;
@@ -2013,16 +2017,16 @@ export interface PrivacyBudgetSummary {
2013
2017
  }
2014
2018
  export interface ListPrivacyBudgetsOutput {
2015
2019
  privacyBudgetSummaries: PrivacyBudgetSummary[] | undefined;
2016
- nextToken?: string;
2020
+ nextToken?: string | undefined;
2017
2021
  }
2018
2022
  export interface ListProtectedQueriesInput {
2019
2023
  membershipIdentifier: string | undefined;
2020
- status?: ProtectedQueryStatus;
2021
- nextToken?: string;
2022
- maxResults?: number;
2024
+ status?: ProtectedQueryStatus | undefined;
2025
+ nextToken?: string | undefined;
2026
+ maxResults?: number | undefined;
2023
2027
  }
2024
2028
  export interface DirectAnalysisConfigurationDetails {
2025
- receiverAccountIds?: string[];
2029
+ receiverAccountIds?: string[] | undefined;
2026
2030
  }
2027
2031
  export type ConfigurationDetails =
2028
2032
  | ConfigurationDetails.DirectAnalysisConfigurationDetailsMember
@@ -2046,7 +2050,7 @@ export declare namespace ConfigurationDetails {
2046
2050
  }
2047
2051
  export interface ReceiverConfiguration {
2048
2052
  analysisType: AnalysisType | undefined;
2049
- configurationDetails?: ConfigurationDetails;
2053
+ configurationDetails?: ConfigurationDetails | undefined;
2050
2054
  }
2051
2055
  export interface ProtectedQuerySummary {
2052
2056
  id: string | undefined;
@@ -2057,7 +2061,7 @@ export interface ProtectedQuerySummary {
2057
2061
  receiverConfigurations: ReceiverConfiguration[] | undefined;
2058
2062
  }
2059
2063
  export interface ListProtectedQueriesOutput {
2060
- nextToken?: string;
2064
+ nextToken?: string | undefined;
2061
2065
  protectedQueries: ProtectedQuerySummary[] | undefined;
2062
2066
  }
2063
2067
  export interface DifferentialPrivacyPreviewParametersInput {