@aws-sdk/client-controltower 3.169.0 → 3.171.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.
@@ -1,150 +1,134 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ControlTowerServiceException as __BaseException } from "./ControlTowerServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
- }
10
-
11
- export declare class ConflictException extends __BaseException {
12
- readonly name: "ConflictException";
13
- readonly $fault: "client";
14
-
15
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
16
- }
17
- export interface DisableControlInput {
18
-
19
- controlIdentifier: string | undefined;
20
-
21
- targetIdentifier: string | undefined;
22
- }
23
- export interface DisableControlOutput {
24
-
25
- operationIdentifier: string | undefined;
26
- }
27
-
28
- export declare class InternalServerException extends __BaseException {
29
- readonly name: "InternalServerException";
30
- readonly $fault: "server";
31
- $retryable: {};
32
-
33
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
34
- }
35
-
36
- export declare class ResourceNotFoundException extends __BaseException {
37
- readonly name: "ResourceNotFoundException";
38
- readonly $fault: "client";
39
-
40
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
41
- }
42
-
43
- export declare class ServiceQuotaExceededException extends __BaseException {
44
- readonly name: "ServiceQuotaExceededException";
45
- readonly $fault: "client";
46
-
47
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
48
- }
49
-
50
- export declare class ThrottlingException extends __BaseException {
51
- readonly name: "ThrottlingException";
52
- readonly $fault: "client";
53
- $retryable: {
54
- throttling: boolean;
55
- };
56
-
57
- serviceCode?: string;
58
-
59
- quotaCode?: string;
60
-
61
- retryAfterSeconds?: number;
62
-
63
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
64
- }
65
-
66
- export declare class ValidationException extends __BaseException {
67
- readonly name: "ValidationException";
68
- readonly $fault: "client";
69
-
70
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
71
- }
72
- export interface EnableControlInput {
73
-
74
- controlIdentifier: string | undefined;
75
-
76
- targetIdentifier: string | undefined;
77
- }
78
- export interface EnableControlOutput {
79
-
80
- operationIdentifier: string | undefined;
81
- }
82
- export interface GetControlOperationInput {
83
-
84
- operationIdentifier: string | undefined;
85
- }
86
- export declare enum ControlOperationType {
87
- DISABLE_CONTROL = "DISABLE_CONTROL",
88
- ENABLE_CONTROL = "ENABLE_CONTROL"
89
- }
90
- export declare enum ControlOperationStatus {
91
- FAILED = "FAILED",
92
- IN_PROGRESS = "IN_PROGRESS",
93
- SUCCEEDED = "SUCCEEDED"
94
- }
95
-
96
- export interface ControlOperation {
97
-
98
- operationType?: ControlOperationType | string;
99
-
100
- startTime?: Date;
101
-
102
- endTime?: Date;
103
-
104
- status?: ControlOperationStatus | string;
105
-
106
- statusMessage?: string;
107
- }
108
- export interface GetControlOperationOutput {
109
-
110
- controlOperation: ControlOperation | undefined;
111
- }
112
- export interface ListEnabledControlsInput {
113
-
114
- targetIdentifier: string | undefined;
115
-
116
- nextToken?: string;
117
-
118
- maxResults?: number;
119
- }
120
-
121
- export interface EnabledControlSummary {
122
-
123
- controlIdentifier?: string;
124
- }
125
- export interface ListEnabledControlsOutput {
126
-
127
- enabledControls: EnabledControlSummary[] | undefined;
128
-
129
- nextToken?: string;
130
- }
131
-
132
- export declare const DisableControlInputFilterSensitiveLog: (obj: DisableControlInput) => any;
133
-
134
- export declare const DisableControlOutputFilterSensitiveLog: (obj: DisableControlOutput) => any;
135
-
136
- export declare const EnableControlInputFilterSensitiveLog: (obj: EnableControlInput) => any;
137
-
138
- export declare const EnableControlOutputFilterSensitiveLog: (obj: EnableControlOutput) => any;
139
-
140
- export declare const GetControlOperationInputFilterSensitiveLog: (obj: GetControlOperationInput) => any;
141
-
142
- export declare const ControlOperationFilterSensitiveLog: (obj: ControlOperation) => any;
143
-
144
- export declare const GetControlOperationOutputFilterSensitiveLog: (obj: GetControlOperationOutput) => any;
145
-
146
- export declare const ListEnabledControlsInputFilterSensitiveLog: (obj: ListEnabledControlsInput) => any;
147
-
148
- export declare const EnabledControlSummaryFilterSensitiveLog: (obj: EnabledControlSummary) => any;
149
-
150
- export declare const ListEnabledControlsOutputFilterSensitiveLog: (obj: ListEnabledControlsOutput) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ControlTowerServiceException as __BaseException } from "./ControlTowerServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare class ConflictException extends __BaseException {
11
+ readonly name: "ConflictException";
12
+ readonly $fault: "client";
13
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
14
+ }
15
+ export interface DisableControlInput {
16
+ controlIdentifier: string | undefined;
17
+ targetIdentifier: string | undefined;
18
+ }
19
+ export interface DisableControlOutput {
20
+ operationIdentifier: string | undefined;
21
+ }
22
+ export declare class InternalServerException extends __BaseException {
23
+ readonly name: "InternalServerException";
24
+ readonly $fault: "server";
25
+ $retryable: {};
26
+ constructor(
27
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
28
+ );
29
+ }
30
+ export declare class ResourceNotFoundException extends __BaseException {
31
+ readonly name: "ResourceNotFoundException";
32
+ readonly $fault: "client";
33
+ constructor(
34
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
35
+ );
36
+ }
37
+ export declare class ServiceQuotaExceededException extends __BaseException {
38
+ readonly name: "ServiceQuotaExceededException";
39
+ readonly $fault: "client";
40
+ constructor(
41
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
42
+ );
43
+ }
44
+ export declare class ThrottlingException extends __BaseException {
45
+ readonly name: "ThrottlingException";
46
+ readonly $fault: "client";
47
+ $retryable: {
48
+ throttling: boolean;
49
+ };
50
+ serviceCode?: string;
51
+ quotaCode?: string;
52
+ retryAfterSeconds?: number;
53
+ constructor(
54
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
55
+ );
56
+ }
57
+ export declare class ValidationException extends __BaseException {
58
+ readonly name: "ValidationException";
59
+ readonly $fault: "client";
60
+ constructor(
61
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
62
+ );
63
+ }
64
+ export interface EnableControlInput {
65
+ controlIdentifier: string | undefined;
66
+ targetIdentifier: string | undefined;
67
+ }
68
+ export interface EnableControlOutput {
69
+ operationIdentifier: string | undefined;
70
+ }
71
+ export interface GetControlOperationInput {
72
+ operationIdentifier: string | undefined;
73
+ }
74
+ export declare enum ControlOperationType {
75
+ DISABLE_CONTROL = "DISABLE_CONTROL",
76
+ ENABLE_CONTROL = "ENABLE_CONTROL",
77
+ }
78
+ export declare enum ControlOperationStatus {
79
+ FAILED = "FAILED",
80
+ IN_PROGRESS = "IN_PROGRESS",
81
+ SUCCEEDED = "SUCCEEDED",
82
+ }
83
+ export interface ControlOperation {
84
+ operationType?: ControlOperationType | string;
85
+ startTime?: Date;
86
+ endTime?: Date;
87
+ status?: ControlOperationStatus | string;
88
+ statusMessage?: string;
89
+ }
90
+ export interface GetControlOperationOutput {
91
+ controlOperation: ControlOperation | undefined;
92
+ }
93
+ export interface ListEnabledControlsInput {
94
+ targetIdentifier: string | undefined;
95
+ nextToken?: string;
96
+ maxResults?: number;
97
+ }
98
+ export interface EnabledControlSummary {
99
+ controlIdentifier?: string;
100
+ }
101
+ export interface ListEnabledControlsOutput {
102
+ enabledControls: EnabledControlSummary[] | undefined;
103
+ nextToken?: string;
104
+ }
105
+ export declare const DisableControlInputFilterSensitiveLog: (
106
+ obj: DisableControlInput
107
+ ) => any;
108
+ export declare const DisableControlOutputFilterSensitiveLog: (
109
+ obj: DisableControlOutput
110
+ ) => any;
111
+ export declare const EnableControlInputFilterSensitiveLog: (
112
+ obj: EnableControlInput
113
+ ) => any;
114
+ export declare const EnableControlOutputFilterSensitiveLog: (
115
+ obj: EnableControlOutput
116
+ ) => any;
117
+ export declare const GetControlOperationInputFilterSensitiveLog: (
118
+ obj: GetControlOperationInput
119
+ ) => any;
120
+ export declare const ControlOperationFilterSensitiveLog: (
121
+ obj: ControlOperation
122
+ ) => any;
123
+ export declare const GetControlOperationOutputFilterSensitiveLog: (
124
+ obj: GetControlOperationOutput
125
+ ) => any;
126
+ export declare const ListEnabledControlsInputFilterSensitiveLog: (
127
+ obj: ListEnabledControlsInput
128
+ ) => any;
129
+ export declare const EnabledControlSummaryFilterSensitiveLog: (
130
+ obj: EnabledControlSummary
131
+ ) => any;
132
+ export declare const ListEnabledControlsOutputFilterSensitiveLog: (
133
+ obj: ListEnabledControlsOutput
134
+ ) => any;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { ControlTower } from "../ControlTower";
3
- import { ControlTowerClient } from "../ControlTowerClient";
4
- export interface ControlTowerPaginationConfiguration extends PaginationConfiguration {
5
- client: ControlTower | ControlTowerClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { ControlTower } from "../ControlTower";
3
+ import { ControlTowerClient } from "../ControlTowerClient";
4
+ export interface ControlTowerPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: ControlTower | ControlTowerClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListEnabledControlsCommandInput, ListEnabledControlsCommandOutput } from "../commands/ListEnabledControlsCommand";
3
- import { ControlTowerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListEnabledControls(config: ControlTowerPaginationConfiguration, input: ListEnabledControlsCommandInput, ...additionalArguments: any): Paginator<ListEnabledControlsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListEnabledControlsCommandInput,
4
+ ListEnabledControlsCommandOutput,
5
+ } from "../commands/ListEnabledControlsCommand";
6
+ import { ControlTowerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListEnabledControls(
8
+ config: ControlTowerPaginationConfiguration,
9
+ input: ListEnabledControlsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListEnabledControlsCommandOutput>;
@@ -1,2 +1,2 @@
1
- export * from "./Interfaces";
2
- export * from "./ListEnabledControlsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListEnabledControlsPaginator";
@@ -1,14 +1,53 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { DisableControlCommandInput, DisableControlCommandOutput } from "../commands/DisableControlCommand";
4
- import { EnableControlCommandInput, EnableControlCommandOutput } from "../commands/EnableControlCommand";
5
- import { GetControlOperationCommandInput, GetControlOperationCommandOutput } from "../commands/GetControlOperationCommand";
6
- import { ListEnabledControlsCommandInput, ListEnabledControlsCommandOutput } from "../commands/ListEnabledControlsCommand";
7
- export declare const serializeAws_restJson1DisableControlCommand: (input: DisableControlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
8
- export declare const serializeAws_restJson1EnableControlCommand: (input: EnableControlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
9
- export declare const serializeAws_restJson1GetControlOperationCommand: (input: GetControlOperationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
10
- export declare const serializeAws_restJson1ListEnabledControlsCommand: (input: ListEnabledControlsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
11
- export declare const deserializeAws_restJson1DisableControlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableControlCommandOutput>;
12
- export declare const deserializeAws_restJson1EnableControlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableControlCommandOutput>;
13
- export declare const deserializeAws_restJson1GetControlOperationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetControlOperationCommandOutput>;
14
- export declare const deserializeAws_restJson1ListEnabledControlsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnabledControlsCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ DisableControlCommandInput,
8
+ DisableControlCommandOutput,
9
+ } from "../commands/DisableControlCommand";
10
+ import {
11
+ EnableControlCommandInput,
12
+ EnableControlCommandOutput,
13
+ } from "../commands/EnableControlCommand";
14
+ import {
15
+ GetControlOperationCommandInput,
16
+ GetControlOperationCommandOutput,
17
+ } from "../commands/GetControlOperationCommand";
18
+ import {
19
+ ListEnabledControlsCommandInput,
20
+ ListEnabledControlsCommandOutput,
21
+ } from "../commands/ListEnabledControlsCommand";
22
+ export declare const serializeAws_restJson1DisableControlCommand: (
23
+ input: DisableControlCommandInput,
24
+ context: __SerdeContext
25
+ ) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1EnableControlCommand: (
27
+ input: EnableControlCommandInput,
28
+ context: __SerdeContext
29
+ ) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_restJson1GetControlOperationCommand: (
31
+ input: GetControlOperationCommandInput,
32
+ context: __SerdeContext
33
+ ) => Promise<__HttpRequest>;
34
+ export declare const serializeAws_restJson1ListEnabledControlsCommand: (
35
+ input: ListEnabledControlsCommandInput,
36
+ context: __SerdeContext
37
+ ) => Promise<__HttpRequest>;
38
+ export declare const deserializeAws_restJson1DisableControlCommand: (
39
+ output: __HttpResponse,
40
+ context: __SerdeContext
41
+ ) => Promise<DisableControlCommandOutput>;
42
+ export declare const deserializeAws_restJson1EnableControlCommand: (
43
+ output: __HttpResponse,
44
+ context: __SerdeContext
45
+ ) => Promise<EnableControlCommandOutput>;
46
+ export declare const deserializeAws_restJson1GetControlOperationCommand: (
47
+ output: __HttpResponse,
48
+ context: __SerdeContext
49
+ ) => Promise<GetControlOperationCommandOutput>;
50
+ export declare const deserializeAws_restJson1ListEnabledControlsCommand: (
51
+ output: __HttpResponse,
52
+ context: __SerdeContext
53
+ ) => Promise<ListEnabledControlsCommandOutput>;
@@ -1,38 +1,65 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { ControlTowerClientConfig } from "./ControlTowerClient";
3
-
4
- export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { ControlTowerClientConfig } from "./ControlTowerClient";
3
+ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<any>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sha256: import("@aws-sdk/types").HashConstructor;
29
+ streamCollector: import("@aws-sdk/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ utf8Decoder: import("@aws-sdk/types").Decoder;
33
+ utf8Encoder: import("@aws-sdk/types").Encoder;
34
+ apiVersion: string;
35
+ urlParser: import("@aws-sdk/types").UrlParser;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
+ endpoint?:
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | undefined;
45
+ tls?: boolean | undefined;
46
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
+ credentials?:
48
+ | import("@aws-sdk/types").Credentials
49
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
50
+ | undefined;
51
+ signer?:
52
+ | import("@aws-sdk/types").RequestSigner
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | undefined;
55
+ signingEscapePath?: boolean | undefined;
56
+ systemClockOffset?: number | undefined;
57
+ signingRegion?: string | undefined;
58
+ signerConstructor?:
59
+ | (new (
60
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
61
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
62
+ ) => import("@aws-sdk/types").RequestSigner)
63
+ | undefined;
64
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
65
+ };
@@ -1,38 +1,65 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { ControlTowerClientConfig } from "./ControlTowerClient";
3
-
4
- export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { ControlTowerClientConfig } from "./ControlTowerClient";
3
+ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<string>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sha256: import("@aws-sdk/types").HashConstructor;
29
+ streamCollector: import("@aws-sdk/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ utf8Decoder: import("@aws-sdk/types").Decoder;
33
+ utf8Encoder: import("@aws-sdk/types").Encoder;
34
+ apiVersion: string;
35
+ urlParser: import("@aws-sdk/types").UrlParser;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
+ endpoint?:
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | undefined;
45
+ tls?: boolean | undefined;
46
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
+ credentials?:
48
+ | import("@aws-sdk/types").Credentials
49
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
50
+ | undefined;
51
+ signer?:
52
+ | import("@aws-sdk/types").RequestSigner
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | undefined;
55
+ signingEscapePath?: boolean | undefined;
56
+ systemClockOffset?: number | undefined;
57
+ signingRegion?: string | undefined;
58
+ signerConstructor?:
59
+ | (new (
60
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
61
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
62
+ ) => import("@aws-sdk/types").RequestSigner)
63
+ | undefined;
64
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
65
+ };