@aws-sdk/client-eventbridge 3.300.0 → 3.303.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 (61) hide show
  1. package/dist-cjs/models/models_0.js +91 -107
  2. package/dist-es/models/models_0.js +91 -107
  3. package/dist-types/commands/ActivateEventSourceCommand.d.ts +1 -1
  4. package/dist-types/commands/CancelReplayCommand.d.ts +1 -1
  5. package/dist-types/commands/CreateApiDestinationCommand.d.ts +1 -1
  6. package/dist-types/commands/CreateArchiveCommand.d.ts +1 -1
  7. package/dist-types/commands/CreateConnectionCommand.d.ts +13 -13
  8. package/dist-types/commands/CreateEndpointCommand.d.ts +8 -8
  9. package/dist-types/commands/CreateEventBusCommand.d.ts +3 -3
  10. package/dist-types/commands/CreatePartnerEventSourceCommand.d.ts +1 -1
  11. package/dist-types/commands/DeactivateEventSourceCommand.d.ts +1 -1
  12. package/dist-types/commands/DeauthorizeConnectionCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteApiDestinationCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteArchiveCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteConnectionCommand.d.ts +1 -1
  16. package/dist-types/commands/DeleteEndpointCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteEventBusCommand.d.ts +1 -1
  18. package/dist-types/commands/DeletePartnerEventSourceCommand.d.ts +1 -1
  19. package/dist-types/commands/DeleteRuleCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeApiDestinationCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeArchiveCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeConnectionCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeEndpointCommand.d.ts +1 -1
  24. package/dist-types/commands/DescribeEventBusCommand.d.ts +1 -1
  25. package/dist-types/commands/DescribeEventSourceCommand.d.ts +1 -1
  26. package/dist-types/commands/DescribePartnerEventSourceCommand.d.ts +1 -1
  27. package/dist-types/commands/DescribeReplayCommand.d.ts +1 -1
  28. package/dist-types/commands/DescribeRuleCommand.d.ts +1 -1
  29. package/dist-types/commands/DisableRuleCommand.d.ts +1 -1
  30. package/dist-types/commands/EnableRuleCommand.d.ts +1 -1
  31. package/dist-types/commands/ListApiDestinationsCommand.d.ts +1 -1
  32. package/dist-types/commands/ListArchivesCommand.d.ts +1 -1
  33. package/dist-types/commands/ListConnectionsCommand.d.ts +1 -1
  34. package/dist-types/commands/ListEndpointsCommand.d.ts +1 -1
  35. package/dist-types/commands/ListEventBusesCommand.d.ts +1 -1
  36. package/dist-types/commands/ListEventSourcesCommand.d.ts +1 -1
  37. package/dist-types/commands/ListPartnerEventSourceAccountsCommand.d.ts +1 -1
  38. package/dist-types/commands/ListPartnerEventSourcesCommand.d.ts +1 -1
  39. package/dist-types/commands/ListReplaysCommand.d.ts +1 -1
  40. package/dist-types/commands/ListRuleNamesByTargetCommand.d.ts +1 -1
  41. package/dist-types/commands/ListRulesCommand.d.ts +1 -1
  42. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  43. package/dist-types/commands/ListTargetsByRuleCommand.d.ts +1 -1
  44. package/dist-types/commands/PutEventsCommand.d.ts +4 -4
  45. package/dist-types/commands/PutPartnerEventsCommand.d.ts +4 -4
  46. package/dist-types/commands/PutPermissionCommand.d.ts +2 -2
  47. package/dist-types/commands/PutRuleCommand.d.ts +3 -3
  48. package/dist-types/commands/PutTargetsCommand.d.ts +36 -36
  49. package/dist-types/commands/RemovePermissionCommand.d.ts +1 -1
  50. package/dist-types/commands/RemoveTargetsCommand.d.ts +2 -2
  51. package/dist-types/commands/StartReplayCommand.d.ts +3 -3
  52. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  53. package/dist-types/commands/TestEventPatternCommand.d.ts +1 -1
  54. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  55. package/dist-types/commands/UpdateApiDestinationCommand.d.ts +1 -1
  56. package/dist-types/commands/UpdateArchiveCommand.d.ts +1 -1
  57. package/dist-types/commands/UpdateConnectionCommand.d.ts +13 -13
  58. package/dist-types/commands/UpdateEndpointCommand.d.ts +8 -8
  59. package/dist-types/models/models_0.d.ts +171 -91
  60. package/dist-types/ts3.4/models/models_0.d.ts +117 -91
  61. package/package.json +35 -35
@@ -30,7 +30,7 @@ export interface TestEventPatternCommandOutput extends TestEventPatternResponse,
30
30
  * import { EventBridgeClient, TestEventPatternCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
31
31
  * // const { EventBridgeClient, TestEventPatternCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
32
32
  * const client = new EventBridgeClient(config);
33
- * const input = {
33
+ * const input = { // TestEventPatternRequest
34
34
  * EventPattern: "STRING_VALUE", // required
35
35
  * Event: "STRING_VALUE", // required
36
36
  * };
@@ -27,9 +27,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
27
27
  * import { EventBridgeClient, UntagResourceCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
28
28
  * // const { EventBridgeClient, UntagResourceCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
29
29
  * const client = new EventBridgeClient(config);
30
- * const input = {
30
+ * const input = { // UntagResourceRequest
31
31
  * ResourceARN: "STRING_VALUE", // required
32
- * TagKeys: [ // required
32
+ * TagKeys: [ // TagKeyList // required
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * };
@@ -26,7 +26,7 @@ export interface UpdateApiDestinationCommandOutput extends UpdateApiDestinationR
26
26
  * import { EventBridgeClient, UpdateApiDestinationCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
27
27
  * // const { EventBridgeClient, UpdateApiDestinationCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
28
28
  * const client = new EventBridgeClient(config);
29
- * const input = {
29
+ * const input = { // UpdateApiDestinationRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * Description: "STRING_VALUE",
32
32
  * ConnectionArn: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface UpdateArchiveCommandOutput extends UpdateArchiveResponse, __Met
26
26
  * import { EventBridgeClient, UpdateArchiveCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
27
27
  * // const { EventBridgeClient, UpdateArchiveCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
28
28
  * const client = new EventBridgeClient(config);
29
- * const input = {
29
+ * const input = { // UpdateArchiveRequest
30
30
  * ArchiveName: "STRING_VALUE", // required
31
31
  * Description: "STRING_VALUE",
32
32
  * EventPattern: "STRING_VALUE",
@@ -26,39 +26,39 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse,
26
26
  * import { EventBridgeClient, UpdateConnectionCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
27
27
  * // const { EventBridgeClient, UpdateConnectionCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
28
28
  * const client = new EventBridgeClient(config);
29
- * const input = {
29
+ * const input = { // UpdateConnectionRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * Description: "STRING_VALUE",
32
32
  * AuthorizationType: "BASIC" || "OAUTH_CLIENT_CREDENTIALS" || "API_KEY",
33
- * AuthParameters: {
34
- * BasicAuthParameters: {
33
+ * AuthParameters: { // UpdateConnectionAuthRequestParameters
34
+ * BasicAuthParameters: { // UpdateConnectionBasicAuthRequestParameters
35
35
  * Username: "STRING_VALUE",
36
36
  * Password: "STRING_VALUE",
37
37
  * },
38
- * OAuthParameters: {
39
- * ClientParameters: {
38
+ * OAuthParameters: { // UpdateConnectionOAuthRequestParameters
39
+ * ClientParameters: { // UpdateConnectionOAuthClientRequestParameters
40
40
  * ClientID: "STRING_VALUE",
41
41
  * ClientSecret: "STRING_VALUE",
42
42
  * },
43
43
  * AuthorizationEndpoint: "STRING_VALUE",
44
44
  * HttpMethod: "GET" || "POST" || "PUT",
45
- * OAuthHttpParameters: {
46
- * HeaderParameters: [
47
- * {
45
+ * OAuthHttpParameters: { // ConnectionHttpParameters
46
+ * HeaderParameters: [ // ConnectionHeaderParametersList
47
+ * { // ConnectionHeaderParameter
48
48
  * Key: "STRING_VALUE",
49
49
  * Value: "STRING_VALUE",
50
50
  * IsValueSecret: true || false,
51
51
  * },
52
52
  * ],
53
- * QueryStringParameters: [
54
- * {
53
+ * QueryStringParameters: [ // ConnectionQueryStringParametersList
54
+ * { // ConnectionQueryStringParameter
55
55
  * Key: "STRING_VALUE",
56
56
  * Value: "STRING_VALUE",
57
57
  * IsValueSecret: true || false,
58
58
  * },
59
59
  * ],
60
- * BodyParameters: [
61
- * {
60
+ * BodyParameters: [ // ConnectionBodyParametersList
61
+ * { // ConnectionBodyParameter
62
62
  * Key: "STRING_VALUE",
63
63
  * Value: "STRING_VALUE",
64
64
  * IsValueSecret: true || false,
@@ -66,7 +66,7 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse,
66
66
  * ],
67
67
  * },
68
68
  * },
69
- * ApiKeyAuthParameters: {
69
+ * ApiKeyAuthParameters: { // UpdateConnectionApiKeyAuthRequestParameters
70
70
  * ApiKeyName: "STRING_VALUE",
71
71
  * ApiKeyValue: "STRING_VALUE",
72
72
  * },
@@ -26,24 +26,24 @@ export interface UpdateEndpointCommandOutput extends UpdateEndpointResponse, __M
26
26
  * import { EventBridgeClient, UpdateEndpointCommand } from "@aws-sdk/client-eventbridge"; // ES Modules import
27
27
  * // const { EventBridgeClient, UpdateEndpointCommand } = require("@aws-sdk/client-eventbridge"); // CommonJS import
28
28
  * const client = new EventBridgeClient(config);
29
- * const input = {
29
+ * const input = { // UpdateEndpointRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * Description: "STRING_VALUE",
32
- * RoutingConfig: {
33
- * FailoverConfig: {
34
- * Primary: {
32
+ * RoutingConfig: { // RoutingConfig
33
+ * FailoverConfig: { // FailoverConfig
34
+ * Primary: { // Primary
35
35
  * HealthCheck: "STRING_VALUE", // required
36
36
  * },
37
- * Secondary: {
37
+ * Secondary: { // Secondary
38
38
  * Route: "STRING_VALUE", // required
39
39
  * },
40
40
  * },
41
41
  * },
42
- * ReplicationConfig: {
42
+ * ReplicationConfig: { // ReplicationConfig
43
43
  * State: "ENABLED" || "DISABLED",
44
44
  * },
45
- * EventBuses: [
46
- * {
45
+ * EventBuses: [ // EndpointEventBusList
46
+ * { // EndpointEventBus
47
47
  * EventBusArn: "STRING_VALUE", // required
48
48
  * },
49
49
  * ],
@@ -71,23 +71,33 @@ export declare class ResourceNotFoundException extends __BaseException {
71
71
  }
72
72
  /**
73
73
  * @public
74
+ * @enum
74
75
  */
75
- export declare enum ApiDestinationState {
76
- ACTIVE = "ACTIVE",
77
- INACTIVE = "INACTIVE"
78
- }
76
+ export declare const ApiDestinationState: {
77
+ readonly ACTIVE: "ACTIVE";
78
+ readonly INACTIVE: "INACTIVE";
79
+ };
79
80
  /**
80
81
  * @public
81
82
  */
82
- export declare enum ApiDestinationHttpMethod {
83
- DELETE = "DELETE",
84
- GET = "GET",
85
- HEAD = "HEAD",
86
- OPTIONS = "OPTIONS",
87
- PATCH = "PATCH",
88
- POST = "POST",
89
- PUT = "PUT"
90
- }
83
+ export type ApiDestinationState = (typeof ApiDestinationState)[keyof typeof ApiDestinationState];
84
+ /**
85
+ * @public
86
+ * @enum
87
+ */
88
+ export declare const ApiDestinationHttpMethod: {
89
+ readonly DELETE: "DELETE";
90
+ readonly GET: "GET";
91
+ readonly HEAD: "HEAD";
92
+ readonly OPTIONS: "OPTIONS";
93
+ readonly PATCH: "PATCH";
94
+ readonly POST: "POST";
95
+ readonly PUT: "PUT";
96
+ };
97
+ /**
98
+ * @public
99
+ */
100
+ export type ApiDestinationHttpMethod = (typeof ApiDestinationHttpMethod)[keyof typeof ApiDestinationHttpMethod];
91
101
  /**
92
102
  * @public
93
103
  * <p>Contains details about an API destination.</p>
@@ -132,15 +142,20 @@ export interface ApiDestination {
132
142
  }
133
143
  /**
134
144
  * @public
145
+ * @enum
135
146
  */
136
- export declare enum ArchiveState {
137
- CREATE_FAILED = "CREATE_FAILED",
138
- CREATING = "CREATING",
139
- DISABLED = "DISABLED",
140
- ENABLED = "ENABLED",
141
- UPDATE_FAILED = "UPDATE_FAILED",
142
- UPDATING = "UPDATING"
143
- }
147
+ export declare const ArchiveState: {
148
+ readonly CREATE_FAILED: "CREATE_FAILED";
149
+ readonly CREATING: "CREATING";
150
+ readonly DISABLED: "DISABLED";
151
+ readonly ENABLED: "ENABLED";
152
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
153
+ readonly UPDATING: "UPDATING";
154
+ };
155
+ /**
156
+ * @public
157
+ */
158
+ export type ArchiveState = (typeof ArchiveState)[keyof typeof ArchiveState];
144
159
  /**
145
160
  * @public
146
161
  * <p>An <code>Archive</code> object that contains details about an archive.</p>
@@ -182,11 +197,16 @@ export interface Archive {
182
197
  }
183
198
  /**
184
199
  * @public
200
+ * @enum
185
201
  */
186
- export declare enum AssignPublicIp {
187
- DISABLED = "DISABLED",
188
- ENABLED = "ENABLED"
189
- }
202
+ export declare const AssignPublicIp: {
203
+ readonly DISABLED: "DISABLED";
204
+ readonly ENABLED: "ENABLED";
205
+ };
206
+ /**
207
+ * @public
208
+ */
209
+ export type AssignPublicIp = (typeof AssignPublicIp)[keyof typeof AssignPublicIp];
190
210
  /**
191
211
  * @public
192
212
  */
@@ -198,15 +218,20 @@ export interface CancelReplayRequest {
198
218
  }
199
219
  /**
200
220
  * @public
221
+ * @enum
201
222
  */
202
- export declare enum ReplayState {
203
- CANCELLED = "CANCELLED",
204
- CANCELLING = "CANCELLING",
205
- COMPLETED = "COMPLETED",
206
- FAILED = "FAILED",
207
- RUNNING = "RUNNING",
208
- STARTING = "STARTING"
209
- }
223
+ export declare const ReplayState: {
224
+ readonly CANCELLED: "CANCELLED";
225
+ readonly CANCELLING: "CANCELLING";
226
+ readonly COMPLETED: "COMPLETED";
227
+ readonly FAILED: "FAILED";
228
+ readonly RUNNING: "RUNNING";
229
+ readonly STARTING: "STARTING";
230
+ };
231
+ /**
232
+ * @public
233
+ */
234
+ export type ReplayState = (typeof ReplayState)[keyof typeof ReplayState];
210
235
  /**
211
236
  * @public
212
237
  */
@@ -374,12 +399,17 @@ export declare class InvalidEventPatternException extends __BaseException {
374
399
  }
375
400
  /**
376
401
  * @public
402
+ * @enum
377
403
  */
378
- export declare enum ConnectionAuthorizationType {
379
- API_KEY = "API_KEY",
380
- BASIC = "BASIC",
381
- OAUTH_CLIENT_CREDENTIALS = "OAUTH_CLIENT_CREDENTIALS"
382
- }
404
+ export declare const ConnectionAuthorizationType: {
405
+ readonly API_KEY: "API_KEY";
406
+ readonly BASIC: "BASIC";
407
+ readonly OAUTH_CLIENT_CREDENTIALS: "OAUTH_CLIENT_CREDENTIALS";
408
+ };
409
+ /**
410
+ * @public
411
+ */
412
+ export type ConnectionAuthorizationType = (typeof ConnectionAuthorizationType)[keyof typeof ConnectionAuthorizationType];
383
413
  /**
384
414
  * @public
385
415
  * <p>Contains the API key authorization parameters for the connection.</p>
@@ -501,12 +531,17 @@ export interface CreateConnectionOAuthClientRequestParameters {
501
531
  }
502
532
  /**
503
533
  * @public
534
+ * @enum
504
535
  */
505
- export declare enum ConnectionOAuthHttpMethod {
506
- GET = "GET",
507
- POST = "POST",
508
- PUT = "PUT"
509
- }
536
+ export declare const ConnectionOAuthHttpMethod: {
537
+ readonly GET: "GET";
538
+ readonly POST: "POST";
539
+ readonly PUT: "PUT";
540
+ };
541
+ /**
542
+ * @public
543
+ */
544
+ export type ConnectionOAuthHttpMethod = (typeof ConnectionOAuthHttpMethod)[keyof typeof ConnectionOAuthHttpMethod];
510
545
  /**
511
546
  * @public
512
547
  * <p>Contains the OAuth authorization parameters to use for the connection.</p>
@@ -587,16 +622,21 @@ export interface CreateConnectionRequest {
587
622
  }
588
623
  /**
589
624
  * @public
625
+ * @enum
590
626
  */
591
- export declare enum ConnectionState {
592
- AUTHORIZED = "AUTHORIZED",
593
- AUTHORIZING = "AUTHORIZING",
594
- CREATING = "CREATING",
595
- DEAUTHORIZED = "DEAUTHORIZED",
596
- DEAUTHORIZING = "DEAUTHORIZING",
597
- DELETING = "DELETING",
598
- UPDATING = "UPDATING"
599
- }
627
+ export declare const ConnectionState: {
628
+ readonly AUTHORIZED: "AUTHORIZED";
629
+ readonly AUTHORIZING: "AUTHORIZING";
630
+ readonly CREATING: "CREATING";
631
+ readonly DEAUTHORIZED: "DEAUTHORIZED";
632
+ readonly DEAUTHORIZING: "DEAUTHORIZING";
633
+ readonly DELETING: "DELETING";
634
+ readonly UPDATING: "UPDATING";
635
+ };
636
+ /**
637
+ * @public
638
+ */
639
+ export type ConnectionState = (typeof ConnectionState)[keyof typeof ConnectionState];
600
640
  /**
601
641
  * @public
602
642
  */
@@ -630,11 +670,16 @@ export interface EndpointEventBus {
630
670
  }
631
671
  /**
632
672
  * @public
673
+ * @enum
633
674
  */
634
- export declare enum ReplicationState {
635
- DISABLED = "DISABLED",
636
- ENABLED = "ENABLED"
637
- }
675
+ export declare const ReplicationState: {
676
+ readonly DISABLED: "DISABLED";
677
+ readonly ENABLED: "ENABLED";
678
+ };
679
+ /**
680
+ * @public
681
+ */
682
+ export type ReplicationState = (typeof ReplicationState)[keyof typeof ReplicationState];
638
683
  /**
639
684
  * @public
640
685
  * <p>Endpoints can replicate all events to the secondary Region.</p>
@@ -724,16 +769,21 @@ export interface CreateEndpointRequest {
724
769
  }
725
770
  /**
726
771
  * @public
772
+ * @enum
727
773
  */
728
- export declare enum EndpointState {
729
- ACTIVE = "ACTIVE",
730
- CREATE_FAILED = "CREATE_FAILED",
731
- CREATING = "CREATING",
732
- DELETE_FAILED = "DELETE_FAILED",
733
- DELETING = "DELETING",
734
- UPDATE_FAILED = "UPDATE_FAILED",
735
- UPDATING = "UPDATING"
736
- }
774
+ export declare const EndpointState: {
775
+ readonly ACTIVE: "ACTIVE";
776
+ readonly CREATE_FAILED: "CREATE_FAILED";
777
+ readonly CREATING: "CREATING";
778
+ readonly DELETE_FAILED: "DELETE_FAILED";
779
+ readonly DELETING: "DELETING";
780
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
781
+ readonly UPDATING: "UPDATING";
782
+ };
783
+ /**
784
+ * @public
785
+ */
786
+ export type EndpointState = (typeof EndpointState)[keyof typeof EndpointState];
737
787
  /**
738
788
  * @public
739
789
  */
@@ -1389,12 +1439,17 @@ export interface DescribeEventSourceRequest {
1389
1439
  }
1390
1440
  /**
1391
1441
  * @public
1442
+ * @enum
1392
1443
  */
1393
- export declare enum EventSourceState {
1394
- ACTIVE = "ACTIVE",
1395
- DELETED = "DELETED",
1396
- PENDING = "PENDING"
1397
- }
1444
+ export declare const EventSourceState: {
1445
+ readonly ACTIVE: "ACTIVE";
1446
+ readonly DELETED: "DELETED";
1447
+ readonly PENDING: "PENDING";
1448
+ };
1449
+ /**
1450
+ * @public
1451
+ */
1452
+ export type EventSourceState = (typeof EventSourceState)[keyof typeof EventSourceState];
1398
1453
  /**
1399
1454
  * @public
1400
1455
  */
@@ -1543,11 +1598,16 @@ export interface DescribeRuleRequest {
1543
1598
  }
1544
1599
  /**
1545
1600
  * @public
1601
+ * @enum
1546
1602
  */
1547
- export declare enum RuleState {
1548
- DISABLED = "DISABLED",
1549
- ENABLED = "ENABLED"
1550
- }
1603
+ export declare const RuleState: {
1604
+ readonly DISABLED: "DISABLED";
1605
+ readonly ENABLED: "ENABLED";
1606
+ };
1607
+ /**
1608
+ * @public
1609
+ */
1610
+ export type RuleState = (typeof RuleState)[keyof typeof RuleState];
1551
1611
  /**
1552
1612
  * @public
1553
1613
  */
@@ -2441,12 +2501,17 @@ export interface CapacityProviderStrategyItem {
2441
2501
  }
2442
2502
  /**
2443
2503
  * @public
2504
+ * @enum
2444
2505
  */
2445
- export declare enum LaunchType {
2446
- EC2 = "EC2",
2447
- EXTERNAL = "EXTERNAL",
2448
- FARGATE = "FARGATE"
2449
- }
2506
+ export declare const LaunchType: {
2507
+ readonly EC2: "EC2";
2508
+ readonly EXTERNAL: "EXTERNAL";
2509
+ readonly FARGATE: "FARGATE";
2510
+ };
2511
+ /**
2512
+ * @public
2513
+ */
2514
+ export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
2450
2515
  /**
2451
2516
  * @public
2452
2517
  * <p>This structure specifies the VPC subnets and security groups for the task, and whether a
@@ -2486,11 +2551,16 @@ export interface NetworkConfiguration {
2486
2551
  }
2487
2552
  /**
2488
2553
  * @public
2554
+ * @enum
2489
2555
  */
2490
- export declare enum PlacementConstraintType {
2491
- DISTINCT_INSTANCE = "distinctInstance",
2492
- MEMBER_OF = "memberOf"
2493
- }
2556
+ export declare const PlacementConstraintType: {
2557
+ readonly DISTINCT_INSTANCE: "distinctInstance";
2558
+ readonly MEMBER_OF: "memberOf";
2559
+ };
2560
+ /**
2561
+ * @public
2562
+ */
2563
+ export type PlacementConstraintType = (typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
2494
2564
  /**
2495
2565
  * @public
2496
2566
  * <p>An object representing a constraint on task placement. To learn more, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html">Task Placement Constraints</a> in the Amazon Elastic Container Service Developer
@@ -2512,12 +2582,17 @@ export interface PlacementConstraint {
2512
2582
  }
2513
2583
  /**
2514
2584
  * @public
2585
+ * @enum
2515
2586
  */
2516
- export declare enum PlacementStrategyType {
2517
- BINPACK = "binpack",
2518
- RANDOM = "random",
2519
- SPREAD = "spread"
2520
- }
2587
+ export declare const PlacementStrategyType: {
2588
+ readonly BINPACK: "binpack";
2589
+ readonly RANDOM: "random";
2590
+ readonly SPREAD: "spread";
2591
+ };
2592
+ /**
2593
+ * @public
2594
+ */
2595
+ export type PlacementStrategyType = (typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
2521
2596
  /**
2522
2597
  * @public
2523
2598
  * <p>The task placement strategy for a task or service. To learn more, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-strategies.html">Task Placement Strategies</a> in the Amazon Elastic Container Service Service Developer
@@ -2544,10 +2619,15 @@ export interface PlacementStrategy {
2544
2619
  }
2545
2620
  /**
2546
2621
  * @public
2622
+ * @enum
2547
2623
  */
2548
- export declare enum PropagateTags {
2549
- TASK_DEFINITION = "TASK_DEFINITION"
2550
- }
2624
+ export declare const PropagateTags: {
2625
+ readonly TASK_DEFINITION: "TASK_DEFINITION";
2626
+ };
2627
+ /**
2628
+ * @public
2629
+ */
2630
+ export type PropagateTags = (typeof PropagateTags)[keyof typeof PropagateTags];
2551
2631
  /**
2552
2632
  * @public
2553
2633
  * <p>The custom parameters to be used when the target is an Amazon ECS task.</p>