@aws-sdk/client-accessanalyzer 3.1086.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/AccessAnalyzer.d.ts +132 -143
- package/dist-types/ts3.4/AccessAnalyzerClient.d.ts +9 -28
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/ApplyArchiveRuleCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/CancelPolicyGenerationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CheckAccessNotGrantedCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CheckNoNewAccessCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CheckNoPublicAccessCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAccessPreviewCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAnalyzerCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateArchiveRuleCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/CreateServiceLinkedAnalyzerCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteAnalyzerCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteArchiveRuleCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DeleteServiceLinkedAnalyzerCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GenerateFindingRecommendationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAccessPreviewCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetAnalyzedResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetAnalyzerCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetArchiveRuleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetFindingCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetFindingRecommendationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetFindingV2Command.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetFindingsStatisticsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetGeneratedPolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAccessPreviewFindingsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAccessPreviewsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAnalyzedResourcesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAnalyzersCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListArchiveRulesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListFindingsV2Command.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAnalyzerCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateArchiveRuleCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/UpdateFindingsCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/ValidatePolicyCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +8 -16
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- package/dist-types/ts3.4/models/models_0.d.ts +13 -40
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +39 -39
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -96,18 +93,12 @@ import {
|
|
|
96
93
|
GetAnalyzedResourceCommandInput,
|
|
97
94
|
GetAnalyzedResourceCommandOutput,
|
|
98
95
|
} from "./commands/GetAnalyzedResourceCommand";
|
|
99
|
-
import {
|
|
100
|
-
GetAnalyzerCommandInput,
|
|
101
|
-
GetAnalyzerCommandOutput,
|
|
102
|
-
} from "./commands/GetAnalyzerCommand";
|
|
96
|
+
import { GetAnalyzerCommandInput, GetAnalyzerCommandOutput } from "./commands/GetAnalyzerCommand";
|
|
103
97
|
import {
|
|
104
98
|
GetArchiveRuleCommandInput,
|
|
105
99
|
GetArchiveRuleCommandOutput,
|
|
106
100
|
} from "./commands/GetArchiveRuleCommand";
|
|
107
|
-
import {
|
|
108
|
-
GetFindingCommandInput,
|
|
109
|
-
GetFindingCommandOutput,
|
|
110
|
-
} from "./commands/GetFindingCommand";
|
|
101
|
+
import { GetFindingCommandInput, GetFindingCommandOutput } from "./commands/GetFindingCommand";
|
|
111
102
|
import {
|
|
112
103
|
GetFindingRecommendationCommandInput,
|
|
113
104
|
GetFindingRecommendationCommandOutput,
|
|
@@ -168,10 +159,7 @@ import {
|
|
|
168
159
|
StartResourceScanCommandInput,
|
|
169
160
|
StartResourceScanCommandOutput,
|
|
170
161
|
} from "./commands/StartResourceScanCommand";
|
|
171
|
-
import {
|
|
172
|
-
TagResourceCommandInput,
|
|
173
|
-
TagResourceCommandOutput,
|
|
174
|
-
} from "./commands/TagResourceCommand";
|
|
162
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
175
163
|
import {
|
|
176
164
|
UntagResourceCommandInput,
|
|
177
165
|
UntagResourceCommandOutput,
|
|
@@ -279,8 +267,7 @@ export type ServiceOutputTypes =
|
|
|
279
267
|
| UpdateArchiveRuleCommandOutput
|
|
280
268
|
| UpdateFindingsCommandOutput
|
|
281
269
|
| ValidatePolicyCommandOutput;
|
|
282
|
-
export interface ClientDefaults
|
|
283
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
270
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
284
271
|
requestHandler?: __HttpHandlerUserInput;
|
|
285
272
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
286
273
|
urlParser?: __UrlParser;
|
|
@@ -305,9 +292,7 @@ export interface ClientDefaults
|
|
|
305
292
|
extensions?: RuntimeExtension[];
|
|
306
293
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
307
294
|
}
|
|
308
|
-
export type AccessAnalyzerClientConfigType = Partial<
|
|
309
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
310
|
-
> &
|
|
295
|
+
export type AccessAnalyzerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
311
296
|
ClientDefaults &
|
|
312
297
|
UserAgentInputConfig &
|
|
313
298
|
RetryInputConfig &
|
|
@@ -316,8 +301,7 @@ export type AccessAnalyzerClientConfigType = Partial<
|
|
|
316
301
|
EndpointInputConfig<EndpointParameters> &
|
|
317
302
|
HttpAuthSchemeInputConfig &
|
|
318
303
|
ClientInputEndpointParameters;
|
|
319
|
-
export interface AccessAnalyzerClientConfig
|
|
320
|
-
extends AccessAnalyzerClientConfigType {}
|
|
304
|
+
export interface AccessAnalyzerClientConfig extends AccessAnalyzerClientConfigType {}
|
|
321
305
|
export type AccessAnalyzerClientResolvedConfigType =
|
|
322
306
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
323
307
|
Required<ClientDefaults> &
|
|
@@ -329,8 +313,7 @@ export type AccessAnalyzerClientResolvedConfigType =
|
|
|
329
313
|
EndpointResolvedConfig<EndpointParameters> &
|
|
330
314
|
HttpAuthSchemeResolvedConfig &
|
|
331
315
|
ClientResolvedEndpointParameters;
|
|
332
|
-
export interface AccessAnalyzerClientResolvedConfig
|
|
333
|
-
extends AccessAnalyzerClientResolvedConfigType {}
|
|
316
|
+
export interface AccessAnalyzerClientResolvedConfig extends AccessAnalyzerClientResolvedConfigType {}
|
|
334
317
|
export declare class AccessAnalyzerClient extends __Client<
|
|
335
318
|
__HttpHandlerOptions,
|
|
336
319
|
ServiceInputTypes,
|
|
@@ -338,8 +321,6 @@ export declare class AccessAnalyzerClient extends __Client<
|
|
|
338
321
|
AccessAnalyzerClientResolvedConfig
|
|
339
322
|
> {
|
|
340
323
|
readonly config: AccessAnalyzerClientResolvedConfig;
|
|
341
|
-
constructor(
|
|
342
|
-
...[configuration]: __CheckOptionalClientConfig<AccessAnalyzerClientConfig>
|
|
343
|
-
);
|
|
324
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<AccessAnalyzerClientConfig>);
|
|
344
325
|
destroy(): void;
|
|
345
326
|
}
|
|
@@ -7,17 +7,10 @@ import { AccessAnalyzerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: AccessAnalyzerHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: AccessAnalyzerHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): AccessAnalyzerHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { AccessAnalyzerClientResolvedConfig } from "../AccessAnalyzerClient";
|
|
15
|
-
export interface AccessAnalyzerHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface AccessAnalyzerHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface AccessAnalyzerHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface AccessAnalyzerHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
AccessAnalyzerClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
AccessAnalyzerHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultAccessAnalyzerHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: AccessAnalyzerClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<AccessAnalyzerHttpAuthSchemeParameters>;
|
|
31
|
-
export interface AccessAnalyzerHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<AccessAnalyzerHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface AccessAnalyzerHttpAuthSchemeProvider extends HttpAuthSchemeProvider<AccessAnalyzerHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultAccessAnalyzerHttpAuthSchemeProvider: AccessAnalyzerHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: AccessAnalyzerHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: AccessAnalyzerHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./AccessAnalyzerClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
AccessAnalyzerClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -5,7 +5,7 @@ export interface ApplyArchiveRuleCommandInput extends ApplyArchiveRuleRequest {}
|
|
|
5
5
|
export interface ApplyArchiveRuleCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const ApplyArchiveRuleCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: ApplyArchiveRuleCommandInput
|
|
8
|
+
input: ApplyArchiveRuleCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ApplyArchiveRuleCommandInput,
|
|
11
11
|
ApplyArchiveRuleCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const ApplyArchiveRuleCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: ApplyArchiveRuleCommandInput
|
|
17
|
+
input: ApplyArchiveRuleCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
ApplyArchiveRuleCommandInput,
|
|
20
20
|
ApplyArchiveRuleCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CancelPolicyGenerationRequest,
|
|
4
|
-
CancelPolicyGenerationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CancelPolicyGenerationRequest, CancelPolicyGenerationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CancelPolicyGenerationCommandInput
|
|
8
|
-
extends CancelPolicyGenerationRequest {}
|
|
4
|
+
export interface CancelPolicyGenerationCommandInput extends CancelPolicyGenerationRequest {}
|
|
9
5
|
export interface CancelPolicyGenerationCommandOutput
|
|
10
|
-
extends CancelPolicyGenerationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CancelPolicyGenerationResponse, __MetadataBearer {}
|
|
12
7
|
declare const CancelPolicyGenerationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CancelPolicyGenerationCommandInput
|
|
9
|
+
input: CancelPolicyGenerationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CancelPolicyGenerationCommandInput,
|
|
17
12
|
CancelPolicyGenerationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CancelPolicyGenerationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CancelPolicyGenerationCommandInput
|
|
18
|
+
input: CancelPolicyGenerationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CancelPolicyGenerationCommandInput,
|
|
26
21
|
CancelPolicyGenerationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CheckAccessNotGrantedRequest,
|
|
4
|
-
CheckAccessNotGrantedResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CheckAccessNotGrantedRequest, CheckAccessNotGrantedResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CheckAccessNotGrantedCommandInput
|
|
8
|
-
extends CheckAccessNotGrantedRequest {}
|
|
4
|
+
export interface CheckAccessNotGrantedCommandInput extends CheckAccessNotGrantedRequest {}
|
|
9
5
|
export interface CheckAccessNotGrantedCommandOutput
|
|
10
|
-
extends CheckAccessNotGrantedResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CheckAccessNotGrantedResponse, __MetadataBearer {}
|
|
12
7
|
declare const CheckAccessNotGrantedCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CheckAccessNotGrantedCommandInput
|
|
9
|
+
input: CheckAccessNotGrantedCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CheckAccessNotGrantedCommandInput,
|
|
17
12
|
CheckAccessNotGrantedCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CheckAccessNotGrantedCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CheckAccessNotGrantedCommandInput
|
|
18
|
+
input: CheckAccessNotGrantedCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CheckAccessNotGrantedCommandInput,
|
|
26
21
|
CheckAccessNotGrantedCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CheckNoNewAccessRequest,
|
|
4
|
-
CheckNoNewAccessResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CheckNoNewAccessRequest, CheckNoNewAccessResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CheckNoNewAccessCommandInput extends CheckNoNewAccessRequest {}
|
|
8
|
-
export interface CheckNoNewAccessCommandOutput
|
|
9
|
-
extends CheckNoNewAccessResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CheckNoNewAccessCommandOutput extends CheckNoNewAccessResponse, __MetadataBearer {}
|
|
11
6
|
declare const CheckNoNewAccessCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CheckNoNewAccessCommandInput
|
|
8
|
+
input: CheckNoNewAccessCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CheckNoNewAccessCommandInput,
|
|
16
11
|
CheckNoNewAccessCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CheckNoNewAccessCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CheckNoNewAccessCommandInput
|
|
17
|
+
input: CheckNoNewAccessCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CheckNoNewAccessCommandInput,
|
|
25
20
|
CheckNoNewAccessCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CheckNoPublicAccessRequest,
|
|
4
|
-
CheckNoPublicAccessResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CheckNoPublicAccessRequest, CheckNoPublicAccessResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CheckNoPublicAccessCommandInput
|
|
8
|
-
extends CheckNoPublicAccessRequest {}
|
|
4
|
+
export interface CheckNoPublicAccessCommandInput extends CheckNoPublicAccessRequest {}
|
|
9
5
|
export interface CheckNoPublicAccessCommandOutput
|
|
10
|
-
extends CheckNoPublicAccessResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CheckNoPublicAccessResponse, __MetadataBearer {}
|
|
12
7
|
declare const CheckNoPublicAccessCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CheckNoPublicAccessCommandInput
|
|
9
|
+
input: CheckNoPublicAccessCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CheckNoPublicAccessCommandInput,
|
|
17
12
|
CheckNoPublicAccessCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CheckNoPublicAccessCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CheckNoPublicAccessCommandInput
|
|
18
|
+
input: CheckNoPublicAccessCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CheckNoPublicAccessCommandInput,
|
|
26
21
|
CheckNoPublicAccessCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAccessPreviewRequest,
|
|
4
|
-
CreateAccessPreviewResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAccessPreviewRequest, CreateAccessPreviewResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateAccessPreviewCommandInput
|
|
8
|
-
extends CreateAccessPreviewRequest {}
|
|
4
|
+
export interface CreateAccessPreviewCommandInput extends CreateAccessPreviewRequest {}
|
|
9
5
|
export interface CreateAccessPreviewCommandOutput
|
|
10
|
-
extends CreateAccessPreviewResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateAccessPreviewResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateAccessPreviewCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateAccessPreviewCommandInput
|
|
9
|
+
input: CreateAccessPreviewCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateAccessPreviewCommandInput,
|
|
17
12
|
CreateAccessPreviewCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateAccessPreviewCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateAccessPreviewCommandInput
|
|
18
|
+
input: CreateAccessPreviewCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateAccessPreviewCommandInput,
|
|
26
21
|
CreateAccessPreviewCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAnalyzerRequest,
|
|
4
|
-
CreateAnalyzerResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAnalyzerRequest, CreateAnalyzerResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateAnalyzerCommandInput extends CreateAnalyzerRequest {}
|
|
8
|
-
export interface CreateAnalyzerCommandOutput
|
|
9
|
-
extends CreateAnalyzerResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateAnalyzerCommandOutput extends CreateAnalyzerResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateAnalyzerCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateAnalyzerCommandInput
|
|
8
|
+
input: CreateAnalyzerCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateAnalyzerCommandInput,
|
|
16
11
|
CreateAnalyzerCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateAnalyzerCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateAnalyzerCommandInput
|
|
17
|
+
input: CreateAnalyzerCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateAnalyzerCommandInput,
|
|
25
20
|
CreateAnalyzerCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { CreateArchiveRuleRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface CreateArchiveRuleCommandInput
|
|
5
|
-
extends CreateArchiveRuleRequest {}
|
|
4
|
+
export interface CreateArchiveRuleCommandInput extends CreateArchiveRuleRequest {}
|
|
6
5
|
export interface CreateArchiveRuleCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const CreateArchiveRuleCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: CreateArchiveRuleCommandInput
|
|
8
|
+
input: CreateArchiveRuleCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
CreateArchiveRuleCommandInput,
|
|
12
11
|
CreateArchiveRuleCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const CreateArchiveRuleCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: CreateArchiveRuleCommandInput
|
|
17
|
+
input: CreateArchiveRuleCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
CreateArchiveRuleCommandInput,
|
|
21
20
|
CreateArchiveRuleCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateServiceLinkedAnalyzerResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateServiceLinkedAnalyzerCommandInput
|
|
8
|
-
extends CreateServiceLinkedAnalyzerRequest {}
|
|
7
|
+
export interface CreateServiceLinkedAnalyzerCommandInput extends CreateServiceLinkedAnalyzerRequest {}
|
|
9
8
|
export interface CreateServiceLinkedAnalyzerCommandOutput
|
|
10
|
-
extends CreateServiceLinkedAnalyzerResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateServiceLinkedAnalyzerResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateServiceLinkedAnalyzerCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateServiceLinkedAnalyzerCommandInput
|
|
12
|
+
input: CreateServiceLinkedAnalyzerCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateServiceLinkedAnalyzerCommandInput,
|
|
17
15
|
CreateServiceLinkedAnalyzerCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateServiceLinkedAnalyzerCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateServiceLinkedAnalyzerCommandInput
|
|
21
|
+
input: CreateServiceLinkedAnalyzerCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateServiceLinkedAnalyzerCommandInput,
|
|
26
24
|
CreateServiceLinkedAnalyzerCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface DeleteAnalyzerCommandInput extends DeleteAnalyzerRequest {}
|
|
|
5
5
|
export interface DeleteAnalyzerCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const DeleteAnalyzerCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: DeleteAnalyzerCommandInput
|
|
8
|
+
input: DeleteAnalyzerCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
DeleteAnalyzerCommandInput,
|
|
11
11
|
DeleteAnalyzerCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const DeleteAnalyzerCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: DeleteAnalyzerCommandInput
|
|
17
|
+
input: DeleteAnalyzerCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
DeleteAnalyzerCommandInput,
|
|
20
20
|
DeleteAnalyzerCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteArchiveRuleRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteArchiveRuleCommandInput
|
|
5
|
-
extends DeleteArchiveRuleRequest {}
|
|
4
|
+
export interface DeleteArchiveRuleCommandInput extends DeleteArchiveRuleRequest {}
|
|
6
5
|
export interface DeleteArchiveRuleCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const DeleteArchiveRuleCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: DeleteArchiveRuleCommandInput
|
|
8
|
+
input: DeleteArchiveRuleCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
DeleteArchiveRuleCommandInput,
|
|
12
11
|
DeleteArchiveRuleCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const DeleteArchiveRuleCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: DeleteArchiveRuleCommandInput
|
|
17
|
+
input: DeleteArchiveRuleCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
DeleteArchiveRuleCommandInput,
|
|
21
20
|
DeleteArchiveRuleCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteServiceLinkedAnalyzerRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteServiceLinkedAnalyzerCommandInput
|
|
5
|
-
|
|
6
|
-
export interface DeleteServiceLinkedAnalyzerCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface DeleteServiceLinkedAnalyzerCommandInput extends DeleteServiceLinkedAnalyzerRequest {}
|
|
5
|
+
export interface DeleteServiceLinkedAnalyzerCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const DeleteServiceLinkedAnalyzerCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteServiceLinkedAnalyzerCommandInput
|
|
8
|
+
input: DeleteServiceLinkedAnalyzerCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteServiceLinkedAnalyzerCommandInput,
|
|
13
11
|
DeleteServiceLinkedAnalyzerCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteServiceLinkedAnalyzerCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteServiceLinkedAnalyzerCommandInput
|
|
17
|
+
input: DeleteServiceLinkedAnalyzerCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteServiceLinkedAnalyzerCommandInput,
|
|
22
20
|
DeleteServiceLinkedAnalyzerCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { GenerateFindingRecommendationRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface GenerateFindingRecommendationCommandInput
|
|
5
|
-
|
|
6
|
-
export interface GenerateFindingRecommendationCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface GenerateFindingRecommendationCommandInput extends GenerateFindingRecommendationRequest {}
|
|
5
|
+
export interface GenerateFindingRecommendationCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const GenerateFindingRecommendationCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GenerateFindingRecommendationCommandInput
|
|
8
|
+
input: GenerateFindingRecommendationCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GenerateFindingRecommendationCommandInput,
|
|
13
11
|
GenerateFindingRecommendationCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GenerateFindingRecommendationCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GenerateFindingRecommendationCommandInput
|
|
17
|
+
input: GenerateFindingRecommendationCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GenerateFindingRecommendationCommandInput,
|
|
22
20
|
GenerateFindingRecommendationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetAccessPreviewRequest,
|
|
4
|
-
GetAccessPreviewResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetAccessPreviewRequest, GetAccessPreviewResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetAccessPreviewCommandInput extends GetAccessPreviewRequest {}
|
|
8
|
-
export interface GetAccessPreviewCommandOutput
|
|
9
|
-
extends GetAccessPreviewResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetAccessPreviewCommandOutput extends GetAccessPreviewResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetAccessPreviewCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetAccessPreviewCommandInput
|
|
8
|
+
input: GetAccessPreviewCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetAccessPreviewCommandInput,
|
|
16
11
|
GetAccessPreviewCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetAccessPreviewCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetAccessPreviewCommandInput
|
|
17
|
+
input: GetAccessPreviewCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetAccessPreviewCommandInput,
|
|
25
20
|
GetAccessPreviewCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetAnalyzedResourceRequest,
|
|
4
|
-
GetAnalyzedResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetAnalyzedResourceRequest, GetAnalyzedResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetAnalyzedResourceCommandInput
|
|
8
|
-
extends GetAnalyzedResourceRequest {}
|
|
4
|
+
export interface GetAnalyzedResourceCommandInput extends GetAnalyzedResourceRequest {}
|
|
9
5
|
export interface GetAnalyzedResourceCommandOutput
|
|
10
|
-
extends GetAnalyzedResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetAnalyzedResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetAnalyzedResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetAnalyzedResourceCommandInput
|
|
9
|
+
input: GetAnalyzedResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetAnalyzedResourceCommandInput,
|
|
17
12
|
GetAnalyzedResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetAnalyzedResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetAnalyzedResourceCommandInput
|
|
18
|
+
input: GetAnalyzedResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetAnalyzedResourceCommandInput,
|
|
26
21
|
GetAnalyzedResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetAnalyzerRequest, GetAnalyzerResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetAnalyzerCommandInput extends GetAnalyzerRequest {}
|
|
5
|
-
export interface GetAnalyzerCommandOutput
|
|
6
|
-
extends GetAnalyzerResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetAnalyzerCommandOutput extends GetAnalyzerResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetAnalyzerCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetAnalyzerCommandInput
|
|
8
|
+
input: GetAnalyzerCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetAnalyzerCommandInput,
|
|
13
11
|
GetAnalyzerCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetAnalyzerCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetAnalyzerCommandInput
|
|
17
|
+
input: GetAnalyzerCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetAnalyzerCommandInput,
|
|
22
20
|
GetAnalyzerCommandOutput,
|