@aws-sdk/client-cleanrooms 3.1109.0 → 3.1111.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.
Files changed (28) hide show
  1. package/dist-cjs/index.js +70 -23
  2. package/dist-es/models/enums.js +7 -0
  3. package/dist-es/schemas/schemas_0.js +57 -22
  4. package/dist-types/commands/BatchGetSchemaAnalysisRuleCommand.d.ts +36 -0
  5. package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +36 -0
  6. package/dist-types/commands/CreateIntermediateTableAnalysisRuleCommand.d.ts +40 -0
  7. package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +18 -0
  8. package/dist-types/commands/GetIntermediateTableAnalysisRuleCommand.d.ts +20 -0
  9. package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +36 -0
  10. package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +36 -0
  11. package/dist-types/commands/UpdateIntermediateTableAnalysisRuleCommand.d.ts +40 -0
  12. package/dist-types/models/enums.d.ts +23 -0
  13. package/dist-types/models/models_0.d.ts +96 -90
  14. package/dist-types/models/models_1.d.ts +89 -2
  15. package/dist-types/runtimeConfig.browser.d.ts +38 -38
  16. package/dist-types/runtimeConfig.d.ts +36 -36
  17. package/dist-types/runtimeConfig.native.d.ts +37 -37
  18. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  19. package/dist-types/schemas/schemas_0.d.ts +3 -0
  20. package/dist-types/ts3.4/models/enums.d.ts +11 -0
  21. package/dist-types/ts3.4/models/models_0.d.ts +23 -40
  22. package/dist-types/ts3.4/models/models_1.d.ts +40 -3
  23. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +54 -56
  24. package/dist-types/ts3.4/runtimeConfig.d.ts +57 -57
  25. package/dist-types/ts3.4/runtimeConfig.native.d.ts +58 -60
  26. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
  27. package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
  28. package/package.json +5 -5
@@ -1,5 +1,92 @@
1
- import type { AnalysisLogExportStatus, AnalysisType, DifferentialPrivacyAggregationType, IntermediateTableAnalysisRuleType, LogExportAnalysisType, MemberAbility, MembershipJobLogStatus, MembershipQueryLogStatus, MembershipStatus, PopulateIntermediateTableAnalysisType, PrivacyBudgetTemplateAutoRefresh, PrivacyBudgetType, ProtectedJobAnalysisType, ProtectedJobStatus, ProtectedJobType, ProtectedJobWorkerComputeType, ProtectedQueryStatus, ProtectedQueryType, ResultFormat, TargetProtectedJobStatus, TargetProtectedQueryStatus } from "./enums";
2
- import type { AccessBudgetsPrivacyTemplateParametersInput, AccessBudgetsPrivacyTemplateUpdateParameters, AnalysisLogExport, AnalysisLogExportResultConfiguration, AnalysisLogExportSummary, IntermediateTable, IntermediateTableAnalysisRule, IntermediateTableAnalysisRulePolicy, IntermediateTableComputeConfiguration, MLMemberAbilities, PrivacyBudget, PrivacyBudgetTemplateParametersOutput, WorkerComputeConfiguration, WorkerComputeConfigurationProperties } from "./models_0";
1
+ import type { AnalysisLogExportStatus, AnalysisType, DifferentialPrivacyAggregationType, IntermediateTableAnalysisRuleType, LogExportAnalysisType, MemberAbility, MembershipJobLogStatus, MembershipQueryLogStatus, MembershipStatus, PopulateIntermediateTableAnalysisType, PrivacyBudgetTemplateAutoRefresh, PrivacyBudgetType, ProtectedJobAnalysisType, ProtectedJobStatus, ProtectedJobType, ProtectedJobWorkerComputeType, ProtectedQueryStatus, ProtectedQueryType, ResultFormat, TargetProtectedJobStatus, TargetProtectedQueryStatus, WorkerComputeType } from "./enums";
2
+ import type { AccessBudgetsPrivacyTemplateParametersInput, AccessBudgetsPrivacyTemplateUpdateParameters, AnalysisLogExport, AnalysisLogExportResultConfiguration, AnalysisLogExportSummary, IntermediateTable, IntermediateTableAnalysisRule, IntermediateTableAnalysisRulePolicy, MLMemberAbilities, PrivacyBudget, PrivacyBudgetTemplateParametersOutput } from "./models_0";
3
+ /**
4
+ * <p>The configuration properties that define the compute environment settings for workers in Clean Rooms. These properties enable customization of the underlying compute environment to optimize performance for your specific workloads.</p>
5
+ * @public
6
+ */
7
+ export type WorkerComputeConfigurationProperties = WorkerComputeConfigurationProperties.SparkMember | WorkerComputeConfigurationProperties.$UnknownMember;
8
+ /**
9
+ * @public
10
+ */
11
+ export declare namespace WorkerComputeConfigurationProperties {
12
+ /**
13
+ * <p>The Spark configuration properties for SQL and PySpark workloads. This map contains key-value pairs that configure Apache Spark settings to optimize performance for your data processing jobs. You can specify up to 50 Spark properties, with each key being 1-200 characters and each value being 0-500 characters. These properties allow you to adjust compute capacity for large datasets and complex workloads.</p>
14
+ * @public
15
+ */
16
+ interface SparkMember {
17
+ spark: Record<string, string>;
18
+ $unknown?: never;
19
+ }
20
+ /**
21
+ * @public
22
+ */
23
+ interface $UnknownMember {
24
+ spark?: never;
25
+ $unknown: [string, any];
26
+ }
27
+ /**
28
+ * @deprecated unused in schema-serde mode.
29
+ *
30
+ */
31
+ interface Visitor<T> {
32
+ spark: (value: Record<string, string>) => T;
33
+ _: (name: string, value: any) => T;
34
+ }
35
+ }
36
+ /**
37
+ * <p> The configuration of the compute resources for workers running an analysis with the Clean Rooms SQL analytics engine.</p>
38
+ * @public
39
+ */
40
+ export interface WorkerComputeConfiguration {
41
+ /**
42
+ * <p> The worker compute configuration type.</p>
43
+ * @public
44
+ */
45
+ type?: WorkerComputeType | undefined;
46
+ /**
47
+ * <p> The number of workers.</p> <p>SQL queries support a minimum value of 2 and a maximum value of 400. </p> <p>PySpark jobs support a minimum value of 4 and a maximum value of 128.</p>
48
+ * @public
49
+ */
50
+ number?: number | undefined;
51
+ /**
52
+ * <p>The configuration properties for the worker compute environment. These properties allow you to customize the compute settings for your Clean Rooms workloads.</p>
53
+ * @public
54
+ */
55
+ properties?: WorkerComputeConfigurationProperties | undefined;
56
+ }
57
+ /**
58
+ * <p>Contains the compute configuration for an intermediate table population operation.</p>
59
+ * @public
60
+ */
61
+ export type IntermediateTableComputeConfiguration = IntermediateTableComputeConfiguration.QueryComputeConfigurationMember | IntermediateTableComputeConfiguration.$UnknownMember;
62
+ /**
63
+ * @public
64
+ */
65
+ export declare namespace IntermediateTableComputeConfiguration {
66
+ /**
67
+ * <p> The configuration of the compute resources for workers running an analysis with the Clean Rooms SQL analytics engine.</p>
68
+ * @public
69
+ */
70
+ interface QueryComputeConfigurationMember {
71
+ queryComputeConfiguration: WorkerComputeConfiguration;
72
+ $unknown?: never;
73
+ }
74
+ /**
75
+ * @public
76
+ */
77
+ interface $UnknownMember {
78
+ queryComputeConfiguration?: never;
79
+ $unknown: [string, any];
80
+ }
81
+ /**
82
+ * @deprecated unused in schema-serde mode.
83
+ *
84
+ */
85
+ interface Visitor<T> {
86
+ queryComputeConfiguration: (value: WorkerComputeConfiguration) => T;
87
+ _: (name: string, value: any) => T;
88
+ }
89
+ }
3
90
  /**
4
91
  * @public
5
92
  */
@@ -4,49 +4,14 @@ import type { CleanRoomsClientConfig } from "./CleanRoomsClient";
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: CleanRoomsClientConfig) => {
7
- runtime: string;
8
- defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
- defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
- maxAttempts: number | import("@smithy/types").Provider<number>;
13
- region: string | import("@smithy/types").Provider<any>;
14
- requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
- retryMode: string | import("@smithy/types").Provider<string>;
16
- streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
17
- useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
18
- useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
- cacheMiddleware?: boolean | undefined;
20
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
21
- protocolSettings: {
22
- defaultNamespace?: string;
23
- [setting: string]: unknown;
24
- };
25
- apiVersion: string;
26
- sha256: import("@smithy/types").HashConstructor;
27
- urlParser: import("@smithy/types").UrlParser;
28
- base64Decoder: import("@smithy/types").Decoder;
29
- base64Encoder: (_input: Uint8Array | string) => string;
30
- utf8Decoder: import("@smithy/types").Decoder;
31
- utf8Encoder: (input: Uint8Array | string) => string;
32
- disableHostPrefix: boolean;
33
- serviceId: string;
34
- profile?: string;
35
- logger: import("@smithy/types").Logger;
36
- extensions: import("./runtimeExtensions").RuntimeExtension[];
7
+ cacheMiddleware?: boolean;
37
8
  customUserAgent?: string | import("@smithy/types").UserAgent;
38
9
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
39
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
40
- endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
41
- endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
42
- logger?: import("@smithy/types").Logger;
43
- }) => import("@smithy/types").EndpointV2;
10
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
44
11
  tls?: boolean;
45
12
  ignoreConfiguredEndpointUrls?: boolean;
46
13
  serviceConfiguredEndpoint?: never;
47
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
48
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
49
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CleanRoomsHttpAuthSchemeProvider;
14
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
50
15
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
51
16
  signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
52
17
  signingEscapePath?: boolean;
@@ -54,4 +19,39 @@ export declare const getRuntimeConfig: (config: CleanRoomsClientConfig) => {
54
19
  signingRegion?: string;
55
20
  signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
56
21
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
22
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
23
+ apiVersion: string;
24
+ base64Decoder: import("@smithy/types").Decoder;
25
+ base64Encoder: (_input: Uint8Array | string) => string;
26
+ disableHostPrefix: boolean;
27
+ endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
28
+ logger?: import("@smithy/types").Logger;
29
+ }) => import("@smithy/types").EndpointV2;
30
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
31
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CleanRoomsHttpAuthSchemeProvider;
32
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
33
+ logger: import("@smithy/types").Logger;
34
+ protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
35
+ protocolSettings: {
36
+ [setting: string]: unknown;
37
+ defaultNamespace?: string;
38
+ };
39
+ serviceId: string;
40
+ sha256: import("@smithy/types").HashConstructor;
41
+ urlParser: import("@smithy/types").UrlParser;
42
+ utf8Decoder: import("@smithy/types").Decoder;
43
+ utf8Encoder: (input: Uint8Array | string) => string;
44
+ profile?: string;
45
+ runtime: string;
46
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
47
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
48
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
49
+ defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
50
+ maxAttempts: number | import("@smithy/types").Provider<number>;
51
+ region: string | import("@smithy/types").Provider<any>;
52
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
53
+ retryMode: string | import("@smithy/types").Provider<string>;
54
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
55
+ useDualstackEndpoint: boolean | (() => Promise<boolean>);
56
+ useFipsEndpoint: boolean | (() => Promise<boolean>);
57
57
  };
@@ -4,11 +4,46 @@ import type { CleanRoomsClientConfig } from "./CleanRoomsClient";
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: CleanRoomsClientConfig) => {
7
+ cacheMiddleware?: boolean;
8
+ customUserAgent?: string | import("@smithy/types").UserAgent;
9
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
10
+ tls?: boolean;
11
+ ignoreConfiguredEndpointUrls?: boolean;
12
+ serviceConfiguredEndpoint?: never;
13
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
14
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
15
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
16
+ signingEscapePath?: boolean;
17
+ systemClockOffset?: number;
18
+ signingRegion?: string;
19
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
20
+ disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
21
+ apiVersion: string;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: (_input: Uint8Array | string) => string;
24
+ disableHostPrefix: boolean;
25
+ endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
26
+ logger?: import("@smithy/types").Logger;
27
+ }) => import("@smithy/types").EndpointV2;
28
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
29
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CleanRoomsHttpAuthSchemeProvider;
30
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
31
+ logger: import("@smithy/types").Logger;
32
+ protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
33
+ protocolSettings: {
34
+ [setting: string]: unknown;
35
+ defaultNamespace?: string;
36
+ };
37
+ serviceId: string;
38
+ sha256: import("@smithy/types").HashConstructor;
39
+ urlParser: import("@smithy/types").UrlParser;
40
+ utf8Decoder: import("@smithy/types").Decoder;
41
+ utf8Encoder: (input: Uint8Array | string) => string;
7
42
  runtime: string;
8
43
  defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
44
  authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
45
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
- credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
46
+ credentialDefaultProvider: ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider) | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
12
47
  defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
48
  maxAttempts: number | import("@smithy/types").Provider<number>;
14
49
  region: string | import("@smithy/types").Provider<string>;
@@ -18,40 +53,5 @@ export declare const getRuntimeConfig: (config: CleanRoomsClientConfig) => {
18
53
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
54
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
55
  userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
21
- cacheMiddleware?: boolean | undefined;
22
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
23
- protocolSettings: {
24
- defaultNamespace?: string;
25
- [setting: string]: unknown;
26
- };
27
- apiVersion: string;
28
- sha256: import("@smithy/types").HashConstructor;
29
- urlParser: import("@smithy/types").UrlParser;
30
- base64Decoder: import("@smithy/types").Decoder;
31
- base64Encoder: (_input: Uint8Array | string) => string;
32
- utf8Decoder: import("@smithy/types").Decoder;
33
- utf8Encoder: (input: Uint8Array | string) => string;
34
- disableHostPrefix: boolean;
35
- serviceId: string;
36
56
  profile?: string;
37
- logger: import("@smithy/types").Logger;
38
- extensions: import("./runtimeExtensions").RuntimeExtension[];
39
- customUserAgent?: string | import("@smithy/types").UserAgent;
40
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
41
- endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
42
- endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
43
- logger?: import("@smithy/types").Logger;
44
- }) => import("@smithy/types").EndpointV2;
45
- tls?: boolean;
46
- ignoreConfiguredEndpointUrls?: boolean;
47
- serviceConfiguredEndpoint?: never;
48
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
49
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CleanRoomsHttpAuthSchemeProvider;
50
- credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
51
- signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
52
- signingEscapePath?: boolean;
53
- systemClockOffset?: number;
54
- signingRegion?: string;
55
- signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
56
- disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
57
57
  };
@@ -3,49 +3,14 @@ import type { CleanRoomsClientConfig } from "./CleanRoomsClient";
3
3
  * @internal
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: CleanRoomsClientConfig) => {
6
- runtime: string;
7
- requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
8
6
  cacheMiddleware?: boolean;
9
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
10
- protocolSettings: {
11
- defaultNamespace?: string;
12
- [setting: string]: unknown;
13
- };
14
- apiVersion: string;
15
- sha256: import("@smithy/types").HashConstructor;
16
- urlParser: import("@smithy/types").UrlParser;
17
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
- streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
- base64Decoder: import("@smithy/types").Decoder;
20
- base64Encoder: (_input: Uint8Array | string) => string;
21
- utf8Decoder: import("@smithy/types").Decoder;
22
- utf8Encoder: (input: Uint8Array | string) => string;
23
- disableHostPrefix: boolean;
24
- serviceId: string;
25
- useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
26
- useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
27
- region: string | import("@smithy/types").Provider<any>;
28
- profile?: string;
29
- defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
30
- credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
31
- maxAttempts: number | import("@smithy/types").Provider<number>;
32
- retryMode: string | import("@smithy/types").Provider<string>;
33
- logger: import("@smithy/types").Logger;
34
- extensions: import("./runtimeExtensions").RuntimeExtension[];
35
- defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
36
7
  customUserAgent?: string | import("@smithy/types").UserAgent;
37
8
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
38
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
39
- endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
40
- endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
41
- logger?: import("@smithy/types").Logger;
42
- }) => import("@smithy/types").EndpointV2;
9
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
43
10
  tls?: boolean;
44
11
  ignoreConfiguredEndpointUrls?: boolean;
45
12
  serviceConfiguredEndpoint?: never;
46
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
47
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
48
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CleanRoomsHttpAuthSchemeProvider;
13
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
49
14
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
50
15
  signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
51
16
  signingEscapePath?: boolean;
@@ -53,4 +18,39 @@ export declare const getRuntimeConfig: (config: CleanRoomsClientConfig) => {
53
18
  signingRegion?: string;
54
19
  signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
55
20
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
21
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
22
+ apiVersion: string;
23
+ base64Decoder: import("@smithy/types").Decoder;
24
+ base64Encoder: (_input: Uint8Array | string) => string;
25
+ disableHostPrefix: boolean;
26
+ endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
27
+ logger?: import("@smithy/types").Logger;
28
+ }) => import("@smithy/types").EndpointV2;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CleanRoomsHttpAuthSchemeProvider;
31
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
32
+ logger: import("@smithy/types").Logger;
33
+ protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
34
+ protocolSettings: {
35
+ [setting: string]: unknown;
36
+ defaultNamespace?: string;
37
+ };
38
+ serviceId: string;
39
+ sha256: import("@smithy/types").HashConstructor;
40
+ urlParser: import("@smithy/types").UrlParser;
41
+ utf8Decoder: import("@smithy/types").Decoder;
42
+ utf8Encoder: (input: Uint8Array | string) => string;
43
+ profile?: string;
44
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode> | import("@smithy/core/client").DefaultsMode;
45
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
46
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
47
+ defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
48
+ maxAttempts: number | import("@smithy/types").Provider<number>;
49
+ region: string | import("@smithy/types").Provider<any>;
50
+ requestHandler: import("@smithy/fetch-http-handler").FetchHttpHandler | import("@smithy/types").FetchHttpHandlerOptions | import("@smithy/types").NodeHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any>;
51
+ retryMode: string | import("@smithy/types").Provider<string>;
52
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
53
+ useDualstackEndpoint: boolean | (() => Promise<boolean>);
54
+ useFipsEndpoint: boolean | (() => Promise<boolean>);
55
+ runtime: string;
56
56
  };
@@ -8,14 +8,14 @@ export declare const getRuntimeConfig: (config: CleanRoomsClientConfig) => {
8
8
  base64Decoder: import("@smithy/types").Decoder;
9
9
  base64Encoder: (_input: Uint8Array | string) => string;
10
10
  disableHostPrefix: boolean;
11
- endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
12
12
  logger?: import("@smithy/types").Logger;
13
13
  }) => import("@smithy/types").EndpointV2;
14
14
  extensions: import("./runtimeExtensions").RuntimeExtension[];
15
15
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CleanRoomsHttpAuthSchemeProvider;
16
16
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
17
17
  logger: import("@smithy/types").Logger;
18
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
18
+ protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
19
19
  protocolSettings: {
20
20
  [setting: string]: unknown;
21
21
  defaultNamespace?: string;
@@ -21,6 +21,7 @@ export declare var AccessBudgetsPrivacyTemplateParametersOutput$: StaticStructur
21
21
  export declare var AccessBudgetsPrivacyTemplateUpdateParameters$: StaticStructureSchema;
22
22
  export declare var AggregateColumn$: StaticStructureSchema;
23
23
  export declare var AggregationConstraint$: StaticStructureSchema;
24
+ export declare var AggregationThreshold$: StaticStructureSchema;
24
25
  export declare var AnalysisLogExport$: StaticStructureSchema;
25
26
  export declare var AnalysisLogExportError$: StaticStructureSchema;
26
27
  export declare var AnalysisLogExportOutputConfiguration$: StaticStructureSchema;
@@ -75,6 +76,7 @@ export declare var CollaborationSummary$: StaticStructureSchema;
75
76
  export declare var Column$: StaticStructureSchema;
76
77
  export declare var ColumnClassificationDetails$: StaticStructureSchema;
77
78
  export declare var ColumnLineageEntry$: StaticStructureSchema;
79
+ export declare var ComparisonControls$: StaticStructureSchema;
78
80
  export declare var ConfiguredAudienceModelAssociation$: StaticStructureSchema;
79
81
  export declare var ConfiguredAudienceModelAssociationSummary$: StaticStructureSchema;
80
82
  export declare var ConfiguredTable$: StaticStructureSchema;
@@ -310,6 +312,7 @@ export declare var MLPaymentConfig$: StaticStructureSchema;
310
312
  export declare var MLSyntheticDataParameters$: StaticStructureSchema;
311
313
  export declare var ModelInferencePaymentConfig$: StaticStructureSchema;
312
314
  export declare var ModelTrainingPaymentConfig$: StaticStructureSchema;
315
+ export declare var OutputColumnThreshold$: StaticStructureSchema;
313
316
  export declare var PaymentConfiguration$: StaticStructureSchema;
314
317
  export declare var PopulateIdMappingTableInput$: StaticStructureSchema;
315
318
  export declare var PopulateIdMappingTableOutput$: StaticStructureSchema;
@@ -34,6 +34,17 @@ export declare const AggregationType: {
34
34
  readonly COUNT_DISTINCT: "COUNT_DISTINCT";
35
35
  };
36
36
  export type AggregationType = (typeof AggregationType)[keyof typeof AggregationType];
37
+ export declare const AllowedAggregateExpressionType: {
38
+ readonly ANY_EXPRESSION: "ANY_EXPRESSION";
39
+ readonly COLUMNS_ONLY: "COLUMNS_ONLY";
40
+ };
41
+ export type AllowedAggregateExpressionType =
42
+ (typeof AllowedAggregateExpressionType)[keyof typeof AllowedAggregateExpressionType];
43
+ export declare const AggregationThresholdType: {
44
+ readonly COUNT_DISTINCT: "COUNT_DISTINCT";
45
+ };
46
+ export type AggregationThresholdType =
47
+ (typeof AggregationThresholdType)[keyof typeof AggregationThresholdType];
37
48
  export declare const SupportedS3Region: {
38
49
  readonly AF_SOUTH_1: "af-south-1";
39
50
  readonly AP_EAST_1: "ap-east-1";
@@ -3,7 +3,9 @@ import {
3
3
  AccessBudgetType,
4
4
  AdditionalAnalyses,
5
5
  AggregateFunctionName,
6
+ AggregationThresholdType,
6
7
  AggregationType,
8
+ AllowedAggregateExpressionType,
7
9
  AnalysisFormat,
8
10
  AnalysisLogExportStatus,
9
11
  AnalysisMethod,
@@ -54,7 +56,6 @@ import {
54
56
  SelectedAnalysisMethod,
55
57
  SupportedS3Region,
56
58
  SyntheticDataColumnType,
57
- WorkerComputeType,
58
59
  } from "./enums";
59
60
  export interface AccessBudgetDetails {
60
61
  startTime: Date | undefined;
@@ -94,6 +95,17 @@ export interface AggregationConstraint {
94
95
  minimum: number | undefined;
95
96
  type: AggregationType | undefined;
96
97
  }
98
+ export interface OutputColumnThreshold {
99
+ outputColumnName: string | undefined;
100
+ minimumIdentityCount: number | undefined;
101
+ }
102
+ export interface AggregationThreshold {
103
+ identityColumns: string[] | undefined;
104
+ minimumIdentityCount: number | undefined;
105
+ type: AggregationThresholdType | undefined;
106
+ outputColumnThresholds?: OutputColumnThreshold[] | undefined;
107
+ allowedAggregateExpressionType: AllowedAggregateExpressionType | undefined;
108
+ }
97
109
  export interface AnalysisLogExportError {
98
110
  code: string | undefined;
99
111
  message: string | undefined;
@@ -209,6 +221,10 @@ export interface ConsolidatedPolicyAggregation {
209
221
  allowedResultReceivers?: string[] | undefined;
210
222
  allowedAdditionalAnalyses?: string[] | undefined;
211
223
  }
224
+ export interface ComparisonControls {
225
+ allowedLiteralComparisonColumns: string[] | undefined;
226
+ allowedColumnComparisonColumns: string[] | undefined;
227
+ }
212
228
  export interface DifferentialPrivacyColumn {
213
229
  name: string | undefined;
214
230
  }
@@ -221,6 +237,8 @@ export interface ConsolidatedPolicyCustom {
221
237
  additionalAnalyses?: AdditionalAnalyses | undefined;
222
238
  disallowedOutputColumns?: string[] | undefined;
223
239
  differentialPrivacy?: DifferentialPrivacyConfiguration | undefined;
240
+ aggregationThresholds?: AggregationThreshold[] | undefined;
241
+ comparisonControls?: ComparisonControls | undefined;
224
242
  allowedResultReceivers?: string[] | undefined;
225
243
  allowedAdditionalAnalyses?: string[] | undefined;
226
244
  }
@@ -300,6 +318,8 @@ export interface AnalysisRuleCustom {
300
318
  additionalAnalyses?: AdditionalAnalyses | undefined;
301
319
  disallowedOutputColumns?: string[] | undefined;
302
320
  differentialPrivacy?: DifferentialPrivacyConfiguration | undefined;
321
+ aggregationThresholds?: AggregationThreshold[] | undefined;
322
+ comparisonControls?: ComparisonControls | undefined;
303
323
  allowedResultReceivers?: string[] | undefined;
304
324
  allowedAdditionalAnalyses?: string[] | undefined;
305
325
  }
@@ -1993,6 +2013,8 @@ export interface IntermediateTableAnalysisRuleCustom {
1993
2013
  allowedResultReceivers?: string[] | undefined;
1994
2014
  differentialPrivacy?: DifferentialPrivacyConfiguration | undefined;
1995
2015
  disallowedOutputColumns?: string[] | undefined;
2016
+ aggregationThresholds?: AggregationThreshold[] | undefined;
2017
+ comparisonControls?: ComparisonControls | undefined;
1996
2018
  }
1997
2019
  export type IntermediateTableAnalysisRulePolicyV1 =
1998
2020
  | IntermediateTableAnalysisRulePolicyV1.CustomMember
@@ -2115,42 +2137,3 @@ export interface ListIntermediateTableVersionsOutput {
2115
2137
  intermediateTableVersionSummaries: IntermediateTableVersionSummary[] | undefined;
2116
2138
  nextToken?: string | undefined;
2117
2139
  }
2118
- export type WorkerComputeConfigurationProperties =
2119
- | WorkerComputeConfigurationProperties.SparkMember
2120
- | WorkerComputeConfigurationProperties.$UnknownMember;
2121
- export declare namespace WorkerComputeConfigurationProperties {
2122
- interface SparkMember {
2123
- spark: Record<string, string>;
2124
- $unknown?: never;
2125
- }
2126
- interface $UnknownMember {
2127
- spark?: never;
2128
- $unknown: [string, any];
2129
- }
2130
- interface Visitor<T> {
2131
- spark: (value: Record<string, string>) => T;
2132
- _: (name: string, value: any) => T;
2133
- }
2134
- }
2135
- export interface WorkerComputeConfiguration {
2136
- type?: WorkerComputeType | undefined;
2137
- number?: number | undefined;
2138
- properties?: WorkerComputeConfigurationProperties | undefined;
2139
- }
2140
- export type IntermediateTableComputeConfiguration =
2141
- | IntermediateTableComputeConfiguration.QueryComputeConfigurationMember
2142
- | IntermediateTableComputeConfiguration.$UnknownMember;
2143
- export declare namespace IntermediateTableComputeConfiguration {
2144
- interface QueryComputeConfigurationMember {
2145
- queryComputeConfiguration: WorkerComputeConfiguration;
2146
- $unknown?: never;
2147
- }
2148
- interface $UnknownMember {
2149
- queryComputeConfiguration?: never;
2150
- $unknown: [string, any];
2151
- }
2152
- interface Visitor<T> {
2153
- queryComputeConfiguration: (value: WorkerComputeConfiguration) => T;
2154
- _: (name: string, value: any) => T;
2155
- }
2156
- }
@@ -20,6 +20,7 @@ import {
20
20
  ResultFormat,
21
21
  TargetProtectedJobStatus,
22
22
  TargetProtectedQueryStatus,
23
+ WorkerComputeType,
23
24
  } from "./enums";
24
25
  import {
25
26
  AccessBudgetsPrivacyTemplateParametersInput,
@@ -30,13 +31,49 @@ import {
30
31
  IntermediateTable,
31
32
  IntermediateTableAnalysisRule,
32
33
  IntermediateTableAnalysisRulePolicy,
33
- IntermediateTableComputeConfiguration,
34
34
  MLMemberAbilities,
35
35
  PrivacyBudget,
36
36
  PrivacyBudgetTemplateParametersOutput,
37
- WorkerComputeConfiguration,
38
- WorkerComputeConfigurationProperties,
39
37
  } from "./models_0";
38
+ export type WorkerComputeConfigurationProperties =
39
+ | WorkerComputeConfigurationProperties.SparkMember
40
+ | WorkerComputeConfigurationProperties.$UnknownMember;
41
+ export declare namespace WorkerComputeConfigurationProperties {
42
+ interface SparkMember {
43
+ spark: Record<string, string>;
44
+ $unknown?: never;
45
+ }
46
+ interface $UnknownMember {
47
+ spark?: never;
48
+ $unknown: [string, any];
49
+ }
50
+ interface Visitor<T> {
51
+ spark: (value: Record<string, string>) => T;
52
+ _: (name: string, value: any) => T;
53
+ }
54
+ }
55
+ export interface WorkerComputeConfiguration {
56
+ type?: WorkerComputeType | undefined;
57
+ number?: number | undefined;
58
+ properties?: WorkerComputeConfigurationProperties | undefined;
59
+ }
60
+ export type IntermediateTableComputeConfiguration =
61
+ | IntermediateTableComputeConfiguration.QueryComputeConfigurationMember
62
+ | IntermediateTableComputeConfiguration.$UnknownMember;
63
+ export declare namespace IntermediateTableComputeConfiguration {
64
+ interface QueryComputeConfigurationMember {
65
+ queryComputeConfiguration: WorkerComputeConfiguration;
66
+ $unknown?: never;
67
+ }
68
+ interface $UnknownMember {
69
+ queryComputeConfiguration?: never;
70
+ $unknown: [string, any];
71
+ }
72
+ interface Visitor<T> {
73
+ queryComputeConfiguration: (value: WorkerComputeConfiguration) => T;
74
+ _: (name: string, value: any) => T;
75
+ }
76
+ }
40
77
  export interface PopulateIntermediateTableInput {
41
78
  intermediateTableIdentifier: string | undefined;
42
79
  membershipIdentifier: string | undefined;