@aws-sdk/client-cloudwatch-events 3.890.0 → 3.893.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-types/commands/ActivateEventSourceCommand.d.ts +2 -0
- package/dist-types/commands/CancelReplayCommand.d.ts +2 -0
- package/dist-types/commands/CreateApiDestinationCommand.d.ts +2 -0
- package/dist-types/commands/CreateArchiveCommand.d.ts +2 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +2 -0
- package/dist-types/commands/CreateEventBusCommand.d.ts +2 -0
- package/dist-types/commands/CreatePartnerEventSourceCommand.d.ts +2 -0
- package/dist-types/commands/DeactivateEventSourceCommand.d.ts +2 -0
- package/dist-types/commands/DeauthorizeConnectionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteApiDestinationCommand.d.ts +2 -0
- package/dist-types/commands/DeleteArchiveCommand.d.ts +2 -0
- package/dist-types/commands/DeleteConnectionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteEventBusCommand.d.ts +2 -0
- package/dist-types/commands/DeletePartnerEventSourceCommand.d.ts +2 -0
- package/dist-types/commands/DeleteRuleCommand.d.ts +2 -0
- package/dist-types/commands/DescribeApiDestinationCommand.d.ts +2 -0
- package/dist-types/commands/DescribeArchiveCommand.d.ts +2 -0
- package/dist-types/commands/DescribeConnectionCommand.d.ts +2 -0
- package/dist-types/commands/DescribeEventBusCommand.d.ts +2 -0
- package/dist-types/commands/DescribeEventSourceCommand.d.ts +2 -0
- package/dist-types/commands/DescribePartnerEventSourceCommand.d.ts +2 -0
- package/dist-types/commands/DescribeReplayCommand.d.ts +2 -0
- package/dist-types/commands/DescribeRuleCommand.d.ts +2 -0
- package/dist-types/commands/DisableRuleCommand.d.ts +2 -0
- package/dist-types/commands/EnableRuleCommand.d.ts +2 -0
- package/dist-types/commands/ListApiDestinationsCommand.d.ts +2 -0
- package/dist-types/commands/ListArchivesCommand.d.ts +2 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +2 -0
- package/dist-types/commands/ListEventBusesCommand.d.ts +2 -0
- package/dist-types/commands/ListEventSourcesCommand.d.ts +2 -0
- package/dist-types/commands/ListPartnerEventSourceAccountsCommand.d.ts +2 -0
- package/dist-types/commands/ListPartnerEventSourcesCommand.d.ts +2 -0
- package/dist-types/commands/ListReplaysCommand.d.ts +2 -0
- package/dist-types/commands/ListRuleNamesByTargetCommand.d.ts +2 -0
- package/dist-types/commands/ListRulesCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/ListTargetsByRuleCommand.d.ts +2 -0
- package/dist-types/commands/PutEventsCommand.d.ts +2 -0
- package/dist-types/commands/PutPartnerEventsCommand.d.ts +2 -0
- package/dist-types/commands/PutPermissionCommand.d.ts +2 -0
- package/dist-types/commands/PutRuleCommand.d.ts +2 -0
- package/dist-types/commands/PutTargetsCommand.d.ts +2 -0
- package/dist-types/commands/RemovePermissionCommand.d.ts +2 -0
- package/dist-types/commands/RemoveTargetsCommand.d.ts +2 -0
- package/dist-types/commands/StartReplayCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/TestEventPatternCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateApiDestinationCommand.d.ts +2 -0
- package/dist-types/commands/UpdateArchiveCommand.d.ts +2 -0
- package/dist-types/commands/UpdateConnectionCommand.d.ts +2 -0
- package/package.json +19 -19
|
@@ -34,6 +34,8 @@ declare const ActivateEventSourceCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, ActivateEventSourceCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, ActivateEventSourceCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // ActivateEventSourceRequest
|
|
39
41
|
* Name: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CancelReplayCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, CancelReplayCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, CancelReplayCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // CancelReplayRequest
|
|
38
40
|
* ReplayName: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const CreateApiDestinationCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, CreateApiDestinationCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, CreateApiDestinationCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // CreateApiDestinationRequest
|
|
39
41
|
* Name: "STRING_VALUE", // required
|
|
@@ -37,6 +37,8 @@ declare const CreateArchiveCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { CloudWatchEventsClient, CreateArchiveCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
39
39
|
* // const { CloudWatchEventsClient, CreateArchiveCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
40
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
41
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
40
42
|
* const client = new CloudWatchEventsClient(config);
|
|
41
43
|
* const input = { // CreateArchiveRequest
|
|
42
44
|
* ArchiveName: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const CreateConnectionCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, CreateConnectionCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, CreateConnectionCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // CreateConnectionRequest
|
|
39
41
|
* Name: "STRING_VALUE", // required
|
|
@@ -35,6 +35,8 @@ declare const CreateEventBusCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { CloudWatchEventsClient, CreateEventBusCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
37
37
|
* // const { CloudWatchEventsClient, CreateEventBusCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
38
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
39
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
38
40
|
* const client = new CloudWatchEventsClient(config);
|
|
39
41
|
* const input = { // CreateEventBusRequest
|
|
40
42
|
* Name: "STRING_VALUE", // required
|
|
@@ -56,6 +56,8 @@ declare const CreatePartnerEventSourceCommand_base: {
|
|
|
56
56
|
* ```javascript
|
|
57
57
|
* import { CloudWatchEventsClient, CreatePartnerEventSourceCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
58
58
|
* // const { CloudWatchEventsClient, CreatePartnerEventSourceCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
59
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
60
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
59
61
|
* const client = new CloudWatchEventsClient(config);
|
|
60
62
|
* const input = { // CreatePartnerEventSourceRequest
|
|
61
63
|
* Name: "STRING_VALUE", // required
|
|
@@ -37,6 +37,8 @@ declare const DeactivateEventSourceCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { CloudWatchEventsClient, DeactivateEventSourceCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
39
39
|
* // const { CloudWatchEventsClient, DeactivateEventSourceCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
40
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
41
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
40
42
|
* const client = new CloudWatchEventsClient(config);
|
|
41
43
|
* const input = { // DeactivateEventSourceRequest
|
|
42
44
|
* Name: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const DeauthorizeConnectionCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, DeauthorizeConnectionCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, DeauthorizeConnectionCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // DeauthorizeConnectionRequest
|
|
39
41
|
* Name: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteApiDestinationCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, DeleteApiDestinationCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, DeleteApiDestinationCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // DeleteApiDestinationRequest
|
|
38
40
|
* Name: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteArchiveCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, DeleteArchiveCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, DeleteArchiveCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // DeleteArchiveRequest
|
|
38
40
|
* ArchiveName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteConnectionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, DeleteConnectionCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, DeleteConnectionCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // DeleteConnectionRequest
|
|
38
40
|
* Name: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const DeleteEventBusCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, DeleteEventBusCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, DeleteEventBusCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // DeleteEventBusRequest
|
|
39
41
|
* Name: "STRING_VALUE", // required
|
|
@@ -37,6 +37,8 @@ declare const DeletePartnerEventSourceCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { CloudWatchEventsClient, DeletePartnerEventSourceCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
39
39
|
* // const { CloudWatchEventsClient, DeletePartnerEventSourceCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
40
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
41
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
40
42
|
* const client = new CloudWatchEventsClient(config);
|
|
41
43
|
* const input = { // DeletePartnerEventSourceRequest
|
|
42
44
|
* Name: "STRING_VALUE", // required
|
|
@@ -43,6 +43,8 @@ declare const DeleteRuleCommand_base: {
|
|
|
43
43
|
* ```javascript
|
|
44
44
|
* import { CloudWatchEventsClient, DeleteRuleCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
45
45
|
* // const { CloudWatchEventsClient, DeleteRuleCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
46
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
47
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
46
48
|
* const client = new CloudWatchEventsClient(config);
|
|
47
49
|
* const input = { // DeleteRuleRequest
|
|
48
50
|
* Name: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DescribeApiDestinationCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, DescribeApiDestinationCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, DescribeApiDestinationCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // DescribeApiDestinationRequest
|
|
38
40
|
* Name: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DescribeArchiveCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, DescribeArchiveCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, DescribeArchiveCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // DescribeArchiveRequest
|
|
38
40
|
* ArchiveName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DescribeConnectionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, DescribeConnectionCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, DescribeConnectionCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // DescribeConnectionRequest
|
|
38
40
|
* Name: "STRING_VALUE", // required
|
|
@@ -39,6 +39,8 @@ declare const DescribeEventBusCommand_base: {
|
|
|
39
39
|
* ```javascript
|
|
40
40
|
* import { CloudWatchEventsClient, DescribeEventBusCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
41
41
|
* // const { CloudWatchEventsClient, DescribeEventBusCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
42
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
43
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
42
44
|
* const client = new CloudWatchEventsClient(config);
|
|
43
45
|
* const input = { // DescribeEventBusRequest
|
|
44
46
|
* Name: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const DescribeEventSourceCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, DescribeEventSourceCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, DescribeEventSourceCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // DescribeEventSourceRequest
|
|
39
41
|
* Name: "STRING_VALUE", // required
|
|
@@ -36,6 +36,8 @@ declare const DescribePartnerEventSourceCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { CloudWatchEventsClient, DescribePartnerEventSourceCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
38
38
|
* // const { CloudWatchEventsClient, DescribePartnerEventSourceCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
39
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
40
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
39
41
|
* const client = new CloudWatchEventsClient(config);
|
|
40
42
|
* const input = { // DescribePartnerEventSourceRequest
|
|
41
43
|
* Name: "STRING_VALUE", // required
|
|
@@ -41,6 +41,8 @@ declare const DescribeReplayCommand_base: {
|
|
|
41
41
|
* ```javascript
|
|
42
42
|
* import { CloudWatchEventsClient, DescribeReplayCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
43
43
|
* // const { CloudWatchEventsClient, DescribeReplayCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
44
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
45
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
44
46
|
* const client = new CloudWatchEventsClient(config);
|
|
45
47
|
* const input = { // DescribeReplayRequest
|
|
46
48
|
* ReplayName: "STRING_VALUE", // required
|
|
@@ -35,6 +35,8 @@ declare const DescribeRuleCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { CloudWatchEventsClient, DescribeRuleCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
37
37
|
* // const { CloudWatchEventsClient, DescribeRuleCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
38
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
39
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
38
40
|
* const client = new CloudWatchEventsClient(config);
|
|
39
41
|
* const input = { // DescribeRuleRequest
|
|
40
42
|
* Name: "STRING_VALUE", // required
|
|
@@ -36,6 +36,8 @@ declare const DisableRuleCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { CloudWatchEventsClient, DisableRuleCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
38
38
|
* // const { CloudWatchEventsClient, DisableRuleCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
39
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
40
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
39
41
|
* const client = new CloudWatchEventsClient(config);
|
|
40
42
|
* const input = { // DisableRuleRequest
|
|
41
43
|
* Name: "STRING_VALUE", // required
|
|
@@ -35,6 +35,8 @@ declare const EnableRuleCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { CloudWatchEventsClient, EnableRuleCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
37
37
|
* // const { CloudWatchEventsClient, EnableRuleCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
38
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
39
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
38
40
|
* const client = new CloudWatchEventsClient(config);
|
|
39
41
|
* const input = { // EnableRuleRequest
|
|
40
42
|
* Name: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListApiDestinationsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, ListApiDestinationsCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, ListApiDestinationsCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // ListApiDestinationsRequest
|
|
38
40
|
* NamePrefix: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const ListArchivesCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, ListArchivesCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, ListArchivesCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // ListArchivesRequest
|
|
39
41
|
* NamePrefix: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListConnectionsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, ListConnectionsCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, ListConnectionsCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // ListConnectionsRequest
|
|
38
40
|
* NamePrefix: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const ListEventBusesCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, ListEventBusesCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, ListEventBusesCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // ListEventBusesRequest
|
|
39
41
|
* NamePrefix: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const ListEventSourcesCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, ListEventSourcesCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, ListEventSourcesCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // ListEventSourcesRequest
|
|
39
41
|
* NamePrefix: "STRING_VALUE",
|
|
@@ -35,6 +35,8 @@ declare const ListPartnerEventSourceAccountsCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { CloudWatchEventsClient, ListPartnerEventSourceAccountsCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
37
37
|
* // const { CloudWatchEventsClient, ListPartnerEventSourceAccountsCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
38
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
39
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
38
40
|
* const client = new CloudWatchEventsClient(config);
|
|
39
41
|
* const input = { // ListPartnerEventSourceAccountsRequest
|
|
40
42
|
* EventSourceName: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const ListPartnerEventSourcesCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, ListPartnerEventSourcesCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, ListPartnerEventSourcesCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // ListPartnerEventSourcesRequest
|
|
39
41
|
* NamePrefix: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const ListReplaysCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, ListReplaysCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, ListReplaysCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // ListReplaysRequest
|
|
39
41
|
* NamePrefix: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const ListRuleNamesByTargetCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, ListRuleNamesByTargetCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, ListRuleNamesByTargetCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // ListRuleNamesByTargetRequest
|
|
39
41
|
* TargetArn: "STRING_VALUE", // required
|
|
@@ -36,6 +36,8 @@ declare const ListRulesCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { CloudWatchEventsClient, ListRulesCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
38
38
|
* // const { CloudWatchEventsClient, ListRulesCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
39
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
40
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
39
41
|
* const client = new CloudWatchEventsClient(config);
|
|
40
42
|
* const input = { // ListRulesRequest
|
|
41
43
|
* NamePrefix: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, ListTagsForResourceCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // ListTagsForResourceRequest
|
|
39
41
|
* ResourceARN: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListTargetsByRuleCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, ListTargetsByRuleCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, ListTargetsByRuleCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // ListTargetsByRuleRequest
|
|
38
40
|
* Rule: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const PutEventsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, PutEventsCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, PutEventsCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // PutEventsRequest
|
|
38
40
|
* Entries: [ // PutEventsRequestEntryList // required
|
|
@@ -34,6 +34,8 @@ declare const PutPartnerEventsCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, PutPartnerEventsCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, PutPartnerEventsCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // PutPartnerEventsRequest
|
|
39
41
|
* Entries: [ // PutPartnerEventsRequestEntryList // required
|
|
@@ -49,6 +49,8 @@ declare const PutPermissionCommand_base: {
|
|
|
49
49
|
* ```javascript
|
|
50
50
|
* import { CloudWatchEventsClient, PutPermissionCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
51
51
|
* // const { CloudWatchEventsClient, PutPermissionCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
52
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
53
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
52
54
|
* const client = new CloudWatchEventsClient(config);
|
|
53
55
|
* const input = { // PutPermissionRequest
|
|
54
56
|
* EventBusName: "STRING_VALUE",
|
|
@@ -72,6 +72,8 @@ declare const PutRuleCommand_base: {
|
|
|
72
72
|
* ```javascript
|
|
73
73
|
* import { CloudWatchEventsClient, PutRuleCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
74
74
|
* // const { CloudWatchEventsClient, PutRuleCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
75
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
76
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
75
77
|
* const client = new CloudWatchEventsClient(config);
|
|
76
78
|
* const input = { // PutRuleRequest
|
|
77
79
|
* Name: "STRING_VALUE", // required
|
|
@@ -185,6 +185,8 @@ declare const PutTargetsCommand_base: {
|
|
|
185
185
|
* ```javascript
|
|
186
186
|
* import { CloudWatchEventsClient, PutTargetsCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
187
187
|
* // const { CloudWatchEventsClient, PutTargetsCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
188
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
189
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
188
190
|
* const client = new CloudWatchEventsClient(config);
|
|
189
191
|
* const input = { // PutTargetsRequest
|
|
190
192
|
* Rule: "STRING_VALUE", // required
|
|
@@ -36,6 +36,8 @@ declare const RemovePermissionCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { CloudWatchEventsClient, RemovePermissionCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
38
38
|
* // const { CloudWatchEventsClient, RemovePermissionCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
39
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
40
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
39
41
|
* const client = new CloudWatchEventsClient(config);
|
|
40
42
|
* const input = { // RemovePermissionRequest
|
|
41
43
|
* StatementId: "STRING_VALUE",
|
|
@@ -39,6 +39,8 @@ declare const RemoveTargetsCommand_base: {
|
|
|
39
39
|
* ```javascript
|
|
40
40
|
* import { CloudWatchEventsClient, RemoveTargetsCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
41
41
|
* // const { CloudWatchEventsClient, RemoveTargetsCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
42
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
43
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
42
44
|
* const client = new CloudWatchEventsClient(config);
|
|
43
45
|
* const input = { // RemoveTargetsRequest
|
|
44
46
|
* Rule: "STRING_VALUE", // required
|
|
@@ -41,6 +41,8 @@ declare const StartReplayCommand_base: {
|
|
|
41
41
|
* ```javascript
|
|
42
42
|
* import { CloudWatchEventsClient, StartReplayCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
43
43
|
* // const { CloudWatchEventsClient, StartReplayCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
44
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
45
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
44
46
|
* const client = new CloudWatchEventsClient(config);
|
|
45
47
|
* const input = { // StartReplayRequest
|
|
46
48
|
* ReplayName: "STRING_VALUE", // required
|
|
@@ -43,6 +43,8 @@ declare const TagResourceCommand_base: {
|
|
|
43
43
|
* ```javascript
|
|
44
44
|
* import { CloudWatchEventsClient, TagResourceCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
45
45
|
* // const { CloudWatchEventsClient, TagResourceCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
46
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
47
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
46
48
|
* const client = new CloudWatchEventsClient(config);
|
|
47
49
|
* const input = { // TagResourceRequest
|
|
48
50
|
* ResourceARN: "STRING_VALUE", // required
|
|
@@ -37,6 +37,8 @@ declare const TestEventPatternCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { CloudWatchEventsClient, TestEventPatternCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
39
39
|
* // const { CloudWatchEventsClient, TestEventPatternCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
40
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
41
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
40
42
|
* const client = new CloudWatchEventsClient(config);
|
|
41
43
|
* const input = { // TestEventPatternRequest
|
|
42
44
|
* EventPattern: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const UntagResourceCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { CloudWatchEventsClient, UntagResourceCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
36
36
|
* // const { CloudWatchEventsClient, UntagResourceCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
37
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
38
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
37
39
|
* const client = new CloudWatchEventsClient(config);
|
|
38
40
|
* const input = { // UntagResourceRequest
|
|
39
41
|
* ResourceARN: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateApiDestinationCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, UpdateApiDestinationCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, UpdateApiDestinationCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // UpdateApiDestinationRequest
|
|
38
40
|
* Name: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateArchiveCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, UpdateArchiveCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, UpdateArchiveCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // UpdateArchiveRequest
|
|
38
40
|
* ArchiveName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateConnectionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { CloudWatchEventsClient, UpdateConnectionCommand } from "@aws-sdk/client-cloudwatch-events"; // ES Modules import
|
|
35
35
|
* // const { CloudWatchEventsClient, UpdateConnectionCommand } = require("@aws-sdk/client-cloudwatch-events"); // CommonJS import
|
|
36
|
+
* // import type { CloudWatchEventsClientConfig } from "@aws-sdk/client-cloudwatch-events";
|
|
37
|
+
* const config = {}; // type is CloudWatchEventsClientConfig
|
|
36
38
|
* const client = new CloudWatchEventsClient(config);
|
|
37
39
|
* const input = { // UpdateConnectionRequest
|
|
38
40
|
* Name: "STRING_VALUE", // required
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudwatch-events",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudwatch Events Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.893.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudwatch-events",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.893.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
30
|
+
"@aws-sdk/types": "3.893.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.2.2",
|
|
35
|
-
"@smithy/core": "^3.11.
|
|
35
|
+
"@smithy/core": "^3.11.1",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
37
37
|
"@smithy/hash-node": "^4.1.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
41
|
-
"@smithy/middleware-retry": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
41
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
42
42
|
"@smithy/middleware-serde": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-stack": "^4.1.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.2.2",
|
|
45
45
|
"@smithy/node-http-handler": "^4.2.1",
|
|
46
46
|
"@smithy/protocol-http": "^5.2.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.6.
|
|
47
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
48
48
|
"@smithy/types": "^4.5.0",
|
|
49
49
|
"@smithy/url-parser": "^4.1.1",
|
|
50
50
|
"@smithy/util-base64": "^4.1.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
55
55
|
"@smithy/util-endpoints": "^3.1.2",
|
|
56
56
|
"@smithy/util-middleware": "^4.1.1",
|
|
57
|
-
"@smithy/util-retry": "^4.1.
|
|
57
|
+
"@smithy/util-retry": "^4.1.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.1.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|