@aws-sdk/client-ivs-realtime 3.817.0 → 3.821.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 (39) hide show
  1. package/README.md +47 -0
  2. package/dist-cjs/index.js +190 -1
  3. package/dist-es/IVSRealTime.js +6 -0
  4. package/dist-es/commands/ListParticipantReplicasCommand.js +22 -0
  5. package/dist-es/commands/StartParticipantReplicationCommand.js +22 -0
  6. package/dist-es/commands/StopParticipantReplicationCommand.js +22 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/models_0.js +11 -0
  9. package/dist-es/pagination/ListParticipantReplicasPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +1 -0
  11. package/dist-es/protocols/Aws_restJson1.js +108 -0
  12. package/dist-types/IVSRealTime.d.ts +44 -0
  13. package/dist-types/IVSRealTimeClient.d.ts +28 -2
  14. package/dist-types/commands/CreateStageCommand.d.ts +2 -0
  15. package/dist-types/commands/GetParticipantCommand.d.ts +4 -0
  16. package/dist-types/commands/GetStageCommand.d.ts +1 -0
  17. package/dist-types/commands/ListParticipantEventsCommand.d.ts +3 -0
  18. package/dist-types/commands/ListParticipantReplicasCommand.d.ts +91 -0
  19. package/dist-types/commands/ListParticipantsCommand.d.ts +4 -0
  20. package/dist-types/commands/StartParticipantReplicationCommand.d.ts +105 -0
  21. package/dist-types/commands/StopParticipantReplicationCommand.d.ts +92 -0
  22. package/dist-types/commands/UpdateStageCommand.d.ts +2 -0
  23. package/dist-types/commands/index.d.ts +3 -0
  24. package/dist-types/index.d.ts +23 -0
  25. package/dist-types/models/models_0.d.ts +322 -4
  26. package/dist-types/pagination/ListParticipantReplicasPaginator.d.ts +7 -0
  27. package/dist-types/pagination/index.d.ts +1 -0
  28. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  29. package/dist-types/ts3.4/IVSRealTime.d.ts +51 -0
  30. package/dist-types/ts3.4/IVSRealTimeClient.d.ts +18 -0
  31. package/dist-types/ts3.4/commands/ListParticipantReplicasCommand.d.ts +51 -0
  32. package/dist-types/ts3.4/commands/StartParticipantReplicationCommand.d.ts +51 -0
  33. package/dist-types/ts3.4/commands/StopParticipantReplicationCommand.d.ts +51 -0
  34. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +75 -0
  36. package/dist-types/ts3.4/pagination/ListParticipantReplicasPaginator.d.ts +11 -0
  37. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  38. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  39. package/package.json +33 -33
@@ -95,6 +95,10 @@ import {
95
95
  ListParticipantEventsCommandInput,
96
96
  ListParticipantEventsCommandOutput,
97
97
  } from "./commands/ListParticipantEventsCommand";
98
+ import {
99
+ ListParticipantReplicasCommandInput,
100
+ ListParticipantReplicasCommandOutput,
101
+ } from "./commands/ListParticipantReplicasCommand";
98
102
  import {
99
103
  ListParticipantsCommandInput,
100
104
  ListParticipantsCommandOutput,
@@ -123,10 +127,18 @@ import {
123
127
  StartCompositionCommandInput,
124
128
  StartCompositionCommandOutput,
125
129
  } from "./commands/StartCompositionCommand";
130
+ import {
131
+ StartParticipantReplicationCommandInput,
132
+ StartParticipantReplicationCommandOutput,
133
+ } from "./commands/StartParticipantReplicationCommand";
126
134
  import {
127
135
  StopCompositionCommandInput,
128
136
  StopCompositionCommandOutput,
129
137
  } from "./commands/StopCompositionCommand";
138
+ import {
139
+ StopParticipantReplicationCommandInput,
140
+ StopParticipantReplicationCommandOutput,
141
+ } from "./commands/StopParticipantReplicationCommand";
130
142
  import {
131
143
  TagResourceCommandInput,
132
144
  TagResourceCommandOutput,
@@ -462,6 +474,19 @@ export interface IVSRealTime {
462
474
  options: __HttpHandlerOptions,
463
475
  cb: (err: any, data?: ListParticipantEventsCommandOutput) => void
464
476
  ): void;
477
+ listParticipantReplicas(
478
+ args: ListParticipantReplicasCommandInput,
479
+ options?: __HttpHandlerOptions
480
+ ): Promise<ListParticipantReplicasCommandOutput>;
481
+ listParticipantReplicas(
482
+ args: ListParticipantReplicasCommandInput,
483
+ cb: (err: any, data?: ListParticipantReplicasCommandOutput) => void
484
+ ): void;
485
+ listParticipantReplicas(
486
+ args: ListParticipantReplicasCommandInput,
487
+ options: __HttpHandlerOptions,
488
+ cb: (err: any, data?: ListParticipantReplicasCommandOutput) => void
489
+ ): void;
465
490
  listParticipants(
466
491
  args: ListParticipantsCommandInput,
467
492
  options?: __HttpHandlerOptions
@@ -556,6 +581,19 @@ export interface IVSRealTime {
556
581
  options: __HttpHandlerOptions,
557
582
  cb: (err: any, data?: StartCompositionCommandOutput) => void
558
583
  ): void;
584
+ startParticipantReplication(
585
+ args: StartParticipantReplicationCommandInput,
586
+ options?: __HttpHandlerOptions
587
+ ): Promise<StartParticipantReplicationCommandOutput>;
588
+ startParticipantReplication(
589
+ args: StartParticipantReplicationCommandInput,
590
+ cb: (err: any, data?: StartParticipantReplicationCommandOutput) => void
591
+ ): void;
592
+ startParticipantReplication(
593
+ args: StartParticipantReplicationCommandInput,
594
+ options: __HttpHandlerOptions,
595
+ cb: (err: any, data?: StartParticipantReplicationCommandOutput) => void
596
+ ): void;
559
597
  stopComposition(
560
598
  args: StopCompositionCommandInput,
561
599
  options?: __HttpHandlerOptions
@@ -569,6 +607,19 @@ export interface IVSRealTime {
569
607
  options: __HttpHandlerOptions,
570
608
  cb: (err: any, data?: StopCompositionCommandOutput) => void
571
609
  ): void;
610
+ stopParticipantReplication(
611
+ args: StopParticipantReplicationCommandInput,
612
+ options?: __HttpHandlerOptions
613
+ ): Promise<StopParticipantReplicationCommandOutput>;
614
+ stopParticipantReplication(
615
+ args: StopParticipantReplicationCommandInput,
616
+ cb: (err: any, data?: StopParticipantReplicationCommandOutput) => void
617
+ ): void;
618
+ stopParticipantReplication(
619
+ args: StopParticipantReplicationCommandInput,
620
+ options: __HttpHandlerOptions,
621
+ cb: (err: any, data?: StopParticipantReplicationCommandOutput) => void
622
+ ): void;
572
623
  tagResource(
573
624
  args: TagResourceCommandInput,
574
625
  options?: __HttpHandlerOptions
@@ -141,6 +141,10 @@ import {
141
141
  ListParticipantEventsCommandInput,
142
142
  ListParticipantEventsCommandOutput,
143
143
  } from "./commands/ListParticipantEventsCommand";
144
+ import {
145
+ ListParticipantReplicasCommandInput,
146
+ ListParticipantReplicasCommandOutput,
147
+ } from "./commands/ListParticipantReplicasCommand";
144
148
  import {
145
149
  ListParticipantsCommandInput,
146
150
  ListParticipantsCommandOutput,
@@ -169,10 +173,18 @@ import {
169
173
  StartCompositionCommandInput,
170
174
  StartCompositionCommandOutput,
171
175
  } from "./commands/StartCompositionCommand";
176
+ import {
177
+ StartParticipantReplicationCommandInput,
178
+ StartParticipantReplicationCommandOutput,
179
+ } from "./commands/StartParticipantReplicationCommand";
172
180
  import {
173
181
  StopCompositionCommandInput,
174
182
  StopCompositionCommandOutput,
175
183
  } from "./commands/StopCompositionCommand";
184
+ import {
185
+ StopParticipantReplicationCommandInput,
186
+ StopParticipantReplicationCommandOutput,
187
+ } from "./commands/StopParticipantReplicationCommand";
176
188
  import {
177
189
  TagResourceCommandInput,
178
190
  TagResourceCommandOutput,
@@ -221,6 +233,7 @@ export type ServiceInputTypes =
221
233
  | ListEncoderConfigurationsCommandInput
222
234
  | ListIngestConfigurationsCommandInput
223
235
  | ListParticipantEventsCommandInput
236
+ | ListParticipantReplicasCommandInput
224
237
  | ListParticipantsCommandInput
225
238
  | ListPublicKeysCommandInput
226
239
  | ListStageSessionsCommandInput
@@ -228,7 +241,9 @@ export type ServiceInputTypes =
228
241
  | ListStorageConfigurationsCommandInput
229
242
  | ListTagsForResourceCommandInput
230
243
  | StartCompositionCommandInput
244
+ | StartParticipantReplicationCommandInput
231
245
  | StopCompositionCommandInput
246
+ | StopParticipantReplicationCommandInput
232
247
  | TagResourceCommandInput
233
248
  | UntagResourceCommandInput
234
249
  | UpdateIngestConfigurationCommandInput
@@ -258,6 +273,7 @@ export type ServiceOutputTypes =
258
273
  | ListEncoderConfigurationsCommandOutput
259
274
  | ListIngestConfigurationsCommandOutput
260
275
  | ListParticipantEventsCommandOutput
276
+ | ListParticipantReplicasCommandOutput
261
277
  | ListParticipantsCommandOutput
262
278
  | ListPublicKeysCommandOutput
263
279
  | ListStageSessionsCommandOutput
@@ -265,7 +281,9 @@ export type ServiceOutputTypes =
265
281
  | ListStorageConfigurationsCommandOutput
266
282
  | ListTagsForResourceCommandOutput
267
283
  | StartCompositionCommandOutput
284
+ | StartParticipantReplicationCommandOutput
268
285
  | StopCompositionCommandOutput
286
+ | StopParticipantReplicationCommandOutput
269
287
  | TagResourceCommandOutput
270
288
  | UntagResourceCommandOutput
271
289
  | UpdateIngestConfigurationCommandOutput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ IVSRealTimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../IVSRealTimeClient";
8
+ import {
9
+ ListParticipantReplicasRequest,
10
+ ListParticipantReplicasResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListParticipantReplicasCommandInput
15
+ extends ListParticipantReplicasRequest {}
16
+ export interface ListParticipantReplicasCommandOutput
17
+ extends ListParticipantReplicasResponse,
18
+ __MetadataBearer {}
19
+ declare const ListParticipantReplicasCommand_base: {
20
+ new (
21
+ input: ListParticipantReplicasCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListParticipantReplicasCommandInput,
24
+ ListParticipantReplicasCommandOutput,
25
+ IVSRealTimeClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListParticipantReplicasCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListParticipantReplicasCommandInput,
33
+ ListParticipantReplicasCommandOutput,
34
+ IVSRealTimeClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListParticipantReplicasCommand extends ListParticipantReplicasCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListParticipantReplicasRequest;
44
+ output: ListParticipantReplicasResponse;
45
+ };
46
+ sdk: {
47
+ input: ListParticipantReplicasCommandInput;
48
+ output: ListParticipantReplicasCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ IVSRealTimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../IVSRealTimeClient";
8
+ import {
9
+ StartParticipantReplicationRequest,
10
+ StartParticipantReplicationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface StartParticipantReplicationCommandInput
15
+ extends StartParticipantReplicationRequest {}
16
+ export interface StartParticipantReplicationCommandOutput
17
+ extends StartParticipantReplicationResponse,
18
+ __MetadataBearer {}
19
+ declare const StartParticipantReplicationCommand_base: {
20
+ new (
21
+ input: StartParticipantReplicationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ StartParticipantReplicationCommandInput,
24
+ StartParticipantReplicationCommandOutput,
25
+ IVSRealTimeClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: StartParticipantReplicationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ StartParticipantReplicationCommandInput,
33
+ StartParticipantReplicationCommandOutput,
34
+ IVSRealTimeClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class StartParticipantReplicationCommand extends StartParticipantReplicationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: StartParticipantReplicationRequest;
44
+ output: StartParticipantReplicationResponse;
45
+ };
46
+ sdk: {
47
+ input: StartParticipantReplicationCommandInput;
48
+ output: StartParticipantReplicationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ IVSRealTimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../IVSRealTimeClient";
8
+ import {
9
+ StopParticipantReplicationRequest,
10
+ StopParticipantReplicationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface StopParticipantReplicationCommandInput
15
+ extends StopParticipantReplicationRequest {}
16
+ export interface StopParticipantReplicationCommandOutput
17
+ extends StopParticipantReplicationResponse,
18
+ __MetadataBearer {}
19
+ declare const StopParticipantReplicationCommand_base: {
20
+ new (
21
+ input: StopParticipantReplicationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ StopParticipantReplicationCommandInput,
24
+ StopParticipantReplicationCommandOutput,
25
+ IVSRealTimeClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: StopParticipantReplicationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ StopParticipantReplicationCommandInput,
33
+ StopParticipantReplicationCommandOutput,
34
+ IVSRealTimeClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class StopParticipantReplicationCommand extends StopParticipantReplicationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: StopParticipantReplicationRequest;
44
+ output: StopParticipantReplicationResponse;
45
+ };
46
+ sdk: {
47
+ input: StopParticipantReplicationCommandInput;
48
+ output: StopParticipantReplicationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -22,6 +22,7 @@ export * from "./ListCompositionsCommand";
22
22
  export * from "./ListEncoderConfigurationsCommand";
23
23
  export * from "./ListIngestConfigurationsCommand";
24
24
  export * from "./ListParticipantEventsCommand";
25
+ export * from "./ListParticipantReplicasCommand";
25
26
  export * from "./ListParticipantsCommand";
26
27
  export * from "./ListPublicKeysCommand";
27
28
  export * from "./ListStageSessionsCommand";
@@ -29,7 +30,9 @@ export * from "./ListStagesCommand";
29
30
  export * from "./ListStorageConfigurationsCommand";
30
31
  export * from "./ListTagsForResourceCommand";
31
32
  export * from "./StartCompositionCommand";
33
+ export * from "./StartParticipantReplicationCommand";
32
34
  export * from "./StopCompositionCommand";
35
+ export * from "./StopParticipantReplicationCommand";
33
36
  export * from "./TagResourceCommand";
34
37
  export * from "./UntagResourceCommand";
35
38
  export * from "./UpdateIngestConfigurationCommand";
@@ -224,6 +224,7 @@ export interface AutoParticipantRecordingConfiguration {
224
224
  thumbnailConfiguration?: ParticipantThumbnailConfiguration | undefined;
225
225
  recordingReconnectWindowSeconds?: number | undefined;
226
226
  hlsConfiguration?: ParticipantRecordingHlsConfiguration | undefined;
227
+ recordParticipantReplicas?: boolean | undefined;
227
228
  }
228
229
  export interface ParticipantTokenConfiguration {
229
230
  duration?: number | undefined;
@@ -467,6 +468,19 @@ export declare const ParticipantRecordingState: {
467
468
  };
468
469
  export type ParticipantRecordingState =
469
470
  (typeof ParticipantRecordingState)[keyof typeof ParticipantRecordingState];
471
+ export declare const ReplicationState: {
472
+ readonly ACTIVE: "ACTIVE";
473
+ readonly STOPPED: "STOPPED";
474
+ };
475
+ export type ReplicationState =
476
+ (typeof ReplicationState)[keyof typeof ReplicationState];
477
+ export declare const ReplicationType: {
478
+ readonly NONE: "NONE";
479
+ readonly REPLICA: "REPLICA";
480
+ readonly SOURCE: "SOURCE";
481
+ };
482
+ export type ReplicationType =
483
+ (typeof ReplicationType)[keyof typeof ReplicationType];
470
484
  export declare const ParticipantState: {
471
485
  readonly CONNECTED: "CONNECTED";
472
486
  readonly DISCONNECTED: "DISCONNECTED";
@@ -490,6 +504,10 @@ export interface Participant {
490
504
  recordingS3Prefix?: string | undefined;
491
505
  recordingState?: ParticipantRecordingState | undefined;
492
506
  protocol?: ParticipantProtocol | undefined;
507
+ replicationType?: ReplicationType | undefined;
508
+ replicationState?: ReplicationState | undefined;
509
+ sourceStageArn?: string | undefined;
510
+ sourceSessionId?: string | undefined;
493
511
  }
494
512
  export interface GetParticipantResponse {
495
513
  participant?: Participant | undefined;
@@ -628,6 +646,8 @@ export declare const EventName: {
628
646
  readonly PUBLISH_ERROR: "PUBLISH_ERROR";
629
647
  readonly PUBLISH_STARTED: "PUBLISH_STARTED";
630
648
  readonly PUBLISH_STOPPED: "PUBLISH_STOPPED";
649
+ readonly REPLICATION_STARTED: "REPLICATION_STARTED";
650
+ readonly REPLICATION_STOPPED: "REPLICATION_STOPPED";
631
651
  readonly SUBSCRIBE_ERROR: "SUBSCRIBE_ERROR";
632
652
  readonly SUBSCRIBE_STARTED: "SUBSCRIBE_STARTED";
633
653
  readonly SUBSCRIBE_STOPPED: "SUBSCRIBE_STOPPED";
@@ -639,11 +659,32 @@ export interface Event {
639
659
  eventTime?: Date | undefined;
640
660
  remoteParticipantId?: string | undefined;
641
661
  errorCode?: EventErrorCode | undefined;
662
+ destinationStageArn?: string | undefined;
663
+ destinationSessionId?: string | undefined;
664
+ replica?: boolean | undefined;
642
665
  }
643
666
  export interface ListParticipantEventsResponse {
644
667
  events: Event[] | undefined;
645
668
  nextToken?: string | undefined;
646
669
  }
670
+ export interface ListParticipantReplicasRequest {
671
+ sourceStageArn: string | undefined;
672
+ participantId: string | undefined;
673
+ nextToken?: string | undefined;
674
+ maxResults?: number | undefined;
675
+ }
676
+ export interface ParticipantReplica {
677
+ sourceStageArn: string | undefined;
678
+ participantId: string | undefined;
679
+ sourceSessionId: string | undefined;
680
+ destinationStageArn: string | undefined;
681
+ destinationSessionId: string | undefined;
682
+ replicationState: ReplicationState | undefined;
683
+ }
684
+ export interface ListParticipantReplicasResponse {
685
+ replicas: ParticipantReplica[] | undefined;
686
+ nextToken?: string | undefined;
687
+ }
647
688
  export declare const ParticipantRecordingFilterByRecordingState: {
648
689
  readonly ACTIVE: "ACTIVE";
649
690
  readonly FAILED: "FAILED";
@@ -672,6 +713,10 @@ export interface ParticipantSummary {
672
713
  firstJoinTime?: Date | undefined;
673
714
  published?: boolean | undefined;
674
715
  recordingState?: ParticipantRecordingState | undefined;
716
+ replicationType?: ReplicationType | undefined;
717
+ replicationState?: ReplicationState | undefined;
718
+ sourceStageArn?: string | undefined;
719
+ sourceSessionId?: string | undefined;
675
720
  }
676
721
  export interface ListParticipantsResponse {
677
722
  participants: ParticipantSummary[] | undefined;
@@ -748,10 +793,40 @@ export interface StartCompositionRequest {
748
793
  export interface StartCompositionResponse {
749
794
  composition?: Composition | undefined;
750
795
  }
796
+ export interface StartParticipantReplicationRequest {
797
+ sourceStageArn: string | undefined;
798
+ destinationStageArn: string | undefined;
799
+ participantId: string | undefined;
800
+ reconnectWindowSeconds?: number | undefined;
801
+ attributes?: Record<string, string> | undefined;
802
+ }
803
+ export interface StartParticipantReplicationResponse {
804
+ accessControlAllowOrigin?: string | undefined;
805
+ accessControlExposeHeaders?: string | undefined;
806
+ cacheControl?: string | undefined;
807
+ contentSecurityPolicy?: string | undefined;
808
+ strictTransportSecurity?: string | undefined;
809
+ xContentTypeOptions?: string | undefined;
810
+ xFrameOptions?: string | undefined;
811
+ }
751
812
  export interface StopCompositionRequest {
752
813
  arn: string | undefined;
753
814
  }
754
815
  export interface StopCompositionResponse {}
816
+ export interface StopParticipantReplicationRequest {
817
+ sourceStageArn: string | undefined;
818
+ destinationStageArn: string | undefined;
819
+ participantId: string | undefined;
820
+ }
821
+ export interface StopParticipantReplicationResponse {
822
+ accessControlAllowOrigin?: string | undefined;
823
+ accessControlExposeHeaders?: string | undefined;
824
+ cacheControl?: string | undefined;
825
+ contentSecurityPolicy?: string | undefined;
826
+ strictTransportSecurity?: string | undefined;
827
+ xContentTypeOptions?: string | undefined;
828
+ xFrameOptions?: string | undefined;
829
+ }
755
830
  export interface TagResourceRequest {
756
831
  resourceArn: string | undefined;
757
832
  tags: Record<string, string> | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListParticipantReplicasCommandInput,
4
+ ListParticipantReplicasCommandOutput,
5
+ } from "../commands/ListParticipantReplicasCommand";
6
+ import { IVSRealTimePaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListParticipantReplicas: (
8
+ config: IVSRealTimePaginationConfiguration,
9
+ input: ListParticipantReplicasCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListParticipantReplicasCommandOutput>;
@@ -3,6 +3,7 @@ export * from "./ListCompositionsPaginator";
3
3
  export * from "./ListEncoderConfigurationsPaginator";
4
4
  export * from "./ListIngestConfigurationsPaginator";
5
5
  export * from "./ListParticipantEventsPaginator";
6
+ export * from "./ListParticipantReplicasPaginator";
6
7
  export * from "./ListParticipantsPaginator";
7
8
  export * from "./ListPublicKeysPaginator";
8
9
  export * from "./ListStageSessionsPaginator";
@@ -99,6 +99,10 @@ import {
99
99
  ListParticipantEventsCommandInput,
100
100
  ListParticipantEventsCommandOutput,
101
101
  } from "../commands/ListParticipantEventsCommand";
102
+ import {
103
+ ListParticipantReplicasCommandInput,
104
+ ListParticipantReplicasCommandOutput,
105
+ } from "../commands/ListParticipantReplicasCommand";
102
106
  import {
103
107
  ListParticipantsCommandInput,
104
108
  ListParticipantsCommandOutput,
@@ -127,10 +131,18 @@ import {
127
131
  StartCompositionCommandInput,
128
132
  StartCompositionCommandOutput,
129
133
  } from "../commands/StartCompositionCommand";
134
+ import {
135
+ StartParticipantReplicationCommandInput,
136
+ StartParticipantReplicationCommandOutput,
137
+ } from "../commands/StartParticipantReplicationCommand";
130
138
  import {
131
139
  StopCompositionCommandInput,
132
140
  StopCompositionCommandOutput,
133
141
  } from "../commands/StopCompositionCommand";
142
+ import {
143
+ StopParticipantReplicationCommandInput,
144
+ StopParticipantReplicationCommandOutput,
145
+ } from "../commands/StopParticipantReplicationCommand";
134
146
  import {
135
147
  TagResourceCommandInput,
136
148
  TagResourceCommandOutput,
@@ -243,6 +255,10 @@ export declare const se_ListParticipantEventsCommand: (
243
255
  input: ListParticipantEventsCommandInput,
244
256
  context: __SerdeContext
245
257
  ) => Promise<__HttpRequest>;
258
+ export declare const se_ListParticipantReplicasCommand: (
259
+ input: ListParticipantReplicasCommandInput,
260
+ context: __SerdeContext
261
+ ) => Promise<__HttpRequest>;
246
262
  export declare const se_ListParticipantsCommand: (
247
263
  input: ListParticipantsCommandInput,
248
264
  context: __SerdeContext
@@ -271,10 +287,18 @@ export declare const se_StartCompositionCommand: (
271
287
  input: StartCompositionCommandInput,
272
288
  context: __SerdeContext
273
289
  ) => Promise<__HttpRequest>;
290
+ export declare const se_StartParticipantReplicationCommand: (
291
+ input: StartParticipantReplicationCommandInput,
292
+ context: __SerdeContext
293
+ ) => Promise<__HttpRequest>;
274
294
  export declare const se_StopCompositionCommand: (
275
295
  input: StopCompositionCommandInput,
276
296
  context: __SerdeContext
277
297
  ) => Promise<__HttpRequest>;
298
+ export declare const se_StopParticipantReplicationCommand: (
299
+ input: StopParticipantReplicationCommandInput,
300
+ context: __SerdeContext
301
+ ) => Promise<__HttpRequest>;
278
302
  export declare const se_TagResourceCommand: (
279
303
  input: TagResourceCommandInput,
280
304
  context: __SerdeContext
@@ -387,6 +411,10 @@ export declare const de_ListParticipantEventsCommand: (
387
411
  output: __HttpResponse,
388
412
  context: __SerdeContext
389
413
  ) => Promise<ListParticipantEventsCommandOutput>;
414
+ export declare const de_ListParticipantReplicasCommand: (
415
+ output: __HttpResponse,
416
+ context: __SerdeContext
417
+ ) => Promise<ListParticipantReplicasCommandOutput>;
390
418
  export declare const de_ListParticipantsCommand: (
391
419
  output: __HttpResponse,
392
420
  context: __SerdeContext
@@ -415,10 +443,18 @@ export declare const de_StartCompositionCommand: (
415
443
  output: __HttpResponse,
416
444
  context: __SerdeContext
417
445
  ) => Promise<StartCompositionCommandOutput>;
446
+ export declare const de_StartParticipantReplicationCommand: (
447
+ output: __HttpResponse,
448
+ context: __SerdeContext
449
+ ) => Promise<StartParticipantReplicationCommandOutput>;
418
450
  export declare const de_StopCompositionCommand: (
419
451
  output: __HttpResponse,
420
452
  context: __SerdeContext
421
453
  ) => Promise<StopCompositionCommandOutput>;
454
+ export declare const de_StopParticipantReplicationCommand: (
455
+ output: __HttpResponse,
456
+ context: __SerdeContext
457
+ ) => Promise<StopParticipantReplicationCommandOutput>;
422
458
  export declare const de_TagResourceCommand: (
423
459
  output: __HttpResponse,
424
460
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ivs-realtime",
3
3
  "description": "AWS SDK for JavaScript Ivs Realtime Client for Node.js, Browser and React Native",
4
- "version": "3.817.0",
4
+ "version": "3.821.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-ivs-realtime",
@@ -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.816.0",
24
- "@aws-sdk/credential-provider-node": "3.817.0",
25
- "@aws-sdk/middleware-host-header": "3.804.0",
26
- "@aws-sdk/middleware-logger": "3.804.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.804.0",
28
- "@aws-sdk/middleware-user-agent": "3.816.0",
29
- "@aws-sdk/region-config-resolver": "3.808.0",
30
- "@aws-sdk/types": "3.804.0",
31
- "@aws-sdk/util-endpoints": "3.808.0",
32
- "@aws-sdk/util-user-agent-browser": "3.804.0",
33
- "@aws-sdk/util-user-agent-node": "3.816.0",
34
- "@smithy/config-resolver": "^4.1.2",
35
- "@smithy/core": "^3.3.3",
36
- "@smithy/fetch-http-handler": "^5.0.2",
37
- "@smithy/hash-node": "^4.0.2",
38
- "@smithy/invalid-dependency": "^4.0.2",
39
- "@smithy/middleware-content-length": "^4.0.2",
40
- "@smithy/middleware-endpoint": "^4.1.6",
41
- "@smithy/middleware-retry": "^4.1.7",
42
- "@smithy/middleware-serde": "^4.0.5",
43
- "@smithy/middleware-stack": "^4.0.2",
44
- "@smithy/node-config-provider": "^4.1.1",
45
- "@smithy/node-http-handler": "^4.0.4",
46
- "@smithy/protocol-http": "^5.1.0",
47
- "@smithy/smithy-client": "^4.2.6",
48
- "@smithy/types": "^4.2.0",
49
- "@smithy/url-parser": "^4.0.2",
23
+ "@aws-sdk/core": "3.821.0",
24
+ "@aws-sdk/credential-provider-node": "3.821.0",
25
+ "@aws-sdk/middleware-host-header": "3.821.0",
26
+ "@aws-sdk/middleware-logger": "3.821.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.821.0",
28
+ "@aws-sdk/middleware-user-agent": "3.821.0",
29
+ "@aws-sdk/region-config-resolver": "3.821.0",
30
+ "@aws-sdk/types": "3.821.0",
31
+ "@aws-sdk/util-endpoints": "3.821.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.821.0",
33
+ "@aws-sdk/util-user-agent-node": "3.821.0",
34
+ "@smithy/config-resolver": "^4.1.4",
35
+ "@smithy/core": "^3.5.1",
36
+ "@smithy/fetch-http-handler": "^5.0.4",
37
+ "@smithy/hash-node": "^4.0.4",
38
+ "@smithy/invalid-dependency": "^4.0.4",
39
+ "@smithy/middleware-content-length": "^4.0.4",
40
+ "@smithy/middleware-endpoint": "^4.1.9",
41
+ "@smithy/middleware-retry": "^4.1.10",
42
+ "@smithy/middleware-serde": "^4.0.8",
43
+ "@smithy/middleware-stack": "^4.0.4",
44
+ "@smithy/node-config-provider": "^4.1.3",
45
+ "@smithy/node-http-handler": "^4.0.6",
46
+ "@smithy/protocol-http": "^5.1.2",
47
+ "@smithy/smithy-client": "^4.4.1",
48
+ "@smithy/types": "^4.3.1",
49
+ "@smithy/url-parser": "^4.0.4",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.14",
54
- "@smithy/util-defaults-mode-node": "^4.0.14",
55
- "@smithy/util-endpoints": "^3.0.4",
56
- "@smithy/util-middleware": "^4.0.2",
57
- "@smithy/util-retry": "^4.0.3",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.17",
54
+ "@smithy/util-defaults-mode-node": "^4.0.17",
55
+ "@smithy/util-endpoints": "^3.0.6",
56
+ "@smithy/util-middleware": "^4.0.4",
57
+ "@smithy/util-retry": "^4.0.5",
58
58
  "@smithy/util-utf8": "^4.0.0",
59
59
  "@types/uuid": "^9.0.1",
60
60
  "tslib": "^2.6.2",