@aws-sdk/client-ssm-incidents 3.1087.0 → 3.1089.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 (52) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/SSMIncidents.d.ts +104 -109
  3. package/dist-types/ts3.4/SSMIncidentsClient.d.ts +7 -20
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/BatchGetIncidentFindingsCommand.d.ts +5 -10
  8. package/dist-types/ts3.4/commands/CreateReplicationSetCommand.d.ts +5 -10
  9. package/dist-types/ts3.4/commands/CreateResponsePlanCommand.d.ts +5 -10
  10. package/dist-types/ts3.4/commands/CreateTimelineEventCommand.d.ts +5 -10
  11. package/dist-types/ts3.4/commands/DeleteIncidentRecordCommand.d.ts +5 -10
  12. package/dist-types/ts3.4/commands/DeleteReplicationSetCommand.d.ts +5 -10
  13. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +5 -10
  14. package/dist-types/ts3.4/commands/DeleteResponsePlanCommand.d.ts +5 -10
  15. package/dist-types/ts3.4/commands/DeleteTimelineEventCommand.d.ts +5 -10
  16. package/dist-types/ts3.4/commands/GetIncidentRecordCommand.d.ts +4 -9
  17. package/dist-types/ts3.4/commands/GetReplicationSetCommand.d.ts +4 -9
  18. package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +5 -10
  19. package/dist-types/ts3.4/commands/GetResponsePlanCommand.d.ts +4 -9
  20. package/dist-types/ts3.4/commands/GetTimelineEventCommand.d.ts +4 -9
  21. package/dist-types/ts3.4/commands/ListIncidentFindingsCommand.d.ts +5 -10
  22. package/dist-types/ts3.4/commands/ListIncidentRecordsCommand.d.ts +4 -9
  23. package/dist-types/ts3.4/commands/ListRelatedItemsCommand.d.ts +4 -9
  24. package/dist-types/ts3.4/commands/ListReplicationSetsCommand.d.ts +4 -9
  25. package/dist-types/ts3.4/commands/ListResponsePlansCommand.d.ts +3 -8
  26. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  27. package/dist-types/ts3.4/commands/ListTimelineEventsCommand.d.ts +5 -10
  28. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +4 -9
  29. package/dist-types/ts3.4/commands/StartIncidentCommand.d.ts +3 -5
  30. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  31. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  32. package/dist-types/ts3.4/commands/UpdateDeletionProtectionCommand.d.ts +5 -10
  33. package/dist-types/ts3.4/commands/UpdateIncidentRecordCommand.d.ts +5 -10
  34. package/dist-types/ts3.4/commands/UpdateRelatedItemsCommand.d.ts +5 -10
  35. package/dist-types/ts3.4/commands/UpdateReplicationSetCommand.d.ts +5 -10
  36. package/dist-types/ts3.4/commands/UpdateResponsePlanCommand.d.ts +5 -10
  37. package/dist-types/ts3.4/commands/UpdateTimelineEventCommand.d.ts +5 -10
  38. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  39. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  40. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  41. package/dist-types/ts3.4/models/enums.d.ts +4 -8
  42. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  43. package/dist-types/ts3.4/models/models_0.d.ts +1 -3
  44. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  45. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  46. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  47. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  48. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  49. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  50. package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetActive.d.ts +3 -5
  51. package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetDeleted.d.ts +3 -5
  52. package/package.json +38 -38
@@ -7,17 +7,10 @@ import { SSMIncidentsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: SSMIncidentsHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: SSMIncidentsHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): SSMIncidentsHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
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 { SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
15
- export interface SSMIncidentsHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface SSMIncidentsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface SSMIncidentsHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- SSMIncidentsClientResolvedConfig,
22
- HandlerExecutionContext,
23
- SSMIncidentsHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface SSMIncidentsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ SSMIncidentsClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ SSMIncidentsHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultSSMIncidentsHttpAuthSchemeParametersProvider: (
27
25
  config: SSMIncidentsClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<SSMIncidentsHttpAuthSchemeParameters>;
31
- export interface SSMIncidentsHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<SSMIncidentsHttpAuthSchemeParameters> {}
29
+ export interface SSMIncidentsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<SSMIncidentsHttpAuthSchemeParameters> {}
33
30
  export declare const defaultSSMIncidentsHttpAuthSchemeProvider: SSMIncidentsHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: SSMIncidentsHttpAuthSchemeProvider;
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: SSMIncidentsHttpAuthSchemeProvider;
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
  ServiceOutputTypes,
5
5
  SSMIncidentsClientResolvedConfig,
6
6
  } from "./SSMIncidentsClient";
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 (input: I): import("@smithy/core/client").CommandImpl<
19
+ new (
20
+ input: I,
21
+ ): import("@smithy/core/client").CommandImpl<
23
22
  I,
24
23
  O,
25
24
  SSMIncidentsClientResolvedConfig,
@@ -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[];
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- BatchGetIncidentFindingsInput,
4
- BatchGetIncidentFindingsOutput,
5
- } from "../models/models_0";
2
+ import { BatchGetIncidentFindingsInput, BatchGetIncidentFindingsOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface BatchGetIncidentFindingsCommandInput
8
- extends BatchGetIncidentFindingsInput {}
4
+ export interface BatchGetIncidentFindingsCommandInput extends BatchGetIncidentFindingsInput {}
9
5
  export interface BatchGetIncidentFindingsCommandOutput
10
- extends BatchGetIncidentFindingsOutput,
11
- __MetadataBearer {}
6
+ extends BatchGetIncidentFindingsOutput, __MetadataBearer {}
12
7
  declare const BatchGetIncidentFindingsCommand_base: {
13
8
  new (
14
- input: BatchGetIncidentFindingsCommandInput
9
+ input: BatchGetIncidentFindingsCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  BatchGetIncidentFindingsCommandInput,
17
12
  BatchGetIncidentFindingsCommandOutput,
@@ -20,7 +15,7 @@ declare const BatchGetIncidentFindingsCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: BatchGetIncidentFindingsCommandInput
18
+ input: BatchGetIncidentFindingsCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  BatchGetIncidentFindingsCommandInput,
26
21
  BatchGetIncidentFindingsCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateReplicationSetInput,
4
- CreateReplicationSetOutput,
5
- } from "../models/models_0";
2
+ import { CreateReplicationSetInput, CreateReplicationSetOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CreateReplicationSetCommandInput
8
- extends CreateReplicationSetInput {}
4
+ export interface CreateReplicationSetCommandInput extends CreateReplicationSetInput {}
9
5
  export interface CreateReplicationSetCommandOutput
10
- extends CreateReplicationSetOutput,
11
- __MetadataBearer {}
6
+ extends CreateReplicationSetOutput, __MetadataBearer {}
12
7
  declare const CreateReplicationSetCommand_base: {
13
8
  new (
14
- input: CreateReplicationSetCommandInput
9
+ input: CreateReplicationSetCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CreateReplicationSetCommandInput,
17
12
  CreateReplicationSetCommandOutput,
@@ -20,7 +15,7 @@ declare const CreateReplicationSetCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: CreateReplicationSetCommandInput
18
+ input: CreateReplicationSetCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  CreateReplicationSetCommandInput,
26
21
  CreateReplicationSetCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateResponsePlanInput,
4
- CreateResponsePlanOutput,
5
- } from "../models/models_0";
2
+ import { CreateResponsePlanInput, CreateResponsePlanOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CreateResponsePlanCommandInput
8
- extends CreateResponsePlanInput {}
4
+ export interface CreateResponsePlanCommandInput extends CreateResponsePlanInput {}
9
5
  export interface CreateResponsePlanCommandOutput
10
- extends CreateResponsePlanOutput,
11
- __MetadataBearer {}
6
+ extends CreateResponsePlanOutput, __MetadataBearer {}
12
7
  declare const CreateResponsePlanCommand_base: {
13
8
  new (
14
- input: CreateResponsePlanCommandInput
9
+ input: CreateResponsePlanCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CreateResponsePlanCommandInput,
17
12
  CreateResponsePlanCommandOutput,
@@ -20,7 +15,7 @@ declare const CreateResponsePlanCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: CreateResponsePlanCommandInput
18
+ input: CreateResponsePlanCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  CreateResponsePlanCommandInput,
26
21
  CreateResponsePlanCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateTimelineEventInput,
4
- CreateTimelineEventOutput,
5
- } from "../models/models_0";
2
+ import { CreateTimelineEventInput, CreateTimelineEventOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CreateTimelineEventCommandInput
8
- extends CreateTimelineEventInput {}
4
+ export interface CreateTimelineEventCommandInput extends CreateTimelineEventInput {}
9
5
  export interface CreateTimelineEventCommandOutput
10
- extends CreateTimelineEventOutput,
11
- __MetadataBearer {}
6
+ extends CreateTimelineEventOutput, __MetadataBearer {}
12
7
  declare const CreateTimelineEventCommand_base: {
13
8
  new (
14
- input: CreateTimelineEventCommandInput
9
+ input: CreateTimelineEventCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CreateTimelineEventCommandInput,
17
12
  CreateTimelineEventCommandOutput,
@@ -20,7 +15,7 @@ declare const CreateTimelineEventCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: CreateTimelineEventCommandInput
18
+ input: CreateTimelineEventCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  CreateTimelineEventCommandInput,
26
21
  CreateTimelineEventCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteIncidentRecordInput,
4
- DeleteIncidentRecordOutput,
5
- } from "../models/models_0";
2
+ import { DeleteIncidentRecordInput, DeleteIncidentRecordOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DeleteIncidentRecordCommandInput
8
- extends DeleteIncidentRecordInput {}
4
+ export interface DeleteIncidentRecordCommandInput extends DeleteIncidentRecordInput {}
9
5
  export interface DeleteIncidentRecordCommandOutput
10
- extends DeleteIncidentRecordOutput,
11
- __MetadataBearer {}
6
+ extends DeleteIncidentRecordOutput, __MetadataBearer {}
12
7
  declare const DeleteIncidentRecordCommand_base: {
13
8
  new (
14
- input: DeleteIncidentRecordCommandInput
9
+ input: DeleteIncidentRecordCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DeleteIncidentRecordCommandInput,
17
12
  DeleteIncidentRecordCommandOutput,
@@ -20,7 +15,7 @@ declare const DeleteIncidentRecordCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: DeleteIncidentRecordCommandInput
18
+ input: DeleteIncidentRecordCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  DeleteIncidentRecordCommandInput,
26
21
  DeleteIncidentRecordCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteReplicationSetInput,
4
- DeleteReplicationSetOutput,
5
- } from "../models/models_0";
2
+ import { DeleteReplicationSetInput, DeleteReplicationSetOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DeleteReplicationSetCommandInput
8
- extends DeleteReplicationSetInput {}
4
+ export interface DeleteReplicationSetCommandInput extends DeleteReplicationSetInput {}
9
5
  export interface DeleteReplicationSetCommandOutput
10
- extends DeleteReplicationSetOutput,
11
- __MetadataBearer {}
6
+ extends DeleteReplicationSetOutput, __MetadataBearer {}
12
7
  declare const DeleteReplicationSetCommand_base: {
13
8
  new (
14
- input: DeleteReplicationSetCommandInput
9
+ input: DeleteReplicationSetCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DeleteReplicationSetCommandInput,
17
12
  DeleteReplicationSetCommandOutput,
@@ -20,7 +15,7 @@ declare const DeleteReplicationSetCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: DeleteReplicationSetCommandInput
18
+ input: DeleteReplicationSetCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  DeleteReplicationSetCommandInput,
26
21
  DeleteReplicationSetCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteResourcePolicyInput,
4
- DeleteResourcePolicyOutput,
5
- } from "../models/models_0";
2
+ import { DeleteResourcePolicyInput, DeleteResourcePolicyOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DeleteResourcePolicyCommandInput
8
- extends DeleteResourcePolicyInput {}
4
+ export interface DeleteResourcePolicyCommandInput extends DeleteResourcePolicyInput {}
9
5
  export interface DeleteResourcePolicyCommandOutput
10
- extends DeleteResourcePolicyOutput,
11
- __MetadataBearer {}
6
+ extends DeleteResourcePolicyOutput, __MetadataBearer {}
12
7
  declare const DeleteResourcePolicyCommand_base: {
13
8
  new (
14
- input: DeleteResourcePolicyCommandInput
9
+ input: DeleteResourcePolicyCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DeleteResourcePolicyCommandInput,
17
12
  DeleteResourcePolicyCommandOutput,
@@ -20,7 +15,7 @@ declare const DeleteResourcePolicyCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: DeleteResourcePolicyCommandInput
18
+ input: DeleteResourcePolicyCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  DeleteResourcePolicyCommandInput,
26
21
  DeleteResourcePolicyCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteResponsePlanInput,
4
- DeleteResponsePlanOutput,
5
- } from "../models/models_0";
2
+ import { DeleteResponsePlanInput, DeleteResponsePlanOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DeleteResponsePlanCommandInput
8
- extends DeleteResponsePlanInput {}
4
+ export interface DeleteResponsePlanCommandInput extends DeleteResponsePlanInput {}
9
5
  export interface DeleteResponsePlanCommandOutput
10
- extends DeleteResponsePlanOutput,
11
- __MetadataBearer {}
6
+ extends DeleteResponsePlanOutput, __MetadataBearer {}
12
7
  declare const DeleteResponsePlanCommand_base: {
13
8
  new (
14
- input: DeleteResponsePlanCommandInput
9
+ input: DeleteResponsePlanCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DeleteResponsePlanCommandInput,
17
12
  DeleteResponsePlanCommandOutput,
@@ -20,7 +15,7 @@ declare const DeleteResponsePlanCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: DeleteResponsePlanCommandInput
18
+ input: DeleteResponsePlanCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  DeleteResponsePlanCommandInput,
26
21
  DeleteResponsePlanCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteTimelineEventInput,
4
- DeleteTimelineEventOutput,
5
- } from "../models/models_0";
2
+ import { DeleteTimelineEventInput, DeleteTimelineEventOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DeleteTimelineEventCommandInput
8
- extends DeleteTimelineEventInput {}
4
+ export interface DeleteTimelineEventCommandInput extends DeleteTimelineEventInput {}
9
5
  export interface DeleteTimelineEventCommandOutput
10
- extends DeleteTimelineEventOutput,
11
- __MetadataBearer {}
6
+ extends DeleteTimelineEventOutput, __MetadataBearer {}
12
7
  declare const DeleteTimelineEventCommand_base: {
13
8
  new (
14
- input: DeleteTimelineEventCommandInput
9
+ input: DeleteTimelineEventCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DeleteTimelineEventCommandInput,
17
12
  DeleteTimelineEventCommandOutput,
@@ -20,7 +15,7 @@ declare const DeleteTimelineEventCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: DeleteTimelineEventCommandInput
18
+ input: DeleteTimelineEventCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  DeleteTimelineEventCommandInput,
26
21
  DeleteTimelineEventCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetIncidentRecordInput,
4
- GetIncidentRecordOutput,
5
- } from "../models/models_0";
2
+ import { GetIncidentRecordInput, GetIncidentRecordOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface GetIncidentRecordCommandInput extends GetIncidentRecordInput {}
8
- export interface GetIncidentRecordCommandOutput
9
- extends GetIncidentRecordOutput,
10
- __MetadataBearer {}
5
+ export interface GetIncidentRecordCommandOutput extends GetIncidentRecordOutput, __MetadataBearer {}
11
6
  declare const GetIncidentRecordCommand_base: {
12
7
  new (
13
- input: GetIncidentRecordCommandInput
8
+ input: GetIncidentRecordCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  GetIncidentRecordCommandInput,
16
11
  GetIncidentRecordCommandOutput,
@@ -19,7 +14,7 @@ declare const GetIncidentRecordCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: GetIncidentRecordCommandInput
17
+ input: GetIncidentRecordCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  GetIncidentRecordCommandInput,
25
20
  GetIncidentRecordCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetReplicationSetInput,
4
- GetReplicationSetOutput,
5
- } from "../models/models_0";
2
+ import { GetReplicationSetInput, GetReplicationSetOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface GetReplicationSetCommandInput extends GetReplicationSetInput {}
8
- export interface GetReplicationSetCommandOutput
9
- extends GetReplicationSetOutput,
10
- __MetadataBearer {}
5
+ export interface GetReplicationSetCommandOutput extends GetReplicationSetOutput, __MetadataBearer {}
11
6
  declare const GetReplicationSetCommand_base: {
12
7
  new (
13
- input: GetReplicationSetCommandInput
8
+ input: GetReplicationSetCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  GetReplicationSetCommandInput,
16
11
  GetReplicationSetCommandOutput,
@@ -19,7 +14,7 @@ declare const GetReplicationSetCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: GetReplicationSetCommandInput
17
+ input: GetReplicationSetCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  GetReplicationSetCommandInput,
25
20
  GetReplicationSetCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetResourcePoliciesInput,
4
- GetResourcePoliciesOutput,
5
- } from "../models/models_0";
2
+ import { GetResourcePoliciesInput, GetResourcePoliciesOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface GetResourcePoliciesCommandInput
8
- extends GetResourcePoliciesInput {}
4
+ export interface GetResourcePoliciesCommandInput extends GetResourcePoliciesInput {}
9
5
  export interface GetResourcePoliciesCommandOutput
10
- extends GetResourcePoliciesOutput,
11
- __MetadataBearer {}
6
+ extends GetResourcePoliciesOutput, __MetadataBearer {}
12
7
  declare const GetResourcePoliciesCommand_base: {
13
8
  new (
14
- input: GetResourcePoliciesCommandInput
9
+ input: GetResourcePoliciesCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  GetResourcePoliciesCommandInput,
17
12
  GetResourcePoliciesCommandOutput,
@@ -20,7 +15,7 @@ declare const GetResourcePoliciesCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: GetResourcePoliciesCommandInput
18
+ input: GetResourcePoliciesCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  GetResourcePoliciesCommandInput,
26
21
  GetResourcePoliciesCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetResponsePlanInput,
4
- GetResponsePlanOutput,
5
- } from "../models/models_0";
2
+ import { GetResponsePlanInput, GetResponsePlanOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface GetResponsePlanCommandInput extends GetResponsePlanInput {}
8
- export interface GetResponsePlanCommandOutput
9
- extends GetResponsePlanOutput,
10
- __MetadataBearer {}
5
+ export interface GetResponsePlanCommandOutput extends GetResponsePlanOutput, __MetadataBearer {}
11
6
  declare const GetResponsePlanCommand_base: {
12
7
  new (
13
- input: GetResponsePlanCommandInput
8
+ input: GetResponsePlanCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  GetResponsePlanCommandInput,
16
11
  GetResponsePlanCommandOutput,
@@ -19,7 +14,7 @@ declare const GetResponsePlanCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: GetResponsePlanCommandInput
17
+ input: GetResponsePlanCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  GetResponsePlanCommandInput,
25
20
  GetResponsePlanCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetTimelineEventInput,
4
- GetTimelineEventOutput,
5
- } from "../models/models_0";
2
+ import { GetTimelineEventInput, GetTimelineEventOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface GetTimelineEventCommandInput extends GetTimelineEventInput {}
8
- export interface GetTimelineEventCommandOutput
9
- extends GetTimelineEventOutput,
10
- __MetadataBearer {}
5
+ export interface GetTimelineEventCommandOutput extends GetTimelineEventOutput, __MetadataBearer {}
11
6
  declare const GetTimelineEventCommand_base: {
12
7
  new (
13
- input: GetTimelineEventCommandInput
8
+ input: GetTimelineEventCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  GetTimelineEventCommandInput,
16
11
  GetTimelineEventCommandOutput,
@@ -19,7 +14,7 @@ declare const GetTimelineEventCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: GetTimelineEventCommandInput
17
+ input: GetTimelineEventCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  GetTimelineEventCommandInput,
25
20
  GetTimelineEventCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListIncidentFindingsInput,
4
- ListIncidentFindingsOutput,
5
- } from "../models/models_0";
2
+ import { ListIncidentFindingsInput, ListIncidentFindingsOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface ListIncidentFindingsCommandInput
8
- extends ListIncidentFindingsInput {}
4
+ export interface ListIncidentFindingsCommandInput extends ListIncidentFindingsInput {}
9
5
  export interface ListIncidentFindingsCommandOutput
10
- extends ListIncidentFindingsOutput,
11
- __MetadataBearer {}
6
+ extends ListIncidentFindingsOutput, __MetadataBearer {}
12
7
  declare const ListIncidentFindingsCommand_base: {
13
8
  new (
14
- input: ListIncidentFindingsCommandInput
9
+ input: ListIncidentFindingsCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  ListIncidentFindingsCommandInput,
17
12
  ListIncidentFindingsCommandOutput,
@@ -20,7 +15,7 @@ declare const ListIncidentFindingsCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: ListIncidentFindingsCommandInput
18
+ input: ListIncidentFindingsCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  ListIncidentFindingsCommandInput,
26
21
  ListIncidentFindingsCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListIncidentRecordsInput,
4
- ListIncidentRecordsOutput,
5
- } from "../models/models_0";
2
+ import { ListIncidentRecordsInput, ListIncidentRecordsOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface ListIncidentRecordsCommandInput
8
- extends ListIncidentRecordsInput {}
4
+ export interface ListIncidentRecordsCommandInput extends ListIncidentRecordsInput {}
9
5
  export interface ListIncidentRecordsCommandOutput
10
- extends ListIncidentRecordsOutput,
11
- __MetadataBearer {}
6
+ extends ListIncidentRecordsOutput, __MetadataBearer {}
12
7
  declare const ListIncidentRecordsCommand_base: {
13
8
  new (
14
- input: ListIncidentRecordsCommandInput
9
+ input: ListIncidentRecordsCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  ListIncidentRecordsCommandInput,
17
12
  ListIncidentRecordsCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListRelatedItemsInput,
4
- ListRelatedItemsOutput,
5
- } from "../models/models_0";
2
+ import { ListRelatedItemsInput, ListRelatedItemsOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface ListRelatedItemsCommandInput extends ListRelatedItemsInput {}
8
- export interface ListRelatedItemsCommandOutput
9
- extends ListRelatedItemsOutput,
10
- __MetadataBearer {}
5
+ export interface ListRelatedItemsCommandOutput extends ListRelatedItemsOutput, __MetadataBearer {}
11
6
  declare const ListRelatedItemsCommand_base: {
12
7
  new (
13
- input: ListRelatedItemsCommandInput
8
+ input: ListRelatedItemsCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  ListRelatedItemsCommandInput,
16
11
  ListRelatedItemsCommandOutput,
@@ -19,7 +14,7 @@ declare const ListRelatedItemsCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: ListRelatedItemsCommandInput
17
+ input: ListRelatedItemsCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  ListRelatedItemsCommandInput,
25
20
  ListRelatedItemsCommandOutput,