@aws-sdk/client-cleanrooms 3.686.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.
- package/dist-cjs/index.js +42 -31
- package/dist-es/commands/StartProtectedQueryCommand.js +1 -2
- package/dist-es/models/models_0.js +4 -25
- package/dist-es/models/models_1.js +26 -0
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/commands/CreateCollaborationCommand.d.ts +26 -0
- package/dist-types/commands/CreateMembershipCommand.d.ts +21 -0
- package/dist-types/commands/GetMembershipCommand.d.ts +13 -0
- package/dist-types/commands/ListMembersCommand.d.ts +13 -0
- package/dist-types/commands/ListMembershipsCommand.d.ts +13 -0
- package/dist-types/commands/PreviewPrivacyImpactCommand.d.ts +1 -1
- package/dist-types/commands/StartProtectedQueryCommand.d.ts +1 -2
- package/dist-types/commands/UpdateMembershipCommand.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +375 -338
- package/dist-types/models/models_1.d.ts +168 -10
- package/dist-types/ts3.4/commands/PreviewPrivacyImpactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartProtectedQueryCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +220 -250
- package/dist-types/ts3.4/models/models_1.d.ts +86 -9
- package/package.json +7 -7
|
@@ -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
|
|
@@ -1743,6 +1743,88 @@ export declare const MemberAbility: {
|
|
|
1743
1743
|
* @public
|
|
1744
1744
|
*/
|
|
1745
1745
|
export type MemberAbility = (typeof MemberAbility)[keyof typeof MemberAbility];
|
|
1746
|
+
/**
|
|
1747
|
+
* @public
|
|
1748
|
+
* @enum
|
|
1749
|
+
*/
|
|
1750
|
+
export declare const CustomMLMemberAbility: {
|
|
1751
|
+
readonly CAN_RECEIVE_INFERENCE_OUTPUT: "CAN_RECEIVE_INFERENCE_OUTPUT";
|
|
1752
|
+
readonly CAN_RECEIVE_MODEL_OUTPUT: "CAN_RECEIVE_MODEL_OUTPUT";
|
|
1753
|
+
};
|
|
1754
|
+
/**
|
|
1755
|
+
* @public
|
|
1756
|
+
*/
|
|
1757
|
+
export type CustomMLMemberAbility = (typeof CustomMLMemberAbility)[keyof typeof CustomMLMemberAbility];
|
|
1758
|
+
/**
|
|
1759
|
+
* <p>The ML member abilities for a collaboration member.</p>
|
|
1760
|
+
* <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>
|
|
1761
|
+
* @public
|
|
1762
|
+
*/
|
|
1763
|
+
export interface MLMemberAbilities {
|
|
1764
|
+
/**
|
|
1765
|
+
* <p>The custom ML member abilities for a collaboration member. The inference feature is not available in the custom ML modeling beta.</p>
|
|
1766
|
+
* <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>
|
|
1767
|
+
* @public
|
|
1768
|
+
*/
|
|
1769
|
+
customMLMemberAbilities: CustomMLMemberAbility[] | undefined;
|
|
1770
|
+
}
|
|
1771
|
+
/**
|
|
1772
|
+
* <p>An object representing the collaboration member's model inference payment responsibilities set by the
|
|
1773
|
+
* collaboration creator.</p>
|
|
1774
|
+
* @public
|
|
1775
|
+
*/
|
|
1776
|
+
export interface ModelInferencePaymentConfig {
|
|
1777
|
+
/**
|
|
1778
|
+
* <p>Indicates whether the collaboration creator has configured the collaboration member to
|
|
1779
|
+
* pay for model inference costs (<code>TRUE</code>) or has not configured the collaboration
|
|
1780
|
+
* member to pay for model inference costs (<code>FALSE</code>).</p>
|
|
1781
|
+
* <p>Exactly one member can be configured to pay for model inference costs. An error is
|
|
1782
|
+
* returned if the collaboration creator sets a <code>TRUE</code> value for more than one
|
|
1783
|
+
* member in the collaboration. </p>
|
|
1784
|
+
* <p>If the collaboration creator hasn't specified anyone as the member paying for model inference costs, then the member who can query is the default payer. An error is returned if
|
|
1785
|
+
* the collaboration creator sets a <code>FALSE</code> value for the member who can
|
|
1786
|
+
* query.</p>
|
|
1787
|
+
* @public
|
|
1788
|
+
*/
|
|
1789
|
+
isResponsible: boolean | undefined;
|
|
1790
|
+
}
|
|
1791
|
+
/**
|
|
1792
|
+
* <p>An object representing the collaboration member's model training payment responsibilities set by the
|
|
1793
|
+
* collaboration creator.</p>
|
|
1794
|
+
* @public
|
|
1795
|
+
*/
|
|
1796
|
+
export interface ModelTrainingPaymentConfig {
|
|
1797
|
+
/**
|
|
1798
|
+
* <p>Indicates whether the collaboration creator has configured the collaboration member to
|
|
1799
|
+
* pay for model training costs (<code>TRUE</code>) or has not configured the collaboration
|
|
1800
|
+
* member to pay for model training costs (<code>FALSE</code>).</p>
|
|
1801
|
+
* <p>Exactly one member can be configured to pay for model training costs. An error is
|
|
1802
|
+
* returned if the collaboration creator sets a <code>TRUE</code> value for more than one
|
|
1803
|
+
* member in the collaboration. </p>
|
|
1804
|
+
* <p>If the collaboration creator hasn't specified anyone as the member paying for model training costs, then the member who can query is the default payer. An error is returned if
|
|
1805
|
+
* the collaboration creator sets a <code>FALSE</code> value for the member who can
|
|
1806
|
+
* query.</p>
|
|
1807
|
+
* @public
|
|
1808
|
+
*/
|
|
1809
|
+
isResponsible: boolean | undefined;
|
|
1810
|
+
}
|
|
1811
|
+
/**
|
|
1812
|
+
* <p>An object representing the collaboration member's machine learning payment responsibilities set by the
|
|
1813
|
+
* collaboration creator.</p>
|
|
1814
|
+
* @public
|
|
1815
|
+
*/
|
|
1816
|
+
export interface MLPaymentConfig {
|
|
1817
|
+
/**
|
|
1818
|
+
* <p>The payment responsibilities accepted by the member for model training.</p>
|
|
1819
|
+
* @public
|
|
1820
|
+
*/
|
|
1821
|
+
modelTraining?: ModelTrainingPaymentConfig | undefined;
|
|
1822
|
+
/**
|
|
1823
|
+
* <p>The payment responsibilities accepted by the member for model inference.</p>
|
|
1824
|
+
* @public
|
|
1825
|
+
*/
|
|
1826
|
+
modelInference?: ModelInferencePaymentConfig | undefined;
|
|
1827
|
+
}
|
|
1746
1828
|
/**
|
|
1747
1829
|
* <p>An object representing the collaboration member's payment responsibilities set by the
|
|
1748
1830
|
* collaboration creator for query compute costs.</p>
|
|
@@ -1776,6 +1858,12 @@ export interface PaymentConfiguration {
|
|
|
1776
1858
|
* @public
|
|
1777
1859
|
*/
|
|
1778
1860
|
queryCompute: QueryComputePaymentConfig | undefined;
|
|
1861
|
+
/**
|
|
1862
|
+
* <p>An object representing the collaboration member's machine learning payment responsibilities set by the
|
|
1863
|
+
* collaboration creator.</p>
|
|
1864
|
+
* @public
|
|
1865
|
+
*/
|
|
1866
|
+
machineLearning?: MLPaymentConfig | undefined;
|
|
1779
1867
|
}
|
|
1780
1868
|
/**
|
|
1781
1869
|
* <p>The settings for client-side encryption for cryptographic computing.</p>
|
|
@@ -1824,6 +1912,12 @@ export interface MemberSpecification {
|
|
|
1824
1912
|
* @public
|
|
1825
1913
|
*/
|
|
1826
1914
|
memberAbilities: MemberAbility[] | undefined;
|
|
1915
|
+
/**
|
|
1916
|
+
* <p>The ML abilities granted to the collaboration member.</p>
|
|
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
|
+
* @public
|
|
1919
|
+
*/
|
|
1920
|
+
mlMemberAbilities?: MLMemberAbilities | undefined;
|
|
1827
1921
|
/**
|
|
1828
1922
|
* <p>The member's display name.</p>
|
|
1829
1923
|
* @public
|
|
@@ -1835,7 +1929,7 @@ export interface MemberSpecification {
|
|
|
1835
1929
|
* compute costs, then the member who can query is the default payer.</p>
|
|
1836
1930
|
* @public
|
|
1837
1931
|
*/
|
|
1838
|
-
paymentConfiguration?: PaymentConfiguration;
|
|
1932
|
+
paymentConfiguration?: PaymentConfiguration | undefined;
|
|
1839
1933
|
}
|
|
1840
1934
|
/**
|
|
1841
1935
|
* @public
|
|
@@ -1873,6 +1967,12 @@ export interface CreateCollaborationInput {
|
|
|
1873
1967
|
* @public
|
|
1874
1968
|
*/
|
|
1875
1969
|
creatorMemberAbilities: MemberAbility[] | undefined;
|
|
1970
|
+
/**
|
|
1971
|
+
* <p>The ML abilities granted to the collaboration creator.</p>
|
|
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
|
+
* @public
|
|
1974
|
+
*/
|
|
1975
|
+
creatorMLMemberAbilities?: MLMemberAbilities | undefined;
|
|
1876
1976
|
/**
|
|
1877
1977
|
* <p>The display name of the collaboration creator.</p>
|
|
1878
1978
|
* @public
|
|
@@ -1883,7 +1983,7 @@ export interface CreateCollaborationInput {
|
|
|
1883
1983
|
* Rooms.</p>
|
|
1884
1984
|
* @public
|
|
1885
1985
|
*/
|
|
1886
|
-
dataEncryptionMetadata?: DataEncryptionMetadata;
|
|
1986
|
+
dataEncryptionMetadata?: DataEncryptionMetadata | undefined;
|
|
1887
1987
|
/**
|
|
1888
1988
|
* <p>An indicator as to whether query logging has been enabled or disabled for the
|
|
1889
1989
|
* collaboration.</p>
|
|
@@ -1897,19 +1997,19 @@ export interface CreateCollaborationInput {
|
|
|
1897
1997
|
* to this resource.</p>
|
|
1898
1998
|
* @public
|
|
1899
1999
|
*/
|
|
1900
|
-
tags?: Record<string, string
|
|
2000
|
+
tags?: Record<string, string> | undefined;
|
|
1901
2001
|
/**
|
|
1902
2002
|
* <p>The collaboration creator's payment responsibilities set by the collaboration creator. </p>
|
|
1903
2003
|
* <p>If the collaboration creator hasn't specified anyone as the member paying for query
|
|
1904
2004
|
* compute costs, then the member who can query is the default payer.</p>
|
|
1905
2005
|
* @public
|
|
1906
2006
|
*/
|
|
1907
|
-
creatorPaymentConfiguration?: PaymentConfiguration;
|
|
2007
|
+
creatorPaymentConfiguration?: PaymentConfiguration | undefined;
|
|
1908
2008
|
/**
|
|
1909
2009
|
* <p> The analytics engine.</p>
|
|
1910
2010
|
* @public
|
|
1911
2011
|
*/
|
|
1912
|
-
analyticsEngine?: AnalyticsEngine;
|
|
2012
|
+
analyticsEngine?: AnalyticsEngine | undefined;
|
|
1913
2013
|
}
|
|
1914
2014
|
/**
|
|
1915
2015
|
* @public
|
|
@@ -1951,7 +2051,7 @@ export interface Collaboration {
|
|
|
1951
2051
|
* <p>A description of the collaboration provided by the collaboration owner.</p>
|
|
1952
2052
|
* @public
|
|
1953
2053
|
*/
|
|
1954
|
-
description?: string;
|
|
2054
|
+
description?: string | undefined;
|
|
1955
2055
|
/**
|
|
1956
2056
|
* <p>The identifier used to reference members of the collaboration. Currently only supports
|
|
1957
2057
|
* Amazon Web Services account ID.</p>
|
|
@@ -1982,17 +2082,17 @@ export interface Collaboration {
|
|
|
1982
2082
|
* <p>The unique ID for your membership within the collaboration.</p>
|
|
1983
2083
|
* @public
|
|
1984
2084
|
*/
|
|
1985
|
-
membershipId?: string;
|
|
2085
|
+
membershipId?: string | undefined;
|
|
1986
2086
|
/**
|
|
1987
2087
|
* <p>The unique ARN for your membership within the collaboration.</p>
|
|
1988
2088
|
* @public
|
|
1989
2089
|
*/
|
|
1990
|
-
membershipArn?: string;
|
|
2090
|
+
membershipArn?: string | undefined;
|
|
1991
2091
|
/**
|
|
1992
2092
|
* <p>The settings for client-side encryption for cryptographic computing.</p>
|
|
1993
2093
|
* @public
|
|
1994
2094
|
*/
|
|
1995
|
-
dataEncryptionMetadata?: DataEncryptionMetadata;
|
|
2095
|
+
dataEncryptionMetadata?: DataEncryptionMetadata | undefined;
|
|
1996
2096
|
/**
|
|
1997
2097
|
* <p>An indicator as to whether query logging has been enabled or disabled for the
|
|
1998
2098
|
* collaboration.</p>
|
|
@@ -2003,7 +2103,7 @@ export interface Collaboration {
|
|
|
2003
2103
|
* <p> The analytics engine for the collaboration.</p>
|
|
2004
2104
|
* @public
|
|
2005
2105
|
*/
|
|
2006
|
-
analyticsEngine?: AnalyticsEngine;
|
|
2106
|
+
analyticsEngine?: AnalyticsEngine | undefined;
|
|
2007
2107
|
}
|
|
2008
2108
|
/**
|
|
2009
2109
|
* @public
|
|
@@ -2151,7 +2251,7 @@ export interface CollaborationConfiguredAudienceModelAssociation {
|
|
|
2151
2251
|
* <p>The description of the configured audience model association.</p>
|
|
2152
2252
|
* @public
|
|
2153
2253
|
*/
|
|
2154
|
-
description?: string;
|
|
2254
|
+
description?: string | undefined;
|
|
2155
2255
|
/**
|
|
2156
2256
|
* <p>The identifier used to reference members of the collaboration. Only supports Amazon Web Services account ID.</p>
|
|
2157
2257
|
* @public
|
|
@@ -2272,7 +2372,7 @@ export interface CollaborationIdNamespaceAssociation {
|
|
|
2272
2372
|
* <p>The description of the collaboration ID namespace association.</p>
|
|
2273
2373
|
* @public
|
|
2274
2374
|
*/
|
|
2275
|
-
description?: string;
|
|
2375
|
+
description?: string | undefined;
|
|
2276
2376
|
/**
|
|
2277
2377
|
* <p>The unique identifier of the Amazon Web Services account that created the collaboration ID namespace association.</p>
|
|
2278
2378
|
* @public
|
|
@@ -2302,7 +2402,7 @@ export interface CollaborationIdNamespaceAssociation {
|
|
|
2302
2402
|
* <p>The configuration settings for the ID mapping table.</p>
|
|
2303
2403
|
* @public
|
|
2304
2404
|
*/
|
|
2305
|
-
idMappingConfig?: IdMappingConfig;
|
|
2405
|
+
idMappingConfig?: IdMappingConfig | undefined;
|
|
2306
2406
|
}
|
|
2307
2407
|
/**
|
|
2308
2408
|
* @public
|
|
@@ -2539,13 +2639,13 @@ export interface ListCollaborationAnalysisTemplatesInput {
|
|
|
2539
2639
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
2540
2640
|
* @public
|
|
2541
2641
|
*/
|
|
2542
|
-
nextToken?: string;
|
|
2642
|
+
nextToken?: string | undefined;
|
|
2543
2643
|
/**
|
|
2544
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
|
|
2545
2645
|
* `maxResults` value has not been met.</p>
|
|
2546
2646
|
* @public
|
|
2547
2647
|
*/
|
|
2548
|
-
maxResults?: number;
|
|
2648
|
+
maxResults?: number | undefined;
|
|
2549
2649
|
}
|
|
2550
2650
|
/**
|
|
2551
2651
|
* <p>The metadata of the analysis template within a collaboration.</p>
|
|
@@ -2600,7 +2700,7 @@ export interface CollaborationAnalysisTemplateSummary {
|
|
|
2600
2700
|
* <p>The description of the analysis template.</p>
|
|
2601
2701
|
* @public
|
|
2602
2702
|
*/
|
|
2603
|
-
description?: string;
|
|
2703
|
+
description?: string | undefined;
|
|
2604
2704
|
}
|
|
2605
2705
|
/**
|
|
2606
2706
|
* @public
|
|
@@ -2610,7 +2710,7 @@ export interface ListCollaborationAnalysisTemplatesOutput {
|
|
|
2610
2710
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
2611
2711
|
* @public
|
|
2612
2712
|
*/
|
|
2613
|
-
nextToken?: string;
|
|
2713
|
+
nextToken?: string | undefined;
|
|
2614
2714
|
/**
|
|
2615
2715
|
* <p>The metadata of the analysis template within a collaboration.</p>
|
|
2616
2716
|
* @public
|
|
@@ -2630,13 +2730,13 @@ export interface ListCollaborationConfiguredAudienceModelAssociationsInput {
|
|
|
2630
2730
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
2631
2731
|
* @public
|
|
2632
2732
|
*/
|
|
2633
|
-
nextToken?: string;
|
|
2733
|
+
nextToken?: string | undefined;
|
|
2634
2734
|
/**
|
|
2635
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
|
|
2636
2736
|
* `maxResults` value has not been met.</p>
|
|
2637
2737
|
* @public
|
|
2638
2738
|
*/
|
|
2639
|
-
maxResults?: number;
|
|
2739
|
+
maxResults?: number | undefined;
|
|
2640
2740
|
}
|
|
2641
2741
|
/**
|
|
2642
2742
|
* <p>A summary of the configured audience model association in the collaboration.</p>
|
|
@@ -2687,7 +2787,7 @@ export interface CollaborationConfiguredAudienceModelAssociationSummary {
|
|
|
2687
2787
|
* <p>The description of the configured audience model association.</p>
|
|
2688
2788
|
* @public
|
|
2689
2789
|
*/
|
|
2690
|
-
description?: string;
|
|
2790
|
+
description?: string | undefined;
|
|
2691
2791
|
}
|
|
2692
2792
|
/**
|
|
2693
2793
|
* @public
|
|
@@ -2702,7 +2802,7 @@ export interface ListCollaborationConfiguredAudienceModelAssociationsOutput {
|
|
|
2702
2802
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
2703
2803
|
* @public
|
|
2704
2804
|
*/
|
|
2705
|
-
nextToken?: string;
|
|
2805
|
+
nextToken?: string | undefined;
|
|
2706
2806
|
}
|
|
2707
2807
|
/**
|
|
2708
2808
|
* @public
|
|
@@ -2717,12 +2817,12 @@ export interface ListCollaborationIdNamespaceAssociationsInput {
|
|
|
2717
2817
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
2718
2818
|
* @public
|
|
2719
2819
|
*/
|
|
2720
|
-
nextToken?: string;
|
|
2820
|
+
nextToken?: string | undefined;
|
|
2721
2821
|
/**
|
|
2722
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.></p>
|
|
2723
2823
|
* @public
|
|
2724
2824
|
*/
|
|
2725
|
-
maxResults?: number;
|
|
2825
|
+
maxResults?: number | undefined;
|
|
2726
2826
|
}
|
|
2727
2827
|
/**
|
|
2728
2828
|
* <p>Detailed information about the ID namespace association input reference properties.</p>
|
|
@@ -2789,7 +2889,7 @@ export interface CollaborationIdNamespaceAssociationSummary {
|
|
|
2789
2889
|
* <p>The description of the collaboration ID namepsace association.</p>
|
|
2790
2890
|
* @public
|
|
2791
2891
|
*/
|
|
2792
|
-
description?: string;
|
|
2892
|
+
description?: string | undefined;
|
|
2793
2893
|
/**
|
|
2794
2894
|
* <p>The input reference properties that are used to create the collaboration ID namespace association.</p>
|
|
2795
2895
|
* @public
|
|
@@ -2804,7 +2904,7 @@ export interface ListCollaborationIdNamespaceAssociationsOutput {
|
|
|
2804
2904
|
* <p>The token value provided to access the next page of results.</p>
|
|
2805
2905
|
* @public
|
|
2806
2906
|
*/
|
|
2807
|
-
nextToken?: string;
|
|
2907
|
+
nextToken?: string | undefined;
|
|
2808
2908
|
/**
|
|
2809
2909
|
* <p>The summary information of the collaboration ID namespace associations that you requested.</p>
|
|
2810
2910
|
* @public
|
|
@@ -2830,12 +2930,12 @@ export interface ListCollaborationPrivacyBudgetsInput {
|
|
|
2830
2930
|
* `maxResults` value has not been met.</p>
|
|
2831
2931
|
* @public
|
|
2832
2932
|
*/
|
|
2833
|
-
maxResults?: number;
|
|
2933
|
+
maxResults?: number | undefined;
|
|
2834
2934
|
/**
|
|
2835
2935
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
2836
2936
|
* @public
|
|
2837
2937
|
*/
|
|
2838
|
-
nextToken?: string;
|
|
2938
|
+
nextToken?: string | undefined;
|
|
2839
2939
|
}
|
|
2840
2940
|
/**
|
|
2841
2941
|
* @public
|
|
@@ -2988,7 +3088,7 @@ export interface ListCollaborationPrivacyBudgetsOutput {
|
|
|
2988
3088
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
2989
3089
|
* @public
|
|
2990
3090
|
*/
|
|
2991
|
-
nextToken?: string;
|
|
3091
|
+
nextToken?: string | undefined;
|
|
2992
3092
|
}
|
|
2993
3093
|
/**
|
|
2994
3094
|
* @public
|
|
@@ -3003,13 +3103,13 @@ export interface ListCollaborationPrivacyBudgetTemplatesInput {
|
|
|
3003
3103
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
3004
3104
|
* @public
|
|
3005
3105
|
*/
|
|
3006
|
-
nextToken?: string;
|
|
3106
|
+
nextToken?: string | undefined;
|
|
3007
3107
|
/**
|
|
3008
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
|
|
3009
3109
|
* `maxResults` value has not been met.</p>
|
|
3010
3110
|
* @public
|
|
3011
3111
|
*/
|
|
3012
|
-
maxResults?: number;
|
|
3112
|
+
maxResults?: number | undefined;
|
|
3013
3113
|
}
|
|
3014
3114
|
/**
|
|
3015
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>
|
|
@@ -3065,7 +3165,7 @@ export interface ListCollaborationPrivacyBudgetTemplatesOutput {
|
|
|
3065
3165
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
3066
3166
|
* @public
|
|
3067
3167
|
*/
|
|
3068
|
-
nextToken?: string;
|
|
3168
|
+
nextToken?: string | undefined;
|
|
3069
3169
|
/**
|
|
3070
3170
|
* <p>An array that summarizes the collaboration privacy budget templates. The summary includes collaboration information, creation information, the privacy budget type.</p>
|
|
3071
3171
|
* @public
|
|
@@ -3092,18 +3192,18 @@ export interface ListCollaborationsInput {
|
|
|
3092
3192
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
3093
3193
|
* @public
|
|
3094
3194
|
*/
|
|
3095
|
-
nextToken?: string;
|
|
3195
|
+
nextToken?: string | undefined;
|
|
3096
3196
|
/**
|
|
3097
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
|
|
3098
3198
|
* `maxResults` value has not been met.</p>
|
|
3099
3199
|
* @public
|
|
3100
3200
|
*/
|
|
3101
|
-
maxResults?: number;
|
|
3201
|
+
maxResults?: number | undefined;
|
|
3102
3202
|
/**
|
|
3103
3203
|
* <p>The caller's status in a collaboration.</p>
|
|
3104
3204
|
* @public
|
|
3105
3205
|
*/
|
|
3106
|
-
memberStatus?: FilterableMemberStatus;
|
|
3206
|
+
memberStatus?: FilterableMemberStatus | undefined;
|
|
3107
3207
|
}
|
|
3108
3208
|
/**
|
|
3109
3209
|
* <p>The metadata of the collaboration.</p>
|
|
@@ -3156,17 +3256,17 @@ export interface CollaborationSummary {
|
|
|
3156
3256
|
* <p>The identifier of a member in a collaboration.</p>
|
|
3157
3257
|
* @public
|
|
3158
3258
|
*/
|
|
3159
|
-
membershipId?: string;
|
|
3259
|
+
membershipId?: string | undefined;
|
|
3160
3260
|
/**
|
|
3161
3261
|
* <p>The ARN of a member in a collaboration.</p>
|
|
3162
3262
|
* @public
|
|
3163
3263
|
*/
|
|
3164
|
-
membershipArn?: string;
|
|
3264
|
+
membershipArn?: string | undefined;
|
|
3165
3265
|
/**
|
|
3166
3266
|
* <p> The analytics engine.</p>
|
|
3167
3267
|
* @public
|
|
3168
3268
|
*/
|
|
3169
|
-
analyticsEngine?: AnalyticsEngine;
|
|
3269
|
+
analyticsEngine?: AnalyticsEngine | undefined;
|
|
3170
3270
|
}
|
|
3171
3271
|
/**
|
|
3172
3272
|
* @public
|
|
@@ -3176,7 +3276,7 @@ export interface ListCollaborationsOutput {
|
|
|
3176
3276
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
3177
3277
|
* @public
|
|
3178
3278
|
*/
|
|
3179
|
-
nextToken?: string;
|
|
3279
|
+
nextToken?: string | undefined;
|
|
3180
3280
|
/**
|
|
3181
3281
|
* <p>The list of collaborations.</p>
|
|
3182
3282
|
* @public
|
|
@@ -3196,13 +3296,13 @@ export interface ListMembersInput {
|
|
|
3196
3296
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
3197
3297
|
* @public
|
|
3198
3298
|
*/
|
|
3199
|
-
nextToken?: string;
|
|
3299
|
+
nextToken?: string | undefined;
|
|
3200
3300
|
/**
|
|
3201
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
|
|
3202
3302
|
* `maxResults` value has not been met.</p>
|
|
3203
3303
|
* @public
|
|
3204
3304
|
*/
|
|
3205
|
-
maxResults?: number;
|
|
3305
|
+
maxResults?: number | undefined;
|
|
3206
3306
|
}
|
|
3207
3307
|
/**
|
|
3208
3308
|
* <p>The member object listed by the request.</p>
|
|
@@ -3230,6 +3330,12 @@ export interface MemberSummary {
|
|
|
3230
3330
|
* @public
|
|
3231
3331
|
*/
|
|
3232
3332
|
abilities: MemberAbility[] | undefined;
|
|
3333
|
+
/**
|
|
3334
|
+
* <p>Provides a summary of the ML abilities for the collaboration member.</p>
|
|
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
|
+
* @public
|
|
3337
|
+
*/
|
|
3338
|
+
mlAbilities?: MLMemberAbilities | undefined;
|
|
3233
3339
|
/**
|
|
3234
3340
|
* <p>The time when the member was created.</p>
|
|
3235
3341
|
* @public
|
|
@@ -3244,12 +3350,12 @@ export interface MemberSummary {
|
|
|
3244
3350
|
* <p>The unique ID for the member's associated membership, if present.</p>
|
|
3245
3351
|
* @public
|
|
3246
3352
|
*/
|
|
3247
|
-
membershipId?: string;
|
|
3353
|
+
membershipId?: string | undefined;
|
|
3248
3354
|
/**
|
|
3249
3355
|
* <p>The unique ARN for the member's associated membership, if present.</p>
|
|
3250
3356
|
* @public
|
|
3251
3357
|
*/
|
|
3252
|
-
membershipArn?: string;
|
|
3358
|
+
membershipArn?: string | undefined;
|
|
3253
3359
|
/**
|
|
3254
3360
|
* <p>The collaboration member's payment responsibilities set by the collaboration creator. </p>
|
|
3255
3361
|
* @public
|
|
@@ -3264,7 +3370,7 @@ export interface ListMembersOutput {
|
|
|
3264
3370
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
3265
3371
|
* @public
|
|
3266
3372
|
*/
|
|
3267
|
-
nextToken?: string;
|
|
3373
|
+
nextToken?: string | undefined;
|
|
3268
3374
|
/**
|
|
3269
3375
|
* <p>The list of members returned by the ListMembers operation.</p>
|
|
3270
3376
|
* @public
|
|
@@ -3285,18 +3391,18 @@ export interface ListSchemasInput {
|
|
|
3285
3391
|
* <p>If present, filter schemas by schema type.</p>
|
|
3286
3392
|
* @public
|
|
3287
3393
|
*/
|
|
3288
|
-
schemaType?: SchemaType;
|
|
3394
|
+
schemaType?: SchemaType | undefined;
|
|
3289
3395
|
/**
|
|
3290
3396
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
3291
3397
|
* @public
|
|
3292
3398
|
*/
|
|
3293
|
-
nextToken?: string;
|
|
3399
|
+
nextToken?: string | undefined;
|
|
3294
3400
|
/**
|
|
3295
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
|
|
3296
3402
|
* `maxResults` value has not been met.</p>
|
|
3297
3403
|
* @public
|
|
3298
3404
|
*/
|
|
3299
|
-
maxResults?: number;
|
|
3405
|
+
maxResults?: number | undefined;
|
|
3300
3406
|
}
|
|
3301
3407
|
/**
|
|
3302
3408
|
* <p>The schema summary for the objects listed by the request.</p>
|
|
@@ -3348,7 +3454,7 @@ export interface SchemaSummary {
|
|
|
3348
3454
|
* `DIRECT_QUERY`.</p>
|
|
3349
3455
|
* @public
|
|
3350
3456
|
*/
|
|
3351
|
-
analysisMethod?: AnalysisMethod;
|
|
3457
|
+
analysisMethod?: AnalysisMethod | undefined;
|
|
3352
3458
|
}
|
|
3353
3459
|
/**
|
|
3354
3460
|
* @public
|
|
@@ -3363,7 +3469,7 @@ export interface ListSchemasOutput {
|
|
|
3363
3469
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
3364
3470
|
* @public
|
|
3365
3471
|
*/
|
|
3366
|
-
nextToken?: string;
|
|
3472
|
+
nextToken?: string | undefined;
|
|
3367
3473
|
}
|
|
3368
3474
|
/**
|
|
3369
3475
|
* @public
|
|
@@ -3379,12 +3485,12 @@ export interface UpdateCollaborationInput {
|
|
|
3379
3485
|
* unique.</p>
|
|
3380
3486
|
* @public
|
|
3381
3487
|
*/
|
|
3382
|
-
name?: string;
|
|
3488
|
+
name?: string | undefined;
|
|
3383
3489
|
/**
|
|
3384
3490
|
* <p>A description of the collaboration.</p>
|
|
3385
3491
|
* @public
|
|
3386
3492
|
*/
|
|
3387
|
-
description?: string;
|
|
3493
|
+
description?: string | undefined;
|
|
3388
3494
|
}
|
|
3389
3495
|
/**
|
|
3390
3496
|
* @public
|
|
@@ -3430,12 +3536,12 @@ export interface CreateConfiguredAudienceModelAssociationInput {
|
|
|
3430
3536
|
* to this resource.</p>
|
|
3431
3537
|
* @public
|
|
3432
3538
|
*/
|
|
3433
|
-
tags?: Record<string, string
|
|
3539
|
+
tags?: Record<string, string> | undefined;
|
|
3434
3540
|
/**
|
|
3435
3541
|
* <p>A description of the configured audience model association.</p>
|
|
3436
3542
|
* @public
|
|
3437
3543
|
*/
|
|
3438
|
-
description?: string;
|
|
3544
|
+
description?: string | undefined;
|
|
3439
3545
|
}
|
|
3440
3546
|
/**
|
|
3441
3547
|
* <p>Details about the configured audience model association.</p>
|
|
@@ -3491,7 +3597,7 @@ export interface ConfiguredAudienceModelAssociation {
|
|
|
3491
3597
|
* <p>The description of the configured audience model association.</p>
|
|
3492
3598
|
* @public
|
|
3493
3599
|
*/
|
|
3494
|
-
description?: string;
|
|
3600
|
+
description?: string | undefined;
|
|
3495
3601
|
/**
|
|
3496
3602
|
* <p>The time at which the configured audience model association was created.</p>
|
|
3497
3603
|
* @public
|
|
@@ -3571,13 +3677,13 @@ export interface ListConfiguredAudienceModelAssociationsInput {
|
|
|
3571
3677
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
3572
3678
|
* @public
|
|
3573
3679
|
*/
|
|
3574
|
-
nextToken?: string;
|
|
3680
|
+
nextToken?: string | undefined;
|
|
3575
3681
|
/**
|
|
3576
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
|
|
3577
3683
|
* `maxResults` value has not been met.</p>
|
|
3578
3684
|
* @public
|
|
3579
3685
|
*/
|
|
3580
|
-
maxResults?: number;
|
|
3686
|
+
maxResults?: number | undefined;
|
|
3581
3687
|
}
|
|
3582
3688
|
/**
|
|
3583
3689
|
* <p>A summary of the configured audience model association.</p>
|
|
@@ -3638,7 +3744,7 @@ export interface ConfiguredAudienceModelAssociationSummary {
|
|
|
3638
3744
|
* <p>The description of the configured audience model association.</p>
|
|
3639
3745
|
* @public
|
|
3640
3746
|
*/
|
|
3641
|
-
description?: string;
|
|
3747
|
+
description?: string | undefined;
|
|
3642
3748
|
}
|
|
3643
3749
|
/**
|
|
3644
3750
|
* @public
|
|
@@ -3653,7 +3759,7 @@ export interface ListConfiguredAudienceModelAssociationsOutput {
|
|
|
3653
3759
|
* <p>The token value provided to access the next page of results.</p>
|
|
3654
3760
|
* @public
|
|
3655
3761
|
*/
|
|
3656
|
-
nextToken?: string;
|
|
3762
|
+
nextToken?: string | undefined;
|
|
3657
3763
|
}
|
|
3658
3764
|
/**
|
|
3659
3765
|
* @public
|
|
@@ -3673,12 +3779,12 @@ export interface UpdateConfiguredAudienceModelAssociationInput {
|
|
|
3673
3779
|
* <p>A new description for the configured audience model association.</p>
|
|
3674
3780
|
* @public
|
|
3675
3781
|
*/
|
|
3676
|
-
description?: string;
|
|
3782
|
+
description?: string | undefined;
|
|
3677
3783
|
/**
|
|
3678
3784
|
* <p>A new name for the configured audience model association.</p>
|
|
3679
3785
|
* @public
|
|
3680
3786
|
*/
|
|
3681
|
-
name?: string;
|
|
3787
|
+
name?: string | undefined;
|
|
3682
3788
|
}
|
|
3683
3789
|
/**
|
|
3684
3790
|
* @public
|
|
@@ -3704,7 +3810,7 @@ export interface CreateConfiguredTableAssociationInput {
|
|
|
3704
3810
|
* <p>A description for the configured table association.</p>
|
|
3705
3811
|
* @public
|
|
3706
3812
|
*/
|
|
3707
|
-
description?: string;
|
|
3813
|
+
description?: string | undefined;
|
|
3708
3814
|
/**
|
|
3709
3815
|
* <p>A unique identifier for one of your memberships for a collaboration. The configured
|
|
3710
3816
|
* table is associated to the collaboration that this membership belongs to. Currently accepts
|
|
@@ -3730,7 +3836,7 @@ export interface CreateConfiguredTableAssociationInput {
|
|
|
3730
3836
|
* to this resource.</p>
|
|
3731
3837
|
* @public
|
|
3732
3838
|
*/
|
|
3733
|
-
tags?: Record<string, string
|
|
3839
|
+
tags?: Record<string, string> | undefined;
|
|
3734
3840
|
}
|
|
3735
3841
|
/**
|
|
3736
3842
|
* @public
|
|
@@ -3795,12 +3901,12 @@ export interface ConfiguredTableAssociation {
|
|
|
3795
3901
|
* <p>A description of the configured table association.</p>
|
|
3796
3902
|
* @public
|
|
3797
3903
|
*/
|
|
3798
|
-
description?: string;
|
|
3904
|
+
description?: string | undefined;
|
|
3799
3905
|
/**
|
|
3800
3906
|
* <p> The analysis rule types for the configured table association.</p>
|
|
3801
3907
|
* @public
|
|
3802
3908
|
*/
|
|
3803
|
-
analysisRuleTypes?: ConfiguredTableAssociationAnalysisRuleType[];
|
|
3909
|
+
analysisRuleTypes?: ConfiguredTableAssociationAnalysisRuleType[] | undefined;
|
|
3804
3910
|
/**
|
|
3805
3911
|
* <p>The time the configured table association was created.</p>
|
|
3806
3912
|
* @public
|
|
@@ -3832,7 +3938,7 @@ export interface ConfiguredTableAssociationAnalysisRuleAggregation {
|
|
|
3832
3938
|
* with this configured table.</p>
|
|
3833
3939
|
* @public
|
|
3834
3940
|
*/
|
|
3835
|
-
allowedResultReceivers?: string[];
|
|
3941
|
+
allowedResultReceivers?: string[] | undefined;
|
|
3836
3942
|
/**
|
|
3837
3943
|
* <p> The list of resources or wildcards (ARNs) that are allowed to perform additional analysis on query output.</p>
|
|
3838
3944
|
* <p>The <code>allowedAdditionalAnalyses</code> parameter is currently supported for the list
|
|
@@ -3840,7 +3946,7 @@ export interface ConfiguredTableAssociationAnalysisRuleAggregation {
|
|
|
3840
3946
|
* (<code>AnalysisRuleCustom</code>).</p>
|
|
3841
3947
|
* @public
|
|
3842
3948
|
*/
|
|
3843
|
-
allowedAdditionalAnalyses?: string[];
|
|
3949
|
+
allowedAdditionalAnalyses?: string[] | undefined;
|
|
3844
3950
|
}
|
|
3845
3951
|
/**
|
|
3846
3952
|
* <p> The configured table association analysis rule applied to a configured table with the custom analysis rule.</p>
|
|
@@ -3852,12 +3958,12 @@ export interface ConfiguredTableAssociationAnalysisRuleCustom {
|
|
|
3852
3958
|
* with this configured table.</p>
|
|
3853
3959
|
* @public
|
|
3854
3960
|
*/
|
|
3855
|
-
allowedResultReceivers?: string[];
|
|
3961
|
+
allowedResultReceivers?: string[] | undefined;
|
|
3856
3962
|
/**
|
|
3857
3963
|
* <p> The list of resources or wildcards (ARNs) that are allowed to perform additional analysis on query output.</p>
|
|
3858
3964
|
* @public
|
|
3859
3965
|
*/
|
|
3860
|
-
allowedAdditionalAnalyses?: string[];
|
|
3966
|
+
allowedAdditionalAnalyses?: string[] | undefined;
|
|
3861
3967
|
}
|
|
3862
3968
|
/**
|
|
3863
3969
|
* <p> The configured table association analysis rule applied to a configured table with the list analysis rule.</p>
|
|
@@ -3869,12 +3975,12 @@ export interface ConfiguredTableAssociationAnalysisRuleList {
|
|
|
3869
3975
|
* with this configured table.</p>
|
|
3870
3976
|
* @public
|
|
3871
3977
|
*/
|
|
3872
|
-
allowedResultReceivers?: string[];
|
|
3978
|
+
allowedResultReceivers?: string[] | undefined;
|
|
3873
3979
|
/**
|
|
3874
3980
|
* <p> The list of resources or wildcards (ARNs) that are allowed to perform additional analysis on query output.</p>
|
|
3875
3981
|
* @public
|
|
3876
3982
|
*/
|
|
3877
|
-
allowedAdditionalAnalyses?: string[];
|
|
3983
|
+
allowedAdditionalAnalyses?: string[] | undefined;
|
|
3878
3984
|
}
|
|
3879
3985
|
/**
|
|
3880
3986
|
* <p> Controls on the query specifications that can be run on an associated configured table.</p>
|
|
@@ -4170,13 +4276,13 @@ export interface ListConfiguredTableAssociationsInput {
|
|
|
4170
4276
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
4171
4277
|
* @public
|
|
4172
4278
|
*/
|
|
4173
|
-
nextToken?: string;
|
|
4279
|
+
nextToken?: string | undefined;
|
|
4174
4280
|
/**
|
|
4175
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
|
|
4176
4282
|
* `maxResults` value has not been met.</p>
|
|
4177
4283
|
* @public
|
|
4178
4284
|
*/
|
|
4179
|
-
maxResults?: number;
|
|
4285
|
+
maxResults?: number | undefined;
|
|
4180
4286
|
}
|
|
4181
4287
|
/**
|
|
4182
4288
|
* <p>The configured table association summary for the objects listed by the request.</p>
|
|
@@ -4240,7 +4346,7 @@ export interface ListConfiguredTableAssociationsOutput {
|
|
|
4240
4346
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
4241
4347
|
* @public
|
|
4242
4348
|
*/
|
|
4243
|
-
nextToken?: string;
|
|
4349
|
+
nextToken?: string | undefined;
|
|
4244
4350
|
}
|
|
4245
4351
|
/**
|
|
4246
4352
|
* @public
|
|
@@ -4262,12 +4368,12 @@ export interface UpdateConfiguredTableAssociationInput {
|
|
|
4262
4368
|
* <p>A new description for the configured table association.</p>
|
|
4263
4369
|
* @public
|
|
4264
4370
|
*/
|
|
4265
|
-
description?: string;
|
|
4371
|
+
description?: string | undefined;
|
|
4266
4372
|
/**
|
|
4267
4373
|
* <p>The service will assume this role to access catalog metadata and query the table.</p>
|
|
4268
4374
|
* @public
|
|
4269
4375
|
*/
|
|
4270
|
-
roleArn?: string;
|
|
4376
|
+
roleArn?: string | undefined;
|
|
4271
4377
|
}
|
|
4272
4378
|
/**
|
|
4273
4379
|
* @public
|
|
@@ -4378,7 +4484,7 @@ export interface CreateConfiguredTableInput {
|
|
|
4378
4484
|
* <p>A description for the configured table.</p>
|
|
4379
4485
|
* @public
|
|
4380
4486
|
*/
|
|
4381
|
-
description?: string;
|
|
4487
|
+
description?: string | undefined;
|
|
4382
4488
|
/**
|
|
4383
4489
|
* <p>A reference to the Glue table being configured.</p>
|
|
4384
4490
|
* @public
|
|
@@ -4403,7 +4509,7 @@ export interface CreateConfiguredTableInput {
|
|
|
4403
4509
|
* to this resource.</p>
|
|
4404
4510
|
* @public
|
|
4405
4511
|
*/
|
|
4406
|
-
tags?: Record<string, string
|
|
4512
|
+
tags?: Record<string, string> | undefined;
|
|
4407
4513
|
}
|
|
4408
4514
|
/**
|
|
4409
4515
|
* @public
|
|
@@ -4442,7 +4548,7 @@ export interface ConfiguredTable {
|
|
|
4442
4548
|
* <p>A description for the configured table.</p>
|
|
4443
4549
|
* @public
|
|
4444
4550
|
*/
|
|
4445
|
-
description?: string;
|
|
4551
|
+
description?: string | undefined;
|
|
4446
4552
|
/**
|
|
4447
4553
|
* <p>The Glue table that this configured table represents.</p>
|
|
4448
4554
|
* @public
|
|
@@ -4736,13 +4842,13 @@ export interface ListConfiguredTablesInput {
|
|
|
4736
4842
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
4737
4843
|
* @public
|
|
4738
4844
|
*/
|
|
4739
|
-
nextToken?: string;
|
|
4845
|
+
nextToken?: string | undefined;
|
|
4740
4846
|
/**
|
|
4741
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
|
|
4742
4848
|
* `maxResults` value has not been met.</p>
|
|
4743
4849
|
* @public
|
|
4744
4850
|
*/
|
|
4745
|
-
maxResults?: number;
|
|
4851
|
+
maxResults?: number | undefined;
|
|
4746
4852
|
}
|
|
4747
4853
|
/**
|
|
4748
4854
|
* <p>The configured table summary for the objects listed by the request.</p>
|
|
@@ -4799,7 +4905,7 @@ export interface ListConfiguredTablesOutput {
|
|
|
4799
4905
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
4800
4906
|
* @public
|
|
4801
4907
|
*/
|
|
4802
|
-
nextToken?: string;
|
|
4908
|
+
nextToken?: string | undefined;
|
|
4803
4909
|
}
|
|
4804
4910
|
/**
|
|
4805
4911
|
* @public
|
|
@@ -4815,12 +4921,12 @@ export interface UpdateConfiguredTableInput {
|
|
|
4815
4921
|
* <p>A new name for the configured table.</p>
|
|
4816
4922
|
* @public
|
|
4817
4923
|
*/
|
|
4818
|
-
name?: string;
|
|
4924
|
+
name?: string | undefined;
|
|
4819
4925
|
/**
|
|
4820
4926
|
* <p>A new description for the configured table.</p>
|
|
4821
4927
|
* @public
|
|
4822
4928
|
*/
|
|
4823
|
-
description?: string;
|
|
4929
|
+
description?: string | undefined;
|
|
4824
4930
|
}
|
|
4825
4931
|
/**
|
|
4826
4932
|
* @public
|
|
@@ -4899,7 +5005,7 @@ export interface CreateIdMappingTableInput {
|
|
|
4899
5005
|
* <p>A description of the ID mapping table.</p>
|
|
4900
5006
|
* @public
|
|
4901
5007
|
*/
|
|
4902
|
-
description?: string;
|
|
5008
|
+
description?: string | undefined;
|
|
4903
5009
|
/**
|
|
4904
5010
|
* <p>The input reference configuration needed to create the ID mapping table.</p>
|
|
4905
5011
|
* @public
|
|
@@ -4912,12 +5018,12 @@ export interface CreateIdMappingTableInput {
|
|
|
4912
5018
|
* to this resource.</p>
|
|
4913
5019
|
* @public
|
|
4914
5020
|
*/
|
|
4915
|
-
tags?: Record<string, string
|
|
5021
|
+
tags?: Record<string, string> | undefined;
|
|
4916
5022
|
/**
|
|
4917
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>
|
|
4918
5024
|
* @public
|
|
4919
5025
|
*/
|
|
4920
|
-
kmsKeyArn?: string;
|
|
5026
|
+
kmsKeyArn?: string | undefined;
|
|
4921
5027
|
}
|
|
4922
5028
|
/**
|
|
4923
5029
|
* <p>The input reference properties for the ID mapping table.</p>
|
|
@@ -4974,7 +5080,7 @@ export interface IdMappingTable {
|
|
|
4974
5080
|
* <p>The description of the ID mapping table.</p>
|
|
4975
5081
|
* @public
|
|
4976
5082
|
*/
|
|
4977
|
-
description?: string;
|
|
5083
|
+
description?: string | undefined;
|
|
4978
5084
|
/**
|
|
4979
5085
|
* <p>The name of the ID mapping table.</p>
|
|
4980
5086
|
* @public
|
|
@@ -4999,7 +5105,7 @@ export interface IdMappingTable {
|
|
|
4999
5105
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services KMS key.</p>
|
|
5000
5106
|
* @public
|
|
5001
5107
|
*/
|
|
5002
|
-
kmsKeyArn?: string;
|
|
5108
|
+
kmsKeyArn?: string | undefined;
|
|
5003
5109
|
}
|
|
5004
5110
|
/**
|
|
5005
5111
|
* @public
|
|
@@ -5069,12 +5175,12 @@ export interface ListIdMappingTablesInput {
|
|
|
5069
5175
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
5070
5176
|
* @public
|
|
5071
5177
|
*/
|
|
5072
|
-
nextToken?: string;
|
|
5178
|
+
nextToken?: string | undefined;
|
|
5073
5179
|
/**
|
|
5074
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>
|
|
5075
5181
|
* @public
|
|
5076
5182
|
*/
|
|
5077
|
-
maxResults?: number;
|
|
5183
|
+
maxResults?: number | undefined;
|
|
5078
5184
|
}
|
|
5079
5185
|
/**
|
|
5080
5186
|
* <p>Detailed information about the ID mapping table.</p>
|
|
@@ -5125,7 +5231,7 @@ export interface IdMappingTableSummary {
|
|
|
5125
5231
|
* <p>The description of this ID mapping table.</p>
|
|
5126
5232
|
* @public
|
|
5127
5233
|
*/
|
|
5128
|
-
description?: string;
|
|
5234
|
+
description?: string | undefined;
|
|
5129
5235
|
/**
|
|
5130
5236
|
* <p>The input reference configuration for the ID mapping table.</p>
|
|
5131
5237
|
* @public
|
|
@@ -5150,7 +5256,7 @@ export interface ListIdMappingTablesOutput {
|
|
|
5150
5256
|
* <p>The token value provided to access the next page of results.</p>
|
|
5151
5257
|
* @public
|
|
5152
5258
|
*/
|
|
5153
|
-
nextToken?: string;
|
|
5259
|
+
nextToken?: string | undefined;
|
|
5154
5260
|
}
|
|
5155
5261
|
/**
|
|
5156
5262
|
* @public
|
|
@@ -5195,12 +5301,12 @@ export interface UpdateIdMappingTableInput {
|
|
|
5195
5301
|
* <p>A new description for the ID mapping table.</p>
|
|
5196
5302
|
* @public
|
|
5197
5303
|
*/
|
|
5198
|
-
description?: string;
|
|
5304
|
+
description?: string | undefined;
|
|
5199
5305
|
/**
|
|
5200
5306
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services KMS key.</p>
|
|
5201
5307
|
* @public
|
|
5202
5308
|
*/
|
|
5203
|
-
kmsKeyArn?: string;
|
|
5309
|
+
kmsKeyArn?: string | undefined;
|
|
5204
5310
|
}
|
|
5205
5311
|
/**
|
|
5206
5312
|
* @public
|
|
@@ -5233,7 +5339,7 @@ export interface CreateIdNamespaceAssociationInput {
|
|
|
5233
5339
|
* to this resource.</p>
|
|
5234
5340
|
* @public
|
|
5235
5341
|
*/
|
|
5236
|
-
tags?: Record<string, string
|
|
5342
|
+
tags?: Record<string, string> | undefined;
|
|
5237
5343
|
/**
|
|
5238
5344
|
* <p>The name for the ID namespace association.</p>
|
|
5239
5345
|
* @public
|
|
@@ -5243,12 +5349,12 @@ export interface CreateIdNamespaceAssociationInput {
|
|
|
5243
5349
|
* <p>The description of the ID namespace association.</p>
|
|
5244
5350
|
* @public
|
|
5245
5351
|
*/
|
|
5246
|
-
description?: string;
|
|
5352
|
+
description?: string | undefined;
|
|
5247
5353
|
/**
|
|
5248
5354
|
* <p>The configuration settings for the ID mapping table.</p>
|
|
5249
5355
|
* @public
|
|
5250
5356
|
*/
|
|
5251
|
-
idMappingConfig?: IdMappingConfig;
|
|
5357
|
+
idMappingConfig?: IdMappingConfig | undefined;
|
|
5252
5358
|
}
|
|
5253
5359
|
/**
|
|
5254
5360
|
* <p>Provides information to create the ID namespace association.</p>
|
|
@@ -5294,7 +5400,7 @@ export interface IdNamespaceAssociation {
|
|
|
5294
5400
|
* <p>The description of the ID namespace association.</p>
|
|
5295
5401
|
* @public
|
|
5296
5402
|
*/
|
|
5297
|
-
description?: string;
|
|
5403
|
+
description?: string | undefined;
|
|
5298
5404
|
/**
|
|
5299
5405
|
* <p>The time at which the ID namespace association was created.</p>
|
|
5300
5406
|
* @public
|
|
@@ -5319,7 +5425,7 @@ export interface IdNamespaceAssociation {
|
|
|
5319
5425
|
* <p>The configuration settings for the ID mapping table.</p>
|
|
5320
5426
|
* @public
|
|
5321
5427
|
*/
|
|
5322
|
-
idMappingConfig?: IdMappingConfig;
|
|
5428
|
+
idMappingConfig?: IdMappingConfig | undefined;
|
|
5323
5429
|
}
|
|
5324
5430
|
/**
|
|
5325
5431
|
* @public
|
|
@@ -5389,12 +5495,12 @@ export interface ListIdNamespaceAssociationsInput {
|
|
|
5389
5495
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
5390
5496
|
* @public
|
|
5391
5497
|
*/
|
|
5392
|
-
nextToken?: string;
|
|
5498
|
+
nextToken?: string | undefined;
|
|
5393
5499
|
/**
|
|
5394
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>
|
|
5395
5501
|
* @public
|
|
5396
5502
|
*/
|
|
5397
|
-
maxResults?: number;
|
|
5503
|
+
maxResults?: number | undefined;
|
|
5398
5504
|
}
|
|
5399
5505
|
/**
|
|
5400
5506
|
* <p>Detailed information about the ID namespace association.</p>
|
|
@@ -5455,7 +5561,7 @@ export interface IdNamespaceAssociationSummary {
|
|
|
5455
5561
|
* <p>The description of the ID namespace association.</p>
|
|
5456
5562
|
* @public
|
|
5457
5563
|
*/
|
|
5458
|
-
description?: string;
|
|
5564
|
+
description?: string | undefined;
|
|
5459
5565
|
/**
|
|
5460
5566
|
* <p>The input reference properties for this ID namespace association.</p>
|
|
5461
5567
|
* @public
|
|
@@ -5470,7 +5576,7 @@ export interface ListIdNamespaceAssociationsOutput {
|
|
|
5470
5576
|
* <p>The token value provided to access the next page of results.</p>
|
|
5471
5577
|
* @public
|
|
5472
5578
|
*/
|
|
5473
|
-
nextToken?: string;
|
|
5579
|
+
nextToken?: string | undefined;
|
|
5474
5580
|
/**
|
|
5475
5581
|
* <p>The summary information of the ID namespace associations that you requested.</p>
|
|
5476
5582
|
* @public
|
|
@@ -5495,17 +5601,17 @@ export interface UpdateIdNamespaceAssociationInput {
|
|
|
5495
5601
|
* <p>A new name for the ID namespace association.</p>
|
|
5496
5602
|
* @public
|
|
5497
5603
|
*/
|
|
5498
|
-
name?: string;
|
|
5604
|
+
name?: string | undefined;
|
|
5499
5605
|
/**
|
|
5500
5606
|
* <p>A new description for the ID namespace association.</p>
|
|
5501
5607
|
* @public
|
|
5502
5608
|
*/
|
|
5503
|
-
description?: string;
|
|
5609
|
+
description?: string | undefined;
|
|
5504
5610
|
/**
|
|
5505
5611
|
* <p>The configuration settings for the ID mapping table.</p>
|
|
5506
5612
|
* @public
|
|
5507
5613
|
*/
|
|
5508
|
-
idMappingConfig?: IdMappingConfig;
|
|
5614
|
+
idMappingConfig?: IdMappingConfig | undefined;
|
|
5509
5615
|
}
|
|
5510
5616
|
/**
|
|
5511
5617
|
* @public
|
|
@@ -5569,14 +5675,14 @@ export interface ProtectedQueryS3OutputConfiguration {
|
|
|
5569
5675
|
* <p>The S3 prefix to unload the protected query results.</p>
|
|
5570
5676
|
* @public
|
|
5571
5677
|
*/
|
|
5572
|
-
keyPrefix?: string;
|
|
5678
|
+
keyPrefix?: string | undefined;
|
|
5573
5679
|
/**
|
|
5574
5680
|
* <p>Indicates whether files should be output as a single file (<code>TRUE</code>) or output
|
|
5575
5681
|
* as multiple files (<code>FALSE</code>). This parameter is only supported for analyses with
|
|
5576
5682
|
* the Spark analytics engine.</p>
|
|
5577
5683
|
* @public
|
|
5578
5684
|
*/
|
|
5579
|
-
singleFileOutput?: boolean;
|
|
5685
|
+
singleFileOutput?: boolean | undefined;
|
|
5580
5686
|
}
|
|
5581
5687
|
/**
|
|
5582
5688
|
* <p>Contains configurations for protected query results.</p>
|
|
@@ -5623,7 +5729,78 @@ export interface MembershipProtectedQueryResultConfiguration {
|
|
|
5623
5729
|
* query results to the result location, given by the member who can receive results.</p>
|
|
5624
5730
|
* @public
|
|
5625
5731
|
*/
|
|
5626
|
-
roleArn?: string;
|
|
5732
|
+
roleArn?: string | undefined;
|
|
5733
|
+
}
|
|
5734
|
+
/**
|
|
5735
|
+
* <p>An object representing the collaboration member's model inference payment responsibilities set by the
|
|
5736
|
+
* collaboration creator.</p>
|
|
5737
|
+
* @public
|
|
5738
|
+
*/
|
|
5739
|
+
export interface MembershipModelInferencePaymentConfig {
|
|
5740
|
+
/**
|
|
5741
|
+
* <p>Indicates whether the collaboration member has accepted to pay for model inference costs
|
|
5742
|
+
* (<code>TRUE</code>) or has not accepted to pay for model inference costs
|
|
5743
|
+
* (<code>FALSE</code>).</p>
|
|
5744
|
+
* <p>If the collaboration creator has not specified anyone to pay for model inference costs,
|
|
5745
|
+
* then the member who can query is the default payer. </p>
|
|
5746
|
+
* <p>An error message is returned for the following reasons: </p>
|
|
5747
|
+
* <ul>
|
|
5748
|
+
* <li>
|
|
5749
|
+
* <p>If you set the value to <code>FALSE</code> but you are responsible to pay for
|
|
5750
|
+
* model inference costs. </p>
|
|
5751
|
+
* </li>
|
|
5752
|
+
* <li>
|
|
5753
|
+
* <p>If you set the value to <code>TRUE</code> but you are not responsible to pay for
|
|
5754
|
+
* model inference costs. </p>
|
|
5755
|
+
* </li>
|
|
5756
|
+
* </ul>
|
|
5757
|
+
* @public
|
|
5758
|
+
*/
|
|
5759
|
+
isResponsible: boolean | undefined;
|
|
5760
|
+
}
|
|
5761
|
+
/**
|
|
5762
|
+
* <p>An object representing the collaboration member's model training payment responsibilities set by the
|
|
5763
|
+
* collaboration creator.</p>
|
|
5764
|
+
* @public
|
|
5765
|
+
*/
|
|
5766
|
+
export interface MembershipModelTrainingPaymentConfig {
|
|
5767
|
+
/**
|
|
5768
|
+
* <p>Indicates whether the collaboration member has accepted to pay for model training costs
|
|
5769
|
+
* (<code>TRUE</code>) or has not accepted to pay for model training costs
|
|
5770
|
+
* (<code>FALSE</code>).</p>
|
|
5771
|
+
* <p>If the collaboration creator has not specified anyone to pay for model training costs,
|
|
5772
|
+
* then the member who can query is the default payer. </p>
|
|
5773
|
+
* <p>An error message is returned for the following reasons: </p>
|
|
5774
|
+
* <ul>
|
|
5775
|
+
* <li>
|
|
5776
|
+
* <p>If you set the value to <code>FALSE</code> but you are responsible to pay for
|
|
5777
|
+
* model training costs. </p>
|
|
5778
|
+
* </li>
|
|
5779
|
+
* <li>
|
|
5780
|
+
* <p>If you set the value to <code>TRUE</code> but you are not responsible to pay for
|
|
5781
|
+
* model training costs. </p>
|
|
5782
|
+
* </li>
|
|
5783
|
+
* </ul>
|
|
5784
|
+
* @public
|
|
5785
|
+
*/
|
|
5786
|
+
isResponsible: boolean | undefined;
|
|
5787
|
+
}
|
|
5788
|
+
/**
|
|
5789
|
+
* <p>An object representing the collaboration member's machine learning payment responsibilities set by the
|
|
5790
|
+
* collaboration creator.</p>
|
|
5791
|
+
* @public
|
|
5792
|
+
*/
|
|
5793
|
+
export interface MembershipMLPaymentConfig {
|
|
5794
|
+
/**
|
|
5795
|
+
* <p>The payment responsibilities accepted by the member for model training.</p>
|
|
5796
|
+
* @public
|
|
5797
|
+
*/
|
|
5798
|
+
modelTraining?: MembershipModelTrainingPaymentConfig | undefined;
|
|
5799
|
+
/**
|
|
5800
|
+
* <p>The payment responsibilities accepted by the member for model inference.</p>
|
|
5801
|
+
* @public
|
|
5802
|
+
*/
|
|
5803
|
+
modelInference?: MembershipModelInferencePaymentConfig | undefined;
|
|
5627
5804
|
}
|
|
5628
5805
|
/**
|
|
5629
5806
|
* <p>An object representing the payment responsibilities accepted by the collaboration member
|
|
@@ -5664,6 +5841,12 @@ export interface MembershipPaymentConfiguration {
|
|
|
5664
5841
|
* @public
|
|
5665
5842
|
*/
|
|
5666
5843
|
queryCompute: MembershipQueryComputePaymentConfig | undefined;
|
|
5844
|
+
/**
|
|
5845
|
+
* <p>The payment responsibilities accepted by the collaboration member for machine learning
|
|
5846
|
+
* costs.</p>
|
|
5847
|
+
* @public
|
|
5848
|
+
*/
|
|
5849
|
+
machineLearning?: MembershipMLPaymentConfig | undefined;
|
|
5667
5850
|
}
|
|
5668
5851
|
/**
|
|
5669
5852
|
* @public
|
|
@@ -5699,13 +5882,13 @@ export interface CreateMembershipInput {
|
|
|
5699
5882
|
* to this resource.</p>
|
|
5700
5883
|
* @public
|
|
5701
5884
|
*/
|
|
5702
|
-
tags?: Record<string, string
|
|
5885
|
+
tags?: Record<string, string> | undefined;
|
|
5703
5886
|
/**
|
|
5704
5887
|
* <p>The default protected query result configuration as specified by the member who can
|
|
5705
5888
|
* receive results.</p>
|
|
5706
5889
|
* @public
|
|
5707
5890
|
*/
|
|
5708
|
-
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
|
|
5891
|
+
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration | undefined;
|
|
5709
5892
|
/**
|
|
5710
5893
|
* <p>The payment responsibilities accepted by the collaboration member.</p>
|
|
5711
5894
|
* <p>Not required if the collaboration member has the member ability to run queries. </p>
|
|
@@ -5713,7 +5896,7 @@ export interface CreateMembershipInput {
|
|
|
5713
5896
|
* is configured as a payer by the collaboration creator. </p>
|
|
5714
5897
|
* @public
|
|
5715
5898
|
*/
|
|
5716
|
-
paymentConfiguration?: MembershipPaymentConfiguration;
|
|
5899
|
+
paymentConfiguration?: MembershipPaymentConfiguration | undefined;
|
|
5717
5900
|
}
|
|
5718
5901
|
/**
|
|
5719
5902
|
* @public
|
|
@@ -5789,6 +5972,12 @@ export interface Membership {
|
|
|
5789
5972
|
* @public
|
|
5790
5973
|
*/
|
|
5791
5974
|
memberAbilities: MemberAbility[] | undefined;
|
|
5975
|
+
/**
|
|
5976
|
+
* <p>Specifies the ML member abilities that are granted to a collaboration member.</p>
|
|
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
|
+
* @public
|
|
5979
|
+
*/
|
|
5980
|
+
mlMemberAbilities?: MLMemberAbilities | undefined;
|
|
5792
5981
|
/**
|
|
5793
5982
|
* <p>An indicator as to whether query logging has been enabled or disabled for the
|
|
5794
5983
|
* membership.</p>
|
|
@@ -5800,7 +5989,7 @@ export interface Membership {
|
|
|
5800
5989
|
* receive results.</p>
|
|
5801
5990
|
* @public
|
|
5802
5991
|
*/
|
|
5803
|
-
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
|
|
5992
|
+
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration | undefined;
|
|
5804
5993
|
/**
|
|
5805
5994
|
* <p>The payment responsibilities accepted by the collaboration member.</p>
|
|
5806
5995
|
* @public
|
|
@@ -5889,12 +6078,12 @@ export interface WorkerComputeConfiguration {
|
|
|
5889
6078
|
* <p> The worker compute configuration type.</p>
|
|
5890
6079
|
* @public
|
|
5891
6080
|
*/
|
|
5892
|
-
type?: WorkerComputeType;
|
|
6081
|
+
type?: WorkerComputeType | undefined;
|
|
5893
6082
|
/**
|
|
5894
6083
|
* <p> The number of workers.</p>
|
|
5895
6084
|
* @public
|
|
5896
6085
|
*/
|
|
5897
|
-
number?: number;
|
|
6086
|
+
number?: number | undefined;
|
|
5898
6087
|
}
|
|
5899
6088
|
/**
|
|
5900
6089
|
* <p> The configuration of the compute resources for an analysis with the Spark analytics engine.</p>
|
|
@@ -5950,12 +6139,12 @@ export interface DifferentialPrivacySensitivityParameters {
|
|
|
5950
6139
|
* <p>The lower bound of the aggregation expression.</p>
|
|
5951
6140
|
* @public
|
|
5952
6141
|
*/
|
|
5953
|
-
minColumnValue?: number;
|
|
6142
|
+
minColumnValue?: number | undefined;
|
|
5954
6143
|
/**
|
|
5955
6144
|
* <p>The upper bound of the aggregation expression.</p>
|
|
5956
6145
|
* @public
|
|
5957
6146
|
*/
|
|
5958
|
-
maxColumnValue?: number;
|
|
6147
|
+
maxColumnValue?: number | undefined;
|
|
5959
6148
|
}
|
|
5960
6149
|
/**
|
|
5961
6150
|
* <p>An array that contains the sensitivity parameters.</p>
|
|
@@ -6133,18 +6322,18 @@ export interface ProtectedQuerySQLParameters {
|
|
|
6133
6322
|
* <p>The query string to be submitted.</p>
|
|
6134
6323
|
* @public
|
|
6135
6324
|
*/
|
|
6136
|
-
queryString?: string;
|
|
6325
|
+
queryString?: string | undefined;
|
|
6137
6326
|
/**
|
|
6138
6327
|
* <p>The Amazon Resource Name (ARN) associated with the analysis template within a
|
|
6139
6328
|
* collaboration.</p>
|
|
6140
6329
|
* @public
|
|
6141
6330
|
*/
|
|
6142
|
-
analysisTemplateArn?: string;
|
|
6331
|
+
analysisTemplateArn?: string | undefined;
|
|
6143
6332
|
/**
|
|
6144
6333
|
* <p>The protected query SQL parameters.</p>
|
|
6145
6334
|
* @public
|
|
6146
6335
|
*/
|
|
6147
|
-
parameters?: Record<string, string
|
|
6336
|
+
parameters?: Record<string, string> | undefined;
|
|
6148
6337
|
}
|
|
6149
6338
|
/**
|
|
6150
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>
|
|
@@ -6166,12 +6355,12 @@ export interface ProtectedQueryStatistics {
|
|
|
6166
6355
|
* <p>The duration of the protected query, from creation until query completion.</p>
|
|
6167
6356
|
* @public
|
|
6168
6357
|
*/
|
|
6169
|
-
totalDurationInMillis?: number;
|
|
6358
|
+
totalDurationInMillis?: number | undefined;
|
|
6170
6359
|
/**
|
|
6171
6360
|
* <p> The billed resource utilization.</p>
|
|
6172
6361
|
* @public
|
|
6173
6362
|
*/
|
|
6174
|
-
billedResourceUtilization?: BilledResourceUtilization;
|
|
6363
|
+
billedResourceUtilization?: BilledResourceUtilization | undefined;
|
|
6175
6364
|
}
|
|
6176
6365
|
/**
|
|
6177
6366
|
* @public
|
|
@@ -6219,7 +6408,7 @@ export interface ProtectedQuery {
|
|
|
6219
6408
|
* <p>The protected query SQL parameters.</p>
|
|
6220
6409
|
* @public
|
|
6221
6410
|
*/
|
|
6222
|
-
sqlParameters?: ProtectedQuerySQLParameters;
|
|
6411
|
+
sqlParameters?: ProtectedQuerySQLParameters | undefined;
|
|
6223
6412
|
/**
|
|
6224
6413
|
* <p>The status of the query.</p>
|
|
6225
6414
|
* @public
|
|
@@ -6229,32 +6418,32 @@ export interface ProtectedQuery {
|
|
|
6229
6418
|
* <p>Contains any details needed to write the query results.</p>
|
|
6230
6419
|
* @public
|
|
6231
6420
|
*/
|
|
6232
|
-
resultConfiguration?: ProtectedQueryResultConfiguration;
|
|
6421
|
+
resultConfiguration?: ProtectedQueryResultConfiguration | undefined;
|
|
6233
6422
|
/**
|
|
6234
6423
|
* <p>Statistics about protected query execution.</p>
|
|
6235
6424
|
* @public
|
|
6236
6425
|
*/
|
|
6237
|
-
statistics?: ProtectedQueryStatistics;
|
|
6426
|
+
statistics?: ProtectedQueryStatistics | undefined;
|
|
6238
6427
|
/**
|
|
6239
6428
|
* <p>The result of the protected query.</p>
|
|
6240
6429
|
* @public
|
|
6241
6430
|
*/
|
|
6242
|
-
result?: ProtectedQueryResult;
|
|
6431
|
+
result?: ProtectedQueryResult | undefined;
|
|
6243
6432
|
/**
|
|
6244
6433
|
* <p>An error thrown by the protected query.</p>
|
|
6245
6434
|
* @public
|
|
6246
6435
|
*/
|
|
6247
|
-
error?: ProtectedQueryError;
|
|
6436
|
+
error?: ProtectedQueryError | undefined;
|
|
6248
6437
|
/**
|
|
6249
6438
|
* <p>The sensitivity parameters of the differential privacy results of the protected query.</p>
|
|
6250
6439
|
* @public
|
|
6251
6440
|
*/
|
|
6252
|
-
differentialPrivacy?: DifferentialPrivacyParameters;
|
|
6441
|
+
differentialPrivacy?: DifferentialPrivacyParameters | undefined;
|
|
6253
6442
|
/**
|
|
6254
6443
|
* <p> The compute configuration for the protected query.</p>
|
|
6255
6444
|
* @public
|
|
6256
6445
|
*/
|
|
6257
|
-
computeConfiguration?: ComputeConfiguration;
|
|
6446
|
+
computeConfiguration?: ComputeConfiguration | undefined;
|
|
6258
6447
|
}
|
|
6259
6448
|
/**
|
|
6260
6449
|
* @public
|
|
@@ -6274,18 +6463,18 @@ export interface ListMembershipsInput {
|
|
|
6274
6463
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
6275
6464
|
* @public
|
|
6276
6465
|
*/
|
|
6277
|
-
nextToken?: string;
|
|
6466
|
+
nextToken?: string | undefined;
|
|
6278
6467
|
/**
|
|
6279
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
|
|
6280
6469
|
* `maxResults` value has not been met.</p>
|
|
6281
6470
|
* @public
|
|
6282
6471
|
*/
|
|
6283
|
-
maxResults?: number;
|
|
6472
|
+
maxResults?: number | undefined;
|
|
6284
6473
|
/**
|
|
6285
6474
|
* <p>A filter which will return only memberships in the specified status.</p>
|
|
6286
6475
|
* @public
|
|
6287
6476
|
*/
|
|
6288
|
-
status?: MembershipStatus;
|
|
6477
|
+
status?: MembershipStatus | undefined;
|
|
6289
6478
|
}
|
|
6290
6479
|
/**
|
|
6291
6480
|
* <p>The membership object listed by the request.</p>
|
|
@@ -6348,6 +6537,12 @@ export interface MembershipSummary {
|
|
|
6348
6537
|
* @public
|
|
6349
6538
|
*/
|
|
6350
6539
|
memberAbilities: MemberAbility[] | undefined;
|
|
6540
|
+
/**
|
|
6541
|
+
* <p>Provides a summary of the ML abilities for the collaboration member.</p>
|
|
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
|
+
* @public
|
|
6544
|
+
*/
|
|
6545
|
+
mlMemberAbilities?: MLMemberAbilities | undefined;
|
|
6351
6546
|
/**
|
|
6352
6547
|
* <p>The payment responsibilities accepted by the collaboration member.</p>
|
|
6353
6548
|
* @public
|
|
@@ -6362,7 +6557,7 @@ export interface ListMembershipsOutput {
|
|
|
6362
6557
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
6363
6558
|
* @public
|
|
6364
6559
|
*/
|
|
6365
|
-
nextToken?: string;
|
|
6560
|
+
nextToken?: string | undefined;
|
|
6366
6561
|
/**
|
|
6367
6562
|
* <p>The list of memberships returned from the ListMemberships operation.</p>
|
|
6368
6563
|
* @public
|
|
@@ -6387,13 +6582,13 @@ export interface ListPrivacyBudgetsInput {
|
|
|
6387
6582
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
6388
6583
|
* @public
|
|
6389
6584
|
*/
|
|
6390
|
-
nextToken?: string;
|
|
6585
|
+
nextToken?: string | undefined;
|
|
6391
6586
|
/**
|
|
6392
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
|
|
6393
6588
|
* `maxResults` value has not been met.</p>
|
|
6394
6589
|
* @public
|
|
6395
6590
|
*/
|
|
6396
|
-
maxResults?: number;
|
|
6591
|
+
maxResults?: number | undefined;
|
|
6397
6592
|
}
|
|
6398
6593
|
/**
|
|
6399
6594
|
* <p>An array that summaries the specified privacy budget. This summary includes collaboration information, creation information, membership information, and privacy budget information.</p>
|
|
@@ -6469,7 +6664,7 @@ export interface ListPrivacyBudgetsOutput {
|
|
|
6469
6664
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
6470
6665
|
* @public
|
|
6471
6666
|
*/
|
|
6472
|
-
nextToken?: string;
|
|
6667
|
+
nextToken?: string | undefined;
|
|
6473
6668
|
}
|
|
6474
6669
|
/**
|
|
6475
6670
|
* @public
|
|
@@ -6484,18 +6679,18 @@ export interface ListProtectedQueriesInput {
|
|
|
6484
6679
|
* <p>A filter on the status of the protected query.</p>
|
|
6485
6680
|
* @public
|
|
6486
6681
|
*/
|
|
6487
|
-
status?: ProtectedQueryStatus;
|
|
6682
|
+
status?: ProtectedQueryStatus | undefined;
|
|
6488
6683
|
/**
|
|
6489
6684
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
6490
6685
|
* @public
|
|
6491
6686
|
*/
|
|
6492
|
-
nextToken?: string;
|
|
6687
|
+
nextToken?: string | undefined;
|
|
6493
6688
|
/**
|
|
6494
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
|
|
6495
6690
|
* `maxResults` value has not been met. </p>
|
|
6496
6691
|
* @public
|
|
6497
6692
|
*/
|
|
6498
|
-
maxResults?: number;
|
|
6693
|
+
maxResults?: number | undefined;
|
|
6499
6694
|
}
|
|
6500
6695
|
/**
|
|
6501
6696
|
* <p> The direct analysis configuration details.</p>
|
|
@@ -6506,7 +6701,7 @@ export interface DirectAnalysisConfigurationDetails {
|
|
|
6506
6701
|
* <p> The account IDs for the member who received the results of a protected query.</p>
|
|
6507
6702
|
* @public
|
|
6508
6703
|
*/
|
|
6509
|
-
receiverAccountIds?: string[];
|
|
6704
|
+
receiverAccountIds?: string[] | undefined;
|
|
6510
6705
|
}
|
|
6511
6706
|
/**
|
|
6512
6707
|
* <p> The configuration details.</p>
|
|
@@ -6552,7 +6747,7 @@ export interface ReceiverConfiguration {
|
|
|
6552
6747
|
* <p> The configuration details of the receiver configuration.</p>
|
|
6553
6748
|
* @public
|
|
6554
6749
|
*/
|
|
6555
|
-
configurationDetails?: ConfigurationDetails;
|
|
6750
|
+
configurationDetails?: ConfigurationDetails | undefined;
|
|
6556
6751
|
}
|
|
6557
6752
|
/**
|
|
6558
6753
|
* <p>The protected query summary for the objects listed by the request.</p>
|
|
@@ -6598,7 +6793,7 @@ export interface ListProtectedQueriesOutput {
|
|
|
6598
6793
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
6599
6794
|
* @public
|
|
6600
6795
|
*/
|
|
6601
|
-
nextToken?: string;
|
|
6796
|
+
nextToken?: string | undefined;
|
|
6602
6797
|
/**
|
|
6603
6798
|
* <p>A list of protected queries.</p>
|
|
6604
6799
|
* @public
|
|
@@ -6621,160 +6816,6 @@ export interface DifferentialPrivacyPreviewParametersInput {
|
|
|
6621
6816
|
*/
|
|
6622
6817
|
usersNoisePerQuery: number | undefined;
|
|
6623
6818
|
}
|
|
6624
|
-
/**
|
|
6625
|
-
* <p>Specifies the updated epsilon and noise parameters to preview. The preview allows you to see how the maximum number of each type of aggregation function would change with the new parameters.</p>
|
|
6626
|
-
* @public
|
|
6627
|
-
*/
|
|
6628
|
-
export type PreviewPrivacyImpactParametersInput = PreviewPrivacyImpactParametersInput.DifferentialPrivacyMember | PreviewPrivacyImpactParametersInput.$UnknownMember;
|
|
6629
|
-
/**
|
|
6630
|
-
* @public
|
|
6631
|
-
*/
|
|
6632
|
-
export declare namespace PreviewPrivacyImpactParametersInput {
|
|
6633
|
-
/**
|
|
6634
|
-
* <p>An array that specifies the epsilon and noise parameters.</p>
|
|
6635
|
-
* @public
|
|
6636
|
-
*/
|
|
6637
|
-
interface DifferentialPrivacyMember {
|
|
6638
|
-
differentialPrivacy: DifferentialPrivacyPreviewParametersInput;
|
|
6639
|
-
$unknown?: never;
|
|
6640
|
-
}
|
|
6641
|
-
/**
|
|
6642
|
-
* @public
|
|
6643
|
-
*/
|
|
6644
|
-
interface $UnknownMember {
|
|
6645
|
-
differentialPrivacy?: never;
|
|
6646
|
-
$unknown: [string, any];
|
|
6647
|
-
}
|
|
6648
|
-
interface Visitor<T> {
|
|
6649
|
-
differentialPrivacy: (value: DifferentialPrivacyPreviewParametersInput) => T;
|
|
6650
|
-
_: (name: string, value: any) => T;
|
|
6651
|
-
}
|
|
6652
|
-
const visit: <T>(value: PreviewPrivacyImpactParametersInput, visitor: Visitor<T>) => T;
|
|
6653
|
-
}
|
|
6654
|
-
/**
|
|
6655
|
-
* @public
|
|
6656
|
-
*/
|
|
6657
|
-
export interface PreviewPrivacyImpactInput {
|
|
6658
|
-
/**
|
|
6659
|
-
* <p>A unique identifier for one of your memberships for a collaboration. Accepts a membership ID.</p>
|
|
6660
|
-
* @public
|
|
6661
|
-
*/
|
|
6662
|
-
membershipIdentifier: string | undefined;
|
|
6663
|
-
/**
|
|
6664
|
-
* <p>Specifies the desired epsilon and noise parameters to preview.</p>
|
|
6665
|
-
* @public
|
|
6666
|
-
*/
|
|
6667
|
-
parameters: PreviewPrivacyImpactParametersInput | undefined;
|
|
6668
|
-
}
|
|
6669
|
-
/**
|
|
6670
|
-
* <p>Provides an estimate of the number of aggregation functions that the member who can query can run given the epsilon and noise parameters.</p>
|
|
6671
|
-
* @public
|
|
6672
|
-
*/
|
|
6673
|
-
export interface DifferentialPrivacyPreviewAggregation {
|
|
6674
|
-
/**
|
|
6675
|
-
* <p>The type of aggregation function.</p>
|
|
6676
|
-
* @public
|
|
6677
|
-
*/
|
|
6678
|
-
type: DifferentialPrivacyAggregationType | undefined;
|
|
6679
|
-
/**
|
|
6680
|
-
* <p>The maximum number of aggregations that the member who can query can run given the epsilon and noise parameters.</p>
|
|
6681
|
-
* @public
|
|
6682
|
-
*/
|
|
6683
|
-
maxCount: number | undefined;
|
|
6684
|
-
}
|
|
6685
|
-
/**
|
|
6686
|
-
* <p>Information about the number of aggregation functions that the member who can query can run given the epsilon and noise parameters.</p>
|
|
6687
|
-
* @public
|
|
6688
|
-
*/
|
|
6689
|
-
export interface DifferentialPrivacyPrivacyImpact {
|
|
6690
|
-
/**
|
|
6691
|
-
* <p>The number of aggregation functions that you can perform.</p>
|
|
6692
|
-
* @public
|
|
6693
|
-
*/
|
|
6694
|
-
aggregations: DifferentialPrivacyPreviewAggregation[] | undefined;
|
|
6695
|
-
}
|
|
6696
|
-
/**
|
|
6697
|
-
* <p>Provides an estimate of the number of aggregation functions that the member who can query can run given the epsilon and noise parameters.</p>
|
|
6698
|
-
* @public
|
|
6699
|
-
*/
|
|
6700
|
-
export type PrivacyImpact = PrivacyImpact.DifferentialPrivacyMember | PrivacyImpact.$UnknownMember;
|
|
6701
|
-
/**
|
|
6702
|
-
* @public
|
|
6703
|
-
*/
|
|
6704
|
-
export declare namespace PrivacyImpact {
|
|
6705
|
-
/**
|
|
6706
|
-
* <p>An object that lists the number and type of aggregation functions you can perform.</p>
|
|
6707
|
-
* @public
|
|
6708
|
-
*/
|
|
6709
|
-
interface DifferentialPrivacyMember {
|
|
6710
|
-
differentialPrivacy: DifferentialPrivacyPrivacyImpact;
|
|
6711
|
-
$unknown?: never;
|
|
6712
|
-
}
|
|
6713
|
-
/**
|
|
6714
|
-
* @public
|
|
6715
|
-
*/
|
|
6716
|
-
interface $UnknownMember {
|
|
6717
|
-
differentialPrivacy?: never;
|
|
6718
|
-
$unknown: [string, any];
|
|
6719
|
-
}
|
|
6720
|
-
interface Visitor<T> {
|
|
6721
|
-
differentialPrivacy: (value: DifferentialPrivacyPrivacyImpact) => T;
|
|
6722
|
-
_: (name: string, value: any) => T;
|
|
6723
|
-
}
|
|
6724
|
-
const visit: <T>(value: PrivacyImpact, visitor: Visitor<T>) => T;
|
|
6725
|
-
}
|
|
6726
|
-
/**
|
|
6727
|
-
* @public
|
|
6728
|
-
*/
|
|
6729
|
-
export interface PreviewPrivacyImpactOutput {
|
|
6730
|
-
/**
|
|
6731
|
-
* <p>An estimate of the number of aggregation functions that the member who can query can run given the epsilon and noise parameters. This does not change the privacy budget.</p>
|
|
6732
|
-
* @public
|
|
6733
|
-
*/
|
|
6734
|
-
privacyImpact: PrivacyImpact | undefined;
|
|
6735
|
-
}
|
|
6736
|
-
/**
|
|
6737
|
-
* @public
|
|
6738
|
-
* @enum
|
|
6739
|
-
*/
|
|
6740
|
-
export declare const ProtectedQueryType: {
|
|
6741
|
-
readonly SQL: "SQL";
|
|
6742
|
-
};
|
|
6743
|
-
/**
|
|
6744
|
-
* @public
|
|
6745
|
-
*/
|
|
6746
|
-
export type ProtectedQueryType = (typeof ProtectedQueryType)[keyof typeof ProtectedQueryType];
|
|
6747
|
-
/**
|
|
6748
|
-
* @public
|
|
6749
|
-
*/
|
|
6750
|
-
export interface StartProtectedQueryInput {
|
|
6751
|
-
/**
|
|
6752
|
-
* <p>The type of the protected query to be started.</p>
|
|
6753
|
-
* @public
|
|
6754
|
-
*/
|
|
6755
|
-
type: ProtectedQueryType | undefined;
|
|
6756
|
-
/**
|
|
6757
|
-
* <p>A unique identifier for the membership to run this query against. Currently accepts a
|
|
6758
|
-
* membership ID.</p>
|
|
6759
|
-
* @public
|
|
6760
|
-
*/
|
|
6761
|
-
membershipIdentifier: string | undefined;
|
|
6762
|
-
/**
|
|
6763
|
-
* <p>The protected SQL query parameters.</p>
|
|
6764
|
-
* @public
|
|
6765
|
-
*/
|
|
6766
|
-
sqlParameters: ProtectedQuerySQLParameters | undefined;
|
|
6767
|
-
/**
|
|
6768
|
-
* <p>The details needed to write the query results.</p>
|
|
6769
|
-
* @public
|
|
6770
|
-
*/
|
|
6771
|
-
resultConfiguration?: ProtectedQueryResultConfiguration;
|
|
6772
|
-
/**
|
|
6773
|
-
* <p> The compute configuration for the protected query.</p>
|
|
6774
|
-
* @public
|
|
6775
|
-
*/
|
|
6776
|
-
computeConfiguration?: ComputeConfiguration;
|
|
6777
|
-
}
|
|
6778
6819
|
/**
|
|
6779
6820
|
* @internal
|
|
6780
6821
|
*/
|
|
@@ -6827,7 +6868,3 @@ export declare const ProtectedQueryFilterSensitiveLog: (obj: ProtectedQuery) =>
|
|
|
6827
6868
|
* @internal
|
|
6828
6869
|
*/
|
|
6829
6870
|
export declare const GetProtectedQueryOutputFilterSensitiveLog: (obj: GetProtectedQueryOutput) => any;
|
|
6830
|
-
/**
|
|
6831
|
-
* @internal
|
|
6832
|
-
*/
|
|
6833
|
-
export declare const StartProtectedQueryInputFilterSensitiveLog: (obj: StartProtectedQueryInput) => any;
|