@aws-sdk/client-scheduler 3.208.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 (127) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +209 -0
  3. package/dist-cjs/Scheduler.js +187 -0
  4. package/dist-cjs/SchedulerClient.js +40 -0
  5. package/dist-cjs/commands/CreateScheduleCommand.js +46 -0
  6. package/dist-cjs/commands/CreateScheduleGroupCommand.js +46 -0
  7. package/dist-cjs/commands/DeleteScheduleCommand.js +46 -0
  8. package/dist-cjs/commands/DeleteScheduleGroupCommand.js +46 -0
  9. package/dist-cjs/commands/GetScheduleCommand.js +46 -0
  10. package/dist-cjs/commands/GetScheduleGroupCommand.js +46 -0
  11. package/dist-cjs/commands/ListScheduleGroupsCommand.js +46 -0
  12. package/dist-cjs/commands/ListSchedulesCommand.js +46 -0
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  14. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  15. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  16. package/dist-cjs/commands/UpdateScheduleCommand.js +46 -0
  17. package/dist-cjs/commands/index.js +15 -0
  18. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  19. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  20. package/dist-cjs/endpoint/ruleset.js +312 -0
  21. package/dist-cjs/index.js +11 -0
  22. package/dist-cjs/models/SchedulerServiceException.js +11 -0
  23. package/dist-cjs/models/index.js +4 -0
  24. package/dist-cjs/models/models_0.js +302 -0
  25. package/dist-cjs/pagination/Interfaces.js +2 -0
  26. package/dist-cjs/pagination/ListScheduleGroupsPaginator.js +36 -0
  27. package/dist-cjs/pagination/ListSchedulesPaginator.js +36 -0
  28. package/dist-cjs/pagination/index.js +6 -0
  29. package/dist-cjs/protocols/Aws_restJson1.js +1494 -0
  30. package/dist-cjs/runtimeConfig.browser.js +42 -0
  31. package/dist-cjs/runtimeConfig.js +50 -0
  32. package/dist-cjs/runtimeConfig.native.js +15 -0
  33. package/dist-cjs/runtimeConfig.shared.js +17 -0
  34. package/dist-es/Scheduler.js +183 -0
  35. package/dist-es/SchedulerClient.js +36 -0
  36. package/dist-es/commands/CreateScheduleCommand.js +42 -0
  37. package/dist-es/commands/CreateScheduleGroupCommand.js +42 -0
  38. package/dist-es/commands/DeleteScheduleCommand.js +42 -0
  39. package/dist-es/commands/DeleteScheduleGroupCommand.js +42 -0
  40. package/dist-es/commands/GetScheduleCommand.js +42 -0
  41. package/dist-es/commands/GetScheduleGroupCommand.js +42 -0
  42. package/dist-es/commands/ListScheduleGroupsCommand.js +42 -0
  43. package/dist-es/commands/ListSchedulesCommand.js +42 -0
  44. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  45. package/dist-es/commands/TagResourceCommand.js +42 -0
  46. package/dist-es/commands/UntagResourceCommand.js +42 -0
  47. package/dist-es/commands/UpdateScheduleCommand.js +42 -0
  48. package/dist-es/commands/index.js +12 -0
  49. package/dist-es/endpoint/EndpointParameters.js +8 -0
  50. package/dist-es/endpoint/endpointResolver.js +8 -0
  51. package/dist-es/endpoint/ruleset.js +309 -0
  52. package/dist-es/index.js +6 -0
  53. package/dist-es/models/SchedulerServiceException.js +7 -0
  54. package/dist-es/models/index.js +1 -0
  55. package/dist-es/models/models_0.js +249 -0
  56. package/dist-es/pagination/Interfaces.js +1 -0
  57. package/dist-es/pagination/ListScheduleGroupsPaginator.js +32 -0
  58. package/dist-es/pagination/ListSchedulesPaginator.js +32 -0
  59. package/dist-es/pagination/index.js +3 -0
  60. package/dist-es/protocols/Aws_restJson1.js +1467 -0
  61. package/dist-es/runtimeConfig.browser.js +37 -0
  62. package/dist-es/runtimeConfig.js +45 -0
  63. package/dist-es/runtimeConfig.native.js +11 -0
  64. package/dist-es/runtimeConfig.shared.js +13 -0
  65. package/dist-types/Scheduler.d.ts +111 -0
  66. package/dist-types/SchedulerClient.d.ts +157 -0
  67. package/dist-types/commands/CreateScheduleCommand.d.ts +37 -0
  68. package/dist-types/commands/CreateScheduleGroupCommand.d.ts +37 -0
  69. package/dist-types/commands/DeleteScheduleCommand.d.ts +37 -0
  70. package/dist-types/commands/DeleteScheduleGroupCommand.d.ts +45 -0
  71. package/dist-types/commands/GetScheduleCommand.d.ts +37 -0
  72. package/dist-types/commands/GetScheduleGroupCommand.d.ts +37 -0
  73. package/dist-types/commands/ListScheduleGroupsCommand.d.ts +37 -0
  74. package/dist-types/commands/ListSchedulesCommand.d.ts +37 -0
  75. package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
  76. package/dist-types/commands/TagResourceCommand.d.ts +37 -0
  77. package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
  78. package/dist-types/commands/UpdateScheduleCommand.d.ts +45 -0
  79. package/dist-types/commands/index.d.ts +12 -0
  80. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  81. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  82. package/dist-types/endpoint/ruleset.d.ts +2 -0
  83. package/dist-types/index.d.ts +6 -0
  84. package/dist-types/models/SchedulerServiceException.d.ts +10 -0
  85. package/dist-types/models/index.d.ts +1 -0
  86. package/dist-types/models/models_0.d.ts +1148 -0
  87. package/dist-types/pagination/Interfaces.d.ts +6 -0
  88. package/dist-types/pagination/ListScheduleGroupsPaginator.d.ts +4 -0
  89. package/dist-types/pagination/ListSchedulesPaginator.d.ts +4 -0
  90. package/dist-types/pagination/index.d.ts +3 -0
  91. package/dist-types/protocols/Aws_restJson1.d.ts +38 -0
  92. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  93. package/dist-types/runtimeConfig.d.ts +42 -0
  94. package/dist-types/runtimeConfig.native.d.ts +41 -0
  95. package/dist-types/runtimeConfig.shared.d.ts +17 -0
  96. package/dist-types/ts3.4/Scheduler.d.ts +208 -0
  97. package/dist-types/ts3.4/SchedulerClient.d.ts +183 -0
  98. package/dist-types/ts3.4/commands/CreateScheduleCommand.d.ts +34 -0
  99. package/dist-types/ts3.4/commands/CreateScheduleGroupCommand.d.ts +38 -0
  100. package/dist-types/ts3.4/commands/DeleteScheduleCommand.d.ts +34 -0
  101. package/dist-types/ts3.4/commands/DeleteScheduleGroupCommand.d.ts +38 -0
  102. package/dist-types/ts3.4/commands/GetScheduleCommand.d.ts +34 -0
  103. package/dist-types/ts3.4/commands/GetScheduleGroupCommand.d.ts +37 -0
  104. package/dist-types/ts3.4/commands/ListScheduleGroupsCommand.d.ts +38 -0
  105. package/dist-types/ts3.4/commands/ListSchedulesCommand.d.ts +34 -0
  106. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
  107. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  108. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
  109. package/dist-types/ts3.4/commands/UpdateScheduleCommand.d.ts +34 -0
  110. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  111. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  112. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  113. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  114. package/dist-types/ts3.4/index.d.ts +6 -0
  115. package/dist-types/ts3.4/models/SchedulerServiceException.d.ts +7 -0
  116. package/dist-types/ts3.4/models/index.d.ts +1 -0
  117. package/dist-types/ts3.4/models/models_0.d.ts +423 -0
  118. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
  119. package/dist-types/ts3.4/pagination/ListScheduleGroupsPaginator.d.ts +11 -0
  120. package/dist-types/ts3.4/pagination/ListSchedulesPaginator.d.ts +11 -0
  121. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  122. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
  123. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +86 -0
  124. package/dist-types/ts3.4/runtimeConfig.d.ts +86 -0
  125. package/dist-types/ts3.4/runtimeConfig.native.d.ts +75 -0
  126. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +17 -0
  127. package/package.json +105 -0
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Scheduler } from "../Scheduler";
3
+ import { SchedulerClient } from "../SchedulerClient";
4
+ export interface SchedulerPaginationConfiguration extends PaginationConfiguration {
5
+ client: Scheduler | SchedulerClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListScheduleGroupsCommandInput, ListScheduleGroupsCommandOutput } from "../commands/ListScheduleGroupsCommand";
3
+ import { SchedulerPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListScheduleGroups(config: SchedulerPaginationConfiguration, input: ListScheduleGroupsCommandInput, ...additionalArguments: any): Paginator<ListScheduleGroupsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListSchedulesCommandInput, ListSchedulesCommandOutput } from "../commands/ListSchedulesCommand";
3
+ import { SchedulerPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListSchedules(config: SchedulerPaginationConfiguration, input: ListSchedulesCommandInput, ...additionalArguments: any): Paginator<ListSchedulesCommandOutput>;
@@ -0,0 +1,3 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListScheduleGroupsPaginator";
3
+ export * from "./ListSchedulesPaginator";
@@ -0,0 +1,38 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CreateScheduleCommandInput, CreateScheduleCommandOutput } from "../commands/CreateScheduleCommand";
4
+ import { CreateScheduleGroupCommandInput, CreateScheduleGroupCommandOutput } from "../commands/CreateScheduleGroupCommand";
5
+ import { DeleteScheduleCommandInput, DeleteScheduleCommandOutput } from "../commands/DeleteScheduleCommand";
6
+ import { DeleteScheduleGroupCommandInput, DeleteScheduleGroupCommandOutput } from "../commands/DeleteScheduleGroupCommand";
7
+ import { GetScheduleCommandInput, GetScheduleCommandOutput } from "../commands/GetScheduleCommand";
8
+ import { GetScheduleGroupCommandInput, GetScheduleGroupCommandOutput } from "../commands/GetScheduleGroupCommand";
9
+ import { ListScheduleGroupsCommandInput, ListScheduleGroupsCommandOutput } from "../commands/ListScheduleGroupsCommand";
10
+ import { ListSchedulesCommandInput, ListSchedulesCommandOutput } from "../commands/ListSchedulesCommand";
11
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
12
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
13
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
14
+ import { UpdateScheduleCommandInput, UpdateScheduleCommandOutput } from "../commands/UpdateScheduleCommand";
15
+ export declare const serializeAws_restJson1CreateScheduleCommand: (input: CreateScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
16
+ export declare const serializeAws_restJson1CreateScheduleGroupCommand: (input: CreateScheduleGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
+ export declare const serializeAws_restJson1DeleteScheduleCommand: (input: DeleteScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ export declare const serializeAws_restJson1DeleteScheduleGroupCommand: (input: DeleteScheduleGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const serializeAws_restJson1GetScheduleCommand: (input: GetScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ export declare const serializeAws_restJson1GetScheduleGroupCommand: (input: GetScheduleGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_restJson1ListScheduleGroupsCommand: (input: ListScheduleGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ export declare const serializeAws_restJson1ListSchedulesCommand: (input: ListSchedulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1UpdateScheduleCommand: (input: UpdateScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ export declare const deserializeAws_restJson1CreateScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateScheduleCommandOutput>;
28
+ export declare const deserializeAws_restJson1CreateScheduleGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateScheduleGroupCommandOutput>;
29
+ export declare const deserializeAws_restJson1DeleteScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteScheduleCommandOutput>;
30
+ export declare const deserializeAws_restJson1DeleteScheduleGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteScheduleGroupCommandOutput>;
31
+ export declare const deserializeAws_restJson1GetScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetScheduleCommandOutput>;
32
+ export declare const deserializeAws_restJson1GetScheduleGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetScheduleGroupCommandOutput>;
33
+ export declare const deserializeAws_restJson1ListScheduleGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListScheduleGroupsCommandOutput>;
34
+ export declare const deserializeAws_restJson1ListSchedulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSchedulesCommandOutput>;
35
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
36
+ export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
37
+ export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
38
+ export declare const deserializeAws_restJson1UpdateScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateScheduleCommandOutput>;
@@ -0,0 +1,42 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { SchedulerClientConfig } from "./SchedulerClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
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
+ base64Decoder: import("@aws-sdk/types").Decoder;
25
+ base64Encoder: import("@aws-sdk/types").Encoder;
26
+ disableHostPrefix: boolean;
27
+ logger: import("@aws-sdk/types").Logger;
28
+ serviceId: string;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
33
+ tls?: boolean | undefined;
34
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
36
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
+ signingEscapePath?: boolean | undefined;
38
+ systemClockOffset?: number | undefined;
39
+ signingRegion?: string | undefined;
40
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
41
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
42
+ };
@@ -0,0 +1,42 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { SchedulerClientConfig } from "./SchedulerClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
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
+ base64Decoder: import("@aws-sdk/types").Decoder;
25
+ base64Encoder: import("@aws-sdk/types").Encoder;
26
+ disableHostPrefix: boolean;
27
+ logger: import("@aws-sdk/types").Logger;
28
+ serviceId: string;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
33
+ tls?: boolean | undefined;
34
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
36
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
+ signingEscapePath?: boolean | undefined;
38
+ systemClockOffset?: number | undefined;
39
+ signingRegion?: string | undefined;
40
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
41
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
42
+ };
@@ -0,0 +1,41 @@
1
+ import { SchedulerClientConfig } from "./SchedulerClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@aws-sdk/types").HashConstructor;
8
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ streamCollector: import("@aws-sdk/types").StreamCollector;
13
+ base64Decoder: import("@aws-sdk/types").Decoder;
14
+ base64Encoder: import("@aws-sdk/types").Encoder;
15
+ utf8Decoder: import("@aws-sdk/types").Decoder;
16
+ utf8Encoder: import("@aws-sdk/types").Encoder;
17
+ disableHostPrefix: boolean;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
20
+ logger: import("@aws-sdk/types").Logger;
21
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
23
+ serviceId: string;
24
+ region: string | import("@aws-sdk/types").Provider<any>;
25
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
27
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
29
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
30
+ logger?: import("@aws-sdk/types").Logger | undefined;
31
+ }) => import("@aws-sdk/types").EndpointV2;
32
+ tls?: boolean | undefined;
33
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
34
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
35
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
36
+ signingEscapePath?: boolean | undefined;
37
+ systemClockOffset?: number | undefined;
38
+ signingRegion?: string | undefined;
39
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
40
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
41
+ };
@@ -0,0 +1,17 @@
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { SchedulerClientConfig } from "./SchedulerClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SchedulerClientConfig) => {
7
+ apiVersion: string;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ disableHostPrefix: boolean;
11
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
12
+ logger?: __Logger | undefined;
13
+ }) => import("@aws-sdk/types").EndpointV2;
14
+ logger: __Logger;
15
+ serviceId: string;
16
+ urlParser: import("@aws-sdk/types").UrlParser;
17
+ };
@@ -0,0 +1,208 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ CreateScheduleCommandInput,
4
+ CreateScheduleCommandOutput,
5
+ } from "./commands/CreateScheduleCommand";
6
+ import {
7
+ CreateScheduleGroupCommandInput,
8
+ CreateScheduleGroupCommandOutput,
9
+ } from "./commands/CreateScheduleGroupCommand";
10
+ import {
11
+ DeleteScheduleCommandInput,
12
+ DeleteScheduleCommandOutput,
13
+ } from "./commands/DeleteScheduleCommand";
14
+ import {
15
+ DeleteScheduleGroupCommandInput,
16
+ DeleteScheduleGroupCommandOutput,
17
+ } from "./commands/DeleteScheduleGroupCommand";
18
+ import {
19
+ GetScheduleCommandInput,
20
+ GetScheduleCommandOutput,
21
+ } from "./commands/GetScheduleCommand";
22
+ import {
23
+ GetScheduleGroupCommandInput,
24
+ GetScheduleGroupCommandOutput,
25
+ } from "./commands/GetScheduleGroupCommand";
26
+ import {
27
+ ListScheduleGroupsCommandInput,
28
+ ListScheduleGroupsCommandOutput,
29
+ } from "./commands/ListScheduleGroupsCommand";
30
+ import {
31
+ ListSchedulesCommandInput,
32
+ ListSchedulesCommandOutput,
33
+ } from "./commands/ListSchedulesCommand";
34
+ import {
35
+ ListTagsForResourceCommandInput,
36
+ ListTagsForResourceCommandOutput,
37
+ } from "./commands/ListTagsForResourceCommand";
38
+ import {
39
+ TagResourceCommandInput,
40
+ TagResourceCommandOutput,
41
+ } from "./commands/TagResourceCommand";
42
+ import {
43
+ UntagResourceCommandInput,
44
+ UntagResourceCommandOutput,
45
+ } from "./commands/UntagResourceCommand";
46
+ import {
47
+ UpdateScheduleCommandInput,
48
+ UpdateScheduleCommandOutput,
49
+ } from "./commands/UpdateScheduleCommand";
50
+ import { SchedulerClient } from "./SchedulerClient";
51
+ export declare class Scheduler extends SchedulerClient {
52
+ createSchedule(
53
+ args: CreateScheduleCommandInput,
54
+ options?: __HttpHandlerOptions
55
+ ): Promise<CreateScheduleCommandOutput>;
56
+ createSchedule(
57
+ args: CreateScheduleCommandInput,
58
+ cb: (err: any, data?: CreateScheduleCommandOutput) => void
59
+ ): void;
60
+ createSchedule(
61
+ args: CreateScheduleCommandInput,
62
+ options: __HttpHandlerOptions,
63
+ cb: (err: any, data?: CreateScheduleCommandOutput) => void
64
+ ): void;
65
+ createScheduleGroup(
66
+ args: CreateScheduleGroupCommandInput,
67
+ options?: __HttpHandlerOptions
68
+ ): Promise<CreateScheduleGroupCommandOutput>;
69
+ createScheduleGroup(
70
+ args: CreateScheduleGroupCommandInput,
71
+ cb: (err: any, data?: CreateScheduleGroupCommandOutput) => void
72
+ ): void;
73
+ createScheduleGroup(
74
+ args: CreateScheduleGroupCommandInput,
75
+ options: __HttpHandlerOptions,
76
+ cb: (err: any, data?: CreateScheduleGroupCommandOutput) => void
77
+ ): void;
78
+ deleteSchedule(
79
+ args: DeleteScheduleCommandInput,
80
+ options?: __HttpHandlerOptions
81
+ ): Promise<DeleteScheduleCommandOutput>;
82
+ deleteSchedule(
83
+ args: DeleteScheduleCommandInput,
84
+ cb: (err: any, data?: DeleteScheduleCommandOutput) => void
85
+ ): void;
86
+ deleteSchedule(
87
+ args: DeleteScheduleCommandInput,
88
+ options: __HttpHandlerOptions,
89
+ cb: (err: any, data?: DeleteScheduleCommandOutput) => void
90
+ ): void;
91
+ deleteScheduleGroup(
92
+ args: DeleteScheduleGroupCommandInput,
93
+ options?: __HttpHandlerOptions
94
+ ): Promise<DeleteScheduleGroupCommandOutput>;
95
+ deleteScheduleGroup(
96
+ args: DeleteScheduleGroupCommandInput,
97
+ cb: (err: any, data?: DeleteScheduleGroupCommandOutput) => void
98
+ ): void;
99
+ deleteScheduleGroup(
100
+ args: DeleteScheduleGroupCommandInput,
101
+ options: __HttpHandlerOptions,
102
+ cb: (err: any, data?: DeleteScheduleGroupCommandOutput) => void
103
+ ): void;
104
+ getSchedule(
105
+ args: GetScheduleCommandInput,
106
+ options?: __HttpHandlerOptions
107
+ ): Promise<GetScheduleCommandOutput>;
108
+ getSchedule(
109
+ args: GetScheduleCommandInput,
110
+ cb: (err: any, data?: GetScheduleCommandOutput) => void
111
+ ): void;
112
+ getSchedule(
113
+ args: GetScheduleCommandInput,
114
+ options: __HttpHandlerOptions,
115
+ cb: (err: any, data?: GetScheduleCommandOutput) => void
116
+ ): void;
117
+ getScheduleGroup(
118
+ args: GetScheduleGroupCommandInput,
119
+ options?: __HttpHandlerOptions
120
+ ): Promise<GetScheduleGroupCommandOutput>;
121
+ getScheduleGroup(
122
+ args: GetScheduleGroupCommandInput,
123
+ cb: (err: any, data?: GetScheduleGroupCommandOutput) => void
124
+ ): void;
125
+ getScheduleGroup(
126
+ args: GetScheduleGroupCommandInput,
127
+ options: __HttpHandlerOptions,
128
+ cb: (err: any, data?: GetScheduleGroupCommandOutput) => void
129
+ ): void;
130
+ listScheduleGroups(
131
+ args: ListScheduleGroupsCommandInput,
132
+ options?: __HttpHandlerOptions
133
+ ): Promise<ListScheduleGroupsCommandOutput>;
134
+ listScheduleGroups(
135
+ args: ListScheduleGroupsCommandInput,
136
+ cb: (err: any, data?: ListScheduleGroupsCommandOutput) => void
137
+ ): void;
138
+ listScheduleGroups(
139
+ args: ListScheduleGroupsCommandInput,
140
+ options: __HttpHandlerOptions,
141
+ cb: (err: any, data?: ListScheduleGroupsCommandOutput) => void
142
+ ): void;
143
+ listSchedules(
144
+ args: ListSchedulesCommandInput,
145
+ options?: __HttpHandlerOptions
146
+ ): Promise<ListSchedulesCommandOutput>;
147
+ listSchedules(
148
+ args: ListSchedulesCommandInput,
149
+ cb: (err: any, data?: ListSchedulesCommandOutput) => void
150
+ ): void;
151
+ listSchedules(
152
+ args: ListSchedulesCommandInput,
153
+ options: __HttpHandlerOptions,
154
+ cb: (err: any, data?: ListSchedulesCommandOutput) => void
155
+ ): void;
156
+ listTagsForResource(
157
+ args: ListTagsForResourceCommandInput,
158
+ options?: __HttpHandlerOptions
159
+ ): Promise<ListTagsForResourceCommandOutput>;
160
+ listTagsForResource(
161
+ args: ListTagsForResourceCommandInput,
162
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
163
+ ): void;
164
+ listTagsForResource(
165
+ args: ListTagsForResourceCommandInput,
166
+ options: __HttpHandlerOptions,
167
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
168
+ ): void;
169
+ tagResource(
170
+ args: TagResourceCommandInput,
171
+ options?: __HttpHandlerOptions
172
+ ): Promise<TagResourceCommandOutput>;
173
+ tagResource(
174
+ args: TagResourceCommandInput,
175
+ cb: (err: any, data?: TagResourceCommandOutput) => void
176
+ ): void;
177
+ tagResource(
178
+ args: TagResourceCommandInput,
179
+ options: __HttpHandlerOptions,
180
+ cb: (err: any, data?: TagResourceCommandOutput) => void
181
+ ): void;
182
+ untagResource(
183
+ args: UntagResourceCommandInput,
184
+ options?: __HttpHandlerOptions
185
+ ): Promise<UntagResourceCommandOutput>;
186
+ untagResource(
187
+ args: UntagResourceCommandInput,
188
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
189
+ ): void;
190
+ untagResource(
191
+ args: UntagResourceCommandInput,
192
+ options: __HttpHandlerOptions,
193
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
194
+ ): void;
195
+ updateSchedule(
196
+ args: UpdateScheduleCommandInput,
197
+ options?: __HttpHandlerOptions
198
+ ): Promise<UpdateScheduleCommandOutput>;
199
+ updateSchedule(
200
+ args: UpdateScheduleCommandInput,
201
+ cb: (err: any, data?: UpdateScheduleCommandOutput) => void
202
+ ): void;
203
+ updateSchedule(
204
+ args: UpdateScheduleCommandInput,
205
+ options: __HttpHandlerOptions,
206
+ cb: (err: any, data?: UpdateScheduleCommandOutput) => void
207
+ ): void;
208
+ }
@@ -0,0 +1,183 @@
1
+ import {
2
+ RegionInputConfig,
3
+ RegionResolvedConfig,
4
+ } from "@aws-sdk/config-resolver";
5
+ import {
6
+ EndpointInputConfig,
7
+ EndpointResolvedConfig,
8
+ } from "@aws-sdk/middleware-endpoint";
9
+ import {
10
+ HostHeaderInputConfig,
11
+ HostHeaderResolvedConfig,
12
+ } from "@aws-sdk/middleware-host-header";
13
+ import {
14
+ RetryInputConfig,
15
+ RetryResolvedConfig,
16
+ } from "@aws-sdk/middleware-retry";
17
+ import {
18
+ AwsAuthInputConfig,
19
+ AwsAuthResolvedConfig,
20
+ } from "@aws-sdk/middleware-signing";
21
+ import {
22
+ UserAgentInputConfig,
23
+ UserAgentResolvedConfig,
24
+ } from "@aws-sdk/middleware-user-agent";
25
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
26
+ import {
27
+ Client as __Client,
28
+ DefaultsMode,
29
+ SmithyConfiguration as __SmithyConfiguration,
30
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
31
+ } from "@aws-sdk/smithy-client";
32
+ import {
33
+ BodyLengthCalculator as __BodyLengthCalculator,
34
+ Credentials as __Credentials,
35
+ Decoder as __Decoder,
36
+ Encoder as __Encoder,
37
+ HashConstructor as __HashConstructor,
38
+ HttpHandlerOptions as __HttpHandlerOptions,
39
+ Logger as __Logger,
40
+ Provider as __Provider,
41
+ Provider,
42
+ StreamCollector as __StreamCollector,
43
+ UrlParser as __UrlParser,
44
+ UserAgent as __UserAgent,
45
+ } from "@aws-sdk/types";
46
+ import {
47
+ CreateScheduleCommandInput,
48
+ CreateScheduleCommandOutput,
49
+ } from "./commands/CreateScheduleCommand";
50
+ import {
51
+ CreateScheduleGroupCommandInput,
52
+ CreateScheduleGroupCommandOutput,
53
+ } from "./commands/CreateScheduleGroupCommand";
54
+ import {
55
+ DeleteScheduleCommandInput,
56
+ DeleteScheduleCommandOutput,
57
+ } from "./commands/DeleteScheduleCommand";
58
+ import {
59
+ DeleteScheduleGroupCommandInput,
60
+ DeleteScheduleGroupCommandOutput,
61
+ } from "./commands/DeleteScheduleGroupCommand";
62
+ import {
63
+ GetScheduleCommandInput,
64
+ GetScheduleCommandOutput,
65
+ } from "./commands/GetScheduleCommand";
66
+ import {
67
+ GetScheduleGroupCommandInput,
68
+ GetScheduleGroupCommandOutput,
69
+ } from "./commands/GetScheduleGroupCommand";
70
+ import {
71
+ ListScheduleGroupsCommandInput,
72
+ ListScheduleGroupsCommandOutput,
73
+ } from "./commands/ListScheduleGroupsCommand";
74
+ import {
75
+ ListSchedulesCommandInput,
76
+ ListSchedulesCommandOutput,
77
+ } from "./commands/ListSchedulesCommand";
78
+ import {
79
+ ListTagsForResourceCommandInput,
80
+ ListTagsForResourceCommandOutput,
81
+ } from "./commands/ListTagsForResourceCommand";
82
+ import {
83
+ TagResourceCommandInput,
84
+ TagResourceCommandOutput,
85
+ } from "./commands/TagResourceCommand";
86
+ import {
87
+ UntagResourceCommandInput,
88
+ UntagResourceCommandOutput,
89
+ } from "./commands/UntagResourceCommand";
90
+ import {
91
+ UpdateScheduleCommandInput,
92
+ UpdateScheduleCommandOutput,
93
+ } from "./commands/UpdateScheduleCommand";
94
+ import {
95
+ ClientInputEndpointParameters,
96
+ ClientResolvedEndpointParameters,
97
+ EndpointParameters,
98
+ } from "./endpoint/EndpointParameters";
99
+ export declare type ServiceInputTypes =
100
+ | CreateScheduleCommandInput
101
+ | CreateScheduleGroupCommandInput
102
+ | DeleteScheduleCommandInput
103
+ | DeleteScheduleGroupCommandInput
104
+ | GetScheduleCommandInput
105
+ | GetScheduleGroupCommandInput
106
+ | ListScheduleGroupsCommandInput
107
+ | ListSchedulesCommandInput
108
+ | ListTagsForResourceCommandInput
109
+ | TagResourceCommandInput
110
+ | UntagResourceCommandInput
111
+ | UpdateScheduleCommandInput;
112
+ export declare type ServiceOutputTypes =
113
+ | CreateScheduleCommandOutput
114
+ | CreateScheduleGroupCommandOutput
115
+ | DeleteScheduleCommandOutput
116
+ | DeleteScheduleGroupCommandOutput
117
+ | GetScheduleCommandOutput
118
+ | GetScheduleGroupCommandOutput
119
+ | ListScheduleGroupsCommandOutput
120
+ | ListSchedulesCommandOutput
121
+ | ListTagsForResourceCommandOutput
122
+ | TagResourceCommandOutput
123
+ | UntagResourceCommandOutput
124
+ | UpdateScheduleCommandOutput;
125
+ export interface ClientDefaults
126
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
127
+ requestHandler?: __HttpHandler;
128
+ sha256?: __HashConstructor;
129
+ urlParser?: __UrlParser;
130
+ bodyLengthChecker?: __BodyLengthCalculator;
131
+ streamCollector?: __StreamCollector;
132
+ base64Decoder?: __Decoder;
133
+ base64Encoder?: __Encoder;
134
+ utf8Decoder?: __Decoder;
135
+ utf8Encoder?: __Encoder;
136
+ runtime?: string;
137
+ disableHostPrefix?: boolean;
138
+ maxAttempts?: number | __Provider<number>;
139
+ retryMode?: string | __Provider<string>;
140
+ logger?: __Logger;
141
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
142
+ useFipsEndpoint?: boolean | __Provider<boolean>;
143
+ serviceId?: string;
144
+ region?: string | __Provider<string>;
145
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
146
+ defaultUserAgentProvider?: Provider<__UserAgent>;
147
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
148
+ }
149
+ declare type SchedulerClientConfigType = Partial<
150
+ __SmithyConfiguration<__HttpHandlerOptions>
151
+ > &
152
+ ClientDefaults &
153
+ RegionInputConfig &
154
+ EndpointInputConfig<EndpointParameters> &
155
+ RetryInputConfig &
156
+ HostHeaderInputConfig &
157
+ AwsAuthInputConfig &
158
+ UserAgentInputConfig &
159
+ ClientInputEndpointParameters;
160
+ export interface SchedulerClientConfig extends SchedulerClientConfigType {}
161
+ declare type SchedulerClientResolvedConfigType =
162
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
163
+ Required<ClientDefaults> &
164
+ RegionResolvedConfig &
165
+ EndpointResolvedConfig<EndpointParameters> &
166
+ RetryResolvedConfig &
167
+ HostHeaderResolvedConfig &
168
+ AwsAuthResolvedConfig &
169
+ UserAgentResolvedConfig &
170
+ ClientResolvedEndpointParameters;
171
+ export interface SchedulerClientResolvedConfig
172
+ extends SchedulerClientResolvedConfigType {}
173
+ export declare class SchedulerClient extends __Client<
174
+ __HttpHandlerOptions,
175
+ ServiceInputTypes,
176
+ ServiceOutputTypes,
177
+ SchedulerClientResolvedConfig
178
+ > {
179
+ readonly config: SchedulerClientResolvedConfig;
180
+ constructor(configuration: SchedulerClientConfig);
181
+ destroy(): void;
182
+ }
183
+ export {};
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { CreateScheduleInput, CreateScheduleOutput } from "../models/models_0";
10
+ import {
11
+ SchedulerClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../SchedulerClient";
15
+ export interface CreateScheduleCommandInput extends CreateScheduleInput {}
16
+ export interface CreateScheduleCommandOutput
17
+ extends CreateScheduleOutput,
18
+ __MetadataBearer {}
19
+ export declare class CreateScheduleCommand extends $Command<
20
+ CreateScheduleCommandInput,
21
+ CreateScheduleCommandOutput,
22
+ SchedulerClientResolvedConfig
23
+ > {
24
+ readonly input: CreateScheduleCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: CreateScheduleCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SchedulerClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateScheduleCommandInput, CreateScheduleCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }