@aws-sdk/client-chime-sdk-messaging 3.295.0 → 3.296.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 (62) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/ChimeSDKMessaging.js +45 -0
  3. package/dist-cjs/commands/DeleteMessagingStreamingConfigurationsCommand.js +46 -0
  4. package/dist-cjs/commands/GetMessagingStreamingConfigurationsCommand.js +46 -0
  5. package/dist-cjs/commands/PutMessagingStreamingConfigurationsCommand.js +46 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/endpoint/ruleset.js +3 -3
  8. package/dist-cjs/models/models_0.js +32 -3
  9. package/dist-cjs/protocols/Aws_restJson1.js +243 -2
  10. package/dist-es/ChimeSDKMessaging.js +45 -0
  11. package/dist-es/commands/DeleteMessagingStreamingConfigurationsCommand.js +42 -0
  12. package/dist-es/commands/GetMessagingStreamingConfigurationsCommand.js +42 -0
  13. package/dist-es/commands/PutMessagingStreamingConfigurationsCommand.js +42 -0
  14. package/dist-es/commands/index.js +3 -0
  15. package/dist-es/endpoint/ruleset.js +3 -3
  16. package/dist-es/models/models_0.js +23 -0
  17. package/dist-es/protocols/Aws_restJson1.js +235 -0
  18. package/dist-types/ChimeSDKMessaging.d.ts +25 -40
  19. package/dist-types/ChimeSDKMessagingClient.d.ts +5 -2
  20. package/dist-types/commands/AssociateChannelFlowCommand.d.ts +0 -1
  21. package/dist-types/commands/CreateChannelBanCommand.d.ts +0 -1
  22. package/dist-types/commands/CreateChannelCommand.d.ts +0 -2
  23. package/dist-types/commands/CreateChannelFlowCommand.d.ts +1 -3
  24. package/dist-types/commands/CreateChannelMembershipCommand.d.ts +0 -4
  25. package/dist-types/commands/CreateChannelModeratorCommand.d.ts +0 -2
  26. package/dist-types/commands/DeleteChannelBanCommand.d.ts +0 -1
  27. package/dist-types/commands/DeleteChannelCommand.d.ts +0 -1
  28. package/dist-types/commands/DeleteChannelMembershipCommand.d.ts +0 -1
  29. package/dist-types/commands/DeleteChannelMessageCommand.d.ts +0 -1
  30. package/dist-types/commands/DeleteChannelModeratorCommand.d.ts +0 -1
  31. package/dist-types/commands/DeleteMessagingStreamingConfigurationsCommand.d.ts +60 -0
  32. package/dist-types/commands/DescribeChannelBanCommand.d.ts +0 -2
  33. package/dist-types/commands/DescribeChannelCommand.d.ts +0 -2
  34. package/dist-types/commands/DescribeChannelMembershipForAppInstanceUserCommand.d.ts +0 -1
  35. package/dist-types/commands/DescribeChannelModeratedByAppInstanceUserCommand.d.ts +0 -1
  36. package/dist-types/commands/GetChannelMessageCommand.d.ts +0 -1
  37. package/dist-types/commands/GetChannelMessageStatusCommand.d.ts +0 -3
  38. package/dist-types/commands/GetMessagingStreamingConfigurationsCommand.d.ts +66 -0
  39. package/dist-types/commands/ListChannelBansCommand.d.ts +0 -1
  40. package/dist-types/commands/ListChannelMembershipsCommand.d.ts +0 -2
  41. package/dist-types/commands/ListChannelMembershipsForAppInstanceUserCommand.d.ts +0 -1
  42. package/dist-types/commands/ListChannelsCommand.d.ts +0 -2
  43. package/dist-types/commands/ListChannelsModeratedByAppInstanceUserCommand.d.ts +0 -1
  44. package/dist-types/commands/PutMessagingStreamingConfigurationsCommand.d.ts +70 -0
  45. package/dist-types/commands/RedactChannelMessageCommand.d.ts +0 -1
  46. package/dist-types/commands/SendChannelMessageCommand.d.ts +0 -2
  47. package/dist-types/commands/UpdateChannelMessageCommand.d.ts +0 -1
  48. package/dist-types/commands/UpdateChannelReadMarkerCommand.d.ts +0 -1
  49. package/dist-types/commands/index.d.ts +3 -0
  50. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  51. package/dist-types/models/models_0.d.ts +75 -0
  52. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  53. package/dist-types/ts3.4/ChimeSDKMessaging.d.ts +69 -0
  54. package/dist-types/ts3.4/ChimeSDKMessagingClient.d.ts +18 -0
  55. package/dist-types/ts3.4/commands/DeleteMessagingStreamingConfigurationsCommand.d.ts +37 -0
  56. package/dist-types/ts3.4/commands/GetMessagingStreamingConfigurationsCommand.d.ts +41 -0
  57. package/dist-types/ts3.4/commands/PutMessagingStreamingConfigurationsCommand.d.ts +41 -0
  58. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  59. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  60. package/dist-types/ts3.4/models/models_0.d.ts +42 -0
  61. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  62. package/package.json +29 -29
@@ -1152,6 +1152,12 @@ export interface DeleteChannelModeratorRequest {
1152
1152
  */
1153
1153
  ChimeBearer: string | undefined;
1154
1154
  }
1155
+ export interface DeleteMessagingStreamingConfigurationsRequest {
1156
+ /**
1157
+ * <p>The ARN of the streaming configurations being deleted.</p>
1158
+ */
1159
+ AppInstanceArn: string | undefined;
1160
+ }
1155
1161
  export interface DescribeChannelRequest {
1156
1162
  /**
1157
1163
  * <p>The ARN of the channel.</p>
@@ -1400,6 +1406,35 @@ export interface GetMessagingSessionEndpointResponse {
1400
1406
  */
1401
1407
  Endpoint?: MessagingSessionEndpoint;
1402
1408
  }
1409
+ export interface GetMessagingStreamingConfigurationsRequest {
1410
+ /**
1411
+ * <p>The ARN of the streaming configurations.</p>
1412
+ */
1413
+ AppInstanceArn: string | undefined;
1414
+ }
1415
+ export declare enum MessagingDataType {
1416
+ Channel = "Channel",
1417
+ ChannelMessage = "ChannelMessage"
1418
+ }
1419
+ /**
1420
+ * <p>The configuration for connecting a messaging stream to Amazon Kinesis.</p>
1421
+ */
1422
+ export interface StreamingConfiguration {
1423
+ /**
1424
+ * <p>The data type of the configuration.</p>
1425
+ */
1426
+ DataType: MessagingDataType | string | undefined;
1427
+ /**
1428
+ * <p>The ARN of the resource in the configuration. </p>
1429
+ */
1430
+ ResourceArn: string | undefined;
1431
+ }
1432
+ export interface GetMessagingStreamingConfigurationsResponse {
1433
+ /**
1434
+ * <p>The streaming settings.</p>
1435
+ */
1436
+ StreamingConfigurations?: StreamingConfiguration[];
1437
+ }
1403
1438
  export interface ListChannelBansRequest {
1404
1439
  /**
1405
1440
  * <p>The ARN of the channel.</p>
@@ -1805,6 +1840,22 @@ export interface PutChannelMembershipPreferencesResponse {
1805
1840
  */
1806
1841
  Preferences?: ChannelMembershipPreferences;
1807
1842
  }
1843
+ export interface PutMessagingStreamingConfigurationsRequest {
1844
+ /**
1845
+ * <p>The ARN of the streaming configuration.</p>
1846
+ */
1847
+ AppInstanceArn: string | undefined;
1848
+ /**
1849
+ * <p>The streaming configurations.</p>
1850
+ */
1851
+ StreamingConfigurations: StreamingConfiguration[] | undefined;
1852
+ }
1853
+ export interface PutMessagingStreamingConfigurationsResponse {
1854
+ /**
1855
+ * <p>The requested streaming configurations.</p>
1856
+ */
1857
+ StreamingConfigurations?: StreamingConfiguration[];
1858
+ }
1808
1859
  export interface RedactChannelMessageRequest {
1809
1860
  /**
1810
1861
  * <p>The ARN of the channel containing the messages that you want to redact.</p>
@@ -2300,6 +2351,10 @@ export declare const DeleteChannelMessageRequestFilterSensitiveLog: (obj: Delete
2300
2351
  * @internal
2301
2352
  */
2302
2353
  export declare const DeleteChannelModeratorRequestFilterSensitiveLog: (obj: DeleteChannelModeratorRequest) => any;
2354
+ /**
2355
+ * @internal
2356
+ */
2357
+ export declare const DeleteMessagingStreamingConfigurationsRequestFilterSensitiveLog: (obj: DeleteMessagingStreamingConfigurationsRequest) => any;
2303
2358
  /**
2304
2359
  * @internal
2305
2360
  */
@@ -2396,6 +2451,18 @@ export declare const MessagingSessionEndpointFilterSensitiveLog: (obj: Messaging
2396
2451
  * @internal
2397
2452
  */
2398
2453
  export declare const GetMessagingSessionEndpointResponseFilterSensitiveLog: (obj: GetMessagingSessionEndpointResponse) => any;
2454
+ /**
2455
+ * @internal
2456
+ */
2457
+ export declare const GetMessagingStreamingConfigurationsRequestFilterSensitiveLog: (obj: GetMessagingStreamingConfigurationsRequest) => any;
2458
+ /**
2459
+ * @internal
2460
+ */
2461
+ export declare const StreamingConfigurationFilterSensitiveLog: (obj: StreamingConfiguration) => any;
2462
+ /**
2463
+ * @internal
2464
+ */
2465
+ export declare const GetMessagingStreamingConfigurationsResponseFilterSensitiveLog: (obj: GetMessagingStreamingConfigurationsResponse) => any;
2399
2466
  /**
2400
2467
  * @internal
2401
2468
  */
@@ -2496,6 +2563,14 @@ export declare const PutChannelMembershipPreferencesRequestFilterSensitiveLog: (
2496
2563
  * @internal
2497
2564
  */
2498
2565
  export declare const PutChannelMembershipPreferencesResponseFilterSensitiveLog: (obj: PutChannelMembershipPreferencesResponse) => any;
2566
+ /**
2567
+ * @internal
2568
+ */
2569
+ export declare const PutMessagingStreamingConfigurationsRequestFilterSensitiveLog: (obj: PutMessagingStreamingConfigurationsRequest) => any;
2570
+ /**
2571
+ * @internal
2572
+ */
2573
+ export declare const PutMessagingStreamingConfigurationsResponseFilterSensitiveLog: (obj: PutMessagingStreamingConfigurationsResponse) => any;
2499
2574
  /**
2500
2575
  * @internal
2501
2576
  */
@@ -14,6 +14,7 @@ import { DeleteChannelFlowCommandInput, DeleteChannelFlowCommandOutput } from ".
14
14
  import { DeleteChannelMembershipCommandInput, DeleteChannelMembershipCommandOutput } from "../commands/DeleteChannelMembershipCommand";
15
15
  import { DeleteChannelMessageCommandInput, DeleteChannelMessageCommandOutput } from "../commands/DeleteChannelMessageCommand";
16
16
  import { DeleteChannelModeratorCommandInput, DeleteChannelModeratorCommandOutput } from "../commands/DeleteChannelModeratorCommand";
17
+ import { DeleteMessagingStreamingConfigurationsCommandInput, DeleteMessagingStreamingConfigurationsCommandOutput } from "../commands/DeleteMessagingStreamingConfigurationsCommand";
17
18
  import { DescribeChannelBanCommandInput, DescribeChannelBanCommandOutput } from "../commands/DescribeChannelBanCommand";
18
19
  import { DescribeChannelCommandInput, DescribeChannelCommandOutput } from "../commands/DescribeChannelCommand";
19
20
  import { DescribeChannelFlowCommandInput, DescribeChannelFlowCommandOutput } from "../commands/DescribeChannelFlowCommand";
@@ -26,6 +27,7 @@ import { GetChannelMembershipPreferencesCommandInput, GetChannelMembershipPrefer
26
27
  import { GetChannelMessageCommandInput, GetChannelMessageCommandOutput } from "../commands/GetChannelMessageCommand";
27
28
  import { GetChannelMessageStatusCommandInput, GetChannelMessageStatusCommandOutput } from "../commands/GetChannelMessageStatusCommand";
28
29
  import { GetMessagingSessionEndpointCommandInput, GetMessagingSessionEndpointCommandOutput } from "../commands/GetMessagingSessionEndpointCommand";
30
+ import { GetMessagingStreamingConfigurationsCommandInput, GetMessagingStreamingConfigurationsCommandOutput } from "../commands/GetMessagingStreamingConfigurationsCommand";
29
31
  import { ListChannelBansCommandInput, ListChannelBansCommandOutput } from "../commands/ListChannelBansCommand";
30
32
  import { ListChannelFlowsCommandInput, ListChannelFlowsCommandOutput } from "../commands/ListChannelFlowsCommand";
31
33
  import { ListChannelMembershipsCommandInput, ListChannelMembershipsCommandOutput } from "../commands/ListChannelMembershipsCommand";
@@ -38,6 +40,7 @@ import { ListChannelsModeratedByAppInstanceUserCommandInput, ListChannelsModerat
38
40
  import { ListSubChannelsCommandInput, ListSubChannelsCommandOutput } from "../commands/ListSubChannelsCommand";
39
41
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
40
42
  import { PutChannelMembershipPreferencesCommandInput, PutChannelMembershipPreferencesCommandOutput } from "../commands/PutChannelMembershipPreferencesCommand";
43
+ import { PutMessagingStreamingConfigurationsCommandInput, PutMessagingStreamingConfigurationsCommandOutput } from "../commands/PutMessagingStreamingConfigurationsCommand";
41
44
  import { RedactChannelMessageCommandInput, RedactChannelMessageCommandOutput } from "../commands/RedactChannelMessageCommand";
42
45
  import { SearchChannelsCommandInput, SearchChannelsCommandOutput } from "../commands/SearchChannelsCommand";
43
46
  import { SendChannelMessageCommandInput, SendChannelMessageCommandOutput } from "../commands/SendChannelMessageCommand";
@@ -61,6 +64,7 @@ export declare const serializeAws_restJson1DeleteChannelFlowCommand: (input: Del
61
64
  export declare const serializeAws_restJson1DeleteChannelMembershipCommand: (input: DeleteChannelMembershipCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
65
  export declare const serializeAws_restJson1DeleteChannelMessageCommand: (input: DeleteChannelMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
66
  export declare const serializeAws_restJson1DeleteChannelModeratorCommand: (input: DeleteChannelModeratorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
+ export declare const serializeAws_restJson1DeleteMessagingStreamingConfigurationsCommand: (input: DeleteMessagingStreamingConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
68
  export declare const serializeAws_restJson1DescribeChannelCommand: (input: DescribeChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
69
  export declare const serializeAws_restJson1DescribeChannelBanCommand: (input: DescribeChannelBanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
70
  export declare const serializeAws_restJson1DescribeChannelFlowCommand: (input: DescribeChannelFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -73,6 +77,7 @@ export declare const serializeAws_restJson1GetChannelMembershipPreferencesComman
73
77
  export declare const serializeAws_restJson1GetChannelMessageCommand: (input: GetChannelMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
78
  export declare const serializeAws_restJson1GetChannelMessageStatusCommand: (input: GetChannelMessageStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
79
  export declare const serializeAws_restJson1GetMessagingSessionEndpointCommand: (input: GetMessagingSessionEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
+ export declare const serializeAws_restJson1GetMessagingStreamingConfigurationsCommand: (input: GetMessagingStreamingConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
81
  export declare const serializeAws_restJson1ListChannelBansCommand: (input: ListChannelBansCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
77
82
  export declare const serializeAws_restJson1ListChannelFlowsCommand: (input: ListChannelFlowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
83
  export declare const serializeAws_restJson1ListChannelMembershipsCommand: (input: ListChannelMembershipsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -85,6 +90,7 @@ export declare const serializeAws_restJson1ListChannelsModeratedByAppInstanceUse
85
90
  export declare const serializeAws_restJson1ListSubChannelsCommand: (input: ListSubChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
91
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
87
92
  export declare const serializeAws_restJson1PutChannelMembershipPreferencesCommand: (input: PutChannelMembershipPreferencesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
93
+ export declare const serializeAws_restJson1PutMessagingStreamingConfigurationsCommand: (input: PutMessagingStreamingConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
88
94
  export declare const serializeAws_restJson1RedactChannelMessageCommand: (input: RedactChannelMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
95
  export declare const serializeAws_restJson1SearchChannelsCommand: (input: SearchChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
96
  export declare const serializeAws_restJson1SendChannelMessageCommand: (input: SendChannelMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -108,6 +114,7 @@ export declare const deserializeAws_restJson1DeleteChannelFlowCommand: (output:
108
114
  export declare const deserializeAws_restJson1DeleteChannelMembershipCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelMembershipCommandOutput>;
109
115
  export declare const deserializeAws_restJson1DeleteChannelMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelMessageCommandOutput>;
110
116
  export declare const deserializeAws_restJson1DeleteChannelModeratorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelModeratorCommandOutput>;
117
+ export declare const deserializeAws_restJson1DeleteMessagingStreamingConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMessagingStreamingConfigurationsCommandOutput>;
111
118
  export declare const deserializeAws_restJson1DescribeChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeChannelCommandOutput>;
112
119
  export declare const deserializeAws_restJson1DescribeChannelBanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeChannelBanCommandOutput>;
113
120
  export declare const deserializeAws_restJson1DescribeChannelFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeChannelFlowCommandOutput>;
@@ -120,6 +127,7 @@ export declare const deserializeAws_restJson1GetChannelMembershipPreferencesComm
120
127
  export declare const deserializeAws_restJson1GetChannelMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChannelMessageCommandOutput>;
121
128
  export declare const deserializeAws_restJson1GetChannelMessageStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChannelMessageStatusCommandOutput>;
122
129
  export declare const deserializeAws_restJson1GetMessagingSessionEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMessagingSessionEndpointCommandOutput>;
130
+ export declare const deserializeAws_restJson1GetMessagingStreamingConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMessagingStreamingConfigurationsCommandOutput>;
123
131
  export declare const deserializeAws_restJson1ListChannelBansCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelBansCommandOutput>;
124
132
  export declare const deserializeAws_restJson1ListChannelFlowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelFlowsCommandOutput>;
125
133
  export declare const deserializeAws_restJson1ListChannelMembershipsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelMembershipsCommandOutput>;
@@ -132,6 +140,7 @@ export declare const deserializeAws_restJson1ListChannelsModeratedByAppInstanceU
132
140
  export declare const deserializeAws_restJson1ListSubChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSubChannelsCommandOutput>;
133
141
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
134
142
  export declare const deserializeAws_restJson1PutChannelMembershipPreferencesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutChannelMembershipPreferencesCommandOutput>;
143
+ export declare const deserializeAws_restJson1PutMessagingStreamingConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutMessagingStreamingConfigurationsCommandOutput>;
135
144
  export declare const deserializeAws_restJson1RedactChannelMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RedactChannelMessageCommandOutput>;
136
145
  export declare const deserializeAws_restJson1SearchChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchChannelsCommandOutput>;
137
146
  export declare const deserializeAws_restJson1SendChannelMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendChannelMessageCommandOutput>;
@@ -56,6 +56,10 @@ import {
56
56
  DeleteChannelModeratorCommandInput,
57
57
  DeleteChannelModeratorCommandOutput,
58
58
  } from "./commands/DeleteChannelModeratorCommand";
59
+ import {
60
+ DeleteMessagingStreamingConfigurationsCommandInput,
61
+ DeleteMessagingStreamingConfigurationsCommandOutput,
62
+ } from "./commands/DeleteMessagingStreamingConfigurationsCommand";
59
63
  import {
60
64
  DescribeChannelBanCommandInput,
61
65
  DescribeChannelBanCommandOutput,
@@ -104,6 +108,10 @@ import {
104
108
  GetMessagingSessionEndpointCommandInput,
105
109
  GetMessagingSessionEndpointCommandOutput,
106
110
  } from "./commands/GetMessagingSessionEndpointCommand";
111
+ import {
112
+ GetMessagingStreamingConfigurationsCommandInput,
113
+ GetMessagingStreamingConfigurationsCommandOutput,
114
+ } from "./commands/GetMessagingStreamingConfigurationsCommand";
107
115
  import {
108
116
  ListChannelBansCommandInput,
109
117
  ListChannelBansCommandOutput,
@@ -152,6 +160,10 @@ import {
152
160
  PutChannelMembershipPreferencesCommandInput,
153
161
  PutChannelMembershipPreferencesCommandOutput,
154
162
  } from "./commands/PutChannelMembershipPreferencesCommand";
163
+ import {
164
+ PutMessagingStreamingConfigurationsCommandInput,
165
+ PutMessagingStreamingConfigurationsCommandOutput,
166
+ } from "./commands/PutMessagingStreamingConfigurationsCommand";
155
167
  import {
156
168
  RedactChannelMessageCommandInput,
157
169
  RedactChannelMessageCommandOutput,
@@ -371,6 +383,25 @@ export declare class ChimeSDKMessaging extends ChimeSDKMessagingClient {
371
383
  options: __HttpHandlerOptions,
372
384
  cb: (err: any, data?: DeleteChannelModeratorCommandOutput) => void
373
385
  ): void;
386
+ deleteMessagingStreamingConfigurations(
387
+ args: DeleteMessagingStreamingConfigurationsCommandInput,
388
+ options?: __HttpHandlerOptions
389
+ ): Promise<DeleteMessagingStreamingConfigurationsCommandOutput>;
390
+ deleteMessagingStreamingConfigurations(
391
+ args: DeleteMessagingStreamingConfigurationsCommandInput,
392
+ cb: (
393
+ err: any,
394
+ data?: DeleteMessagingStreamingConfigurationsCommandOutput
395
+ ) => void
396
+ ): void;
397
+ deleteMessagingStreamingConfigurations(
398
+ args: DeleteMessagingStreamingConfigurationsCommandInput,
399
+ options: __HttpHandlerOptions,
400
+ cb: (
401
+ err: any,
402
+ data?: DeleteMessagingStreamingConfigurationsCommandOutput
403
+ ) => void
404
+ ): void;
374
405
  describeChannel(
375
406
  args: DescribeChannelCommandInput,
376
407
  options?: __HttpHandlerOptions
@@ -539,6 +570,25 @@ export declare class ChimeSDKMessaging extends ChimeSDKMessagingClient {
539
570
  options: __HttpHandlerOptions,
540
571
  cb: (err: any, data?: GetMessagingSessionEndpointCommandOutput) => void
541
572
  ): void;
573
+ getMessagingStreamingConfigurations(
574
+ args: GetMessagingStreamingConfigurationsCommandInput,
575
+ options?: __HttpHandlerOptions
576
+ ): Promise<GetMessagingStreamingConfigurationsCommandOutput>;
577
+ getMessagingStreamingConfigurations(
578
+ args: GetMessagingStreamingConfigurationsCommandInput,
579
+ cb: (
580
+ err: any,
581
+ data?: GetMessagingStreamingConfigurationsCommandOutput
582
+ ) => void
583
+ ): void;
584
+ getMessagingStreamingConfigurations(
585
+ args: GetMessagingStreamingConfigurationsCommandInput,
586
+ options: __HttpHandlerOptions,
587
+ cb: (
588
+ err: any,
589
+ data?: GetMessagingStreamingConfigurationsCommandOutput
590
+ ) => void
591
+ ): void;
542
592
  listChannelBans(
543
593
  args: ListChannelBansCommandInput,
544
594
  options?: __HttpHandlerOptions
@@ -713,6 +763,25 @@ export declare class ChimeSDKMessaging extends ChimeSDKMessagingClient {
713
763
  options: __HttpHandlerOptions,
714
764
  cb: (err: any, data?: PutChannelMembershipPreferencesCommandOutput) => void
715
765
  ): void;
766
+ putMessagingStreamingConfigurations(
767
+ args: PutMessagingStreamingConfigurationsCommandInput,
768
+ options?: __HttpHandlerOptions
769
+ ): Promise<PutMessagingStreamingConfigurationsCommandOutput>;
770
+ putMessagingStreamingConfigurations(
771
+ args: PutMessagingStreamingConfigurationsCommandInput,
772
+ cb: (
773
+ err: any,
774
+ data?: PutMessagingStreamingConfigurationsCommandOutput
775
+ ) => void
776
+ ): void;
777
+ putMessagingStreamingConfigurations(
778
+ args: PutMessagingStreamingConfigurationsCommandInput,
779
+ options: __HttpHandlerOptions,
780
+ cb: (
781
+ err: any,
782
+ data?: PutMessagingStreamingConfigurationsCommandOutput
783
+ ) => void
784
+ ): void;
716
785
  redactChannelMessage(
717
786
  args: RedactChannelMessageCommandInput,
718
787
  options?: __HttpHandlerOptions
@@ -100,6 +100,10 @@ import {
100
100
  DeleteChannelModeratorCommandInput,
101
101
  DeleteChannelModeratorCommandOutput,
102
102
  } from "./commands/DeleteChannelModeratorCommand";
103
+ import {
104
+ DeleteMessagingStreamingConfigurationsCommandInput,
105
+ DeleteMessagingStreamingConfigurationsCommandOutput,
106
+ } from "./commands/DeleteMessagingStreamingConfigurationsCommand";
103
107
  import {
104
108
  DescribeChannelBanCommandInput,
105
109
  DescribeChannelBanCommandOutput,
@@ -148,6 +152,10 @@ import {
148
152
  GetMessagingSessionEndpointCommandInput,
149
153
  GetMessagingSessionEndpointCommandOutput,
150
154
  } from "./commands/GetMessagingSessionEndpointCommand";
155
+ import {
156
+ GetMessagingStreamingConfigurationsCommandInput,
157
+ GetMessagingStreamingConfigurationsCommandOutput,
158
+ } from "./commands/GetMessagingStreamingConfigurationsCommand";
151
159
  import {
152
160
  ListChannelBansCommandInput,
153
161
  ListChannelBansCommandOutput,
@@ -196,6 +204,10 @@ import {
196
204
  PutChannelMembershipPreferencesCommandInput,
197
205
  PutChannelMembershipPreferencesCommandOutput,
198
206
  } from "./commands/PutChannelMembershipPreferencesCommand";
207
+ import {
208
+ PutMessagingStreamingConfigurationsCommandInput,
209
+ PutMessagingStreamingConfigurationsCommandOutput,
210
+ } from "./commands/PutMessagingStreamingConfigurationsCommand";
199
211
  import {
200
212
  RedactChannelMessageCommandInput,
201
213
  RedactChannelMessageCommandOutput,
@@ -252,6 +264,7 @@ export type ServiceInputTypes =
252
264
  | DeleteChannelMembershipCommandInput
253
265
  | DeleteChannelMessageCommandInput
254
266
  | DeleteChannelModeratorCommandInput
267
+ | DeleteMessagingStreamingConfigurationsCommandInput
255
268
  | DescribeChannelBanCommandInput
256
269
  | DescribeChannelCommandInput
257
270
  | DescribeChannelFlowCommandInput
@@ -264,6 +277,7 @@ export type ServiceInputTypes =
264
277
  | GetChannelMessageCommandInput
265
278
  | GetChannelMessageStatusCommandInput
266
279
  | GetMessagingSessionEndpointCommandInput
280
+ | GetMessagingStreamingConfigurationsCommandInput
267
281
  | ListChannelBansCommandInput
268
282
  | ListChannelFlowsCommandInput
269
283
  | ListChannelMembershipsCommandInput
@@ -276,6 +290,7 @@ export type ServiceInputTypes =
276
290
  | ListSubChannelsCommandInput
277
291
  | ListTagsForResourceCommandInput
278
292
  | PutChannelMembershipPreferencesCommandInput
293
+ | PutMessagingStreamingConfigurationsCommandInput
279
294
  | RedactChannelMessageCommandInput
280
295
  | SearchChannelsCommandInput
281
296
  | SendChannelMessageCommandInput
@@ -300,6 +315,7 @@ export type ServiceOutputTypes =
300
315
  | DeleteChannelMembershipCommandOutput
301
316
  | DeleteChannelMessageCommandOutput
302
317
  | DeleteChannelModeratorCommandOutput
318
+ | DeleteMessagingStreamingConfigurationsCommandOutput
303
319
  | DescribeChannelBanCommandOutput
304
320
  | DescribeChannelCommandOutput
305
321
  | DescribeChannelFlowCommandOutput
@@ -312,6 +328,7 @@ export type ServiceOutputTypes =
312
328
  | GetChannelMessageCommandOutput
313
329
  | GetChannelMessageStatusCommandOutput
314
330
  | GetMessagingSessionEndpointCommandOutput
331
+ | GetMessagingStreamingConfigurationsCommandOutput
315
332
  | ListChannelBansCommandOutput
316
333
  | ListChannelFlowsCommandOutput
317
334
  | ListChannelMembershipsCommandOutput
@@ -324,6 +341,7 @@ export type ServiceOutputTypes =
324
341
  | ListSubChannelsCommandOutput
325
342
  | ListTagsForResourceCommandOutput
326
343
  | PutChannelMembershipPreferencesCommandOutput
344
+ | PutMessagingStreamingConfigurationsCommandOutput
327
345
  | RedactChannelMessageCommandOutput
328
346
  | SearchChannelsCommandOutput
329
347
  | SendChannelMessageCommandOutput
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ChimeSDKMessagingClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ChimeSDKMessagingClient";
14
+ import { DeleteMessagingStreamingConfigurationsRequest } from "../models/models_0";
15
+ export interface DeleteMessagingStreamingConfigurationsCommandInput
16
+ extends DeleteMessagingStreamingConfigurationsRequest {}
17
+ export interface DeleteMessagingStreamingConfigurationsCommandOutput
18
+ extends __MetadataBearer {}
19
+ export declare class DeleteMessagingStreamingConfigurationsCommand extends $Command<
20
+ DeleteMessagingStreamingConfigurationsCommandInput,
21
+ DeleteMessagingStreamingConfigurationsCommandOutput,
22
+ ChimeSDKMessagingClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteMessagingStreamingConfigurationsCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: DeleteMessagingStreamingConfigurationsCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ChimeSDKMessagingClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ DeleteMessagingStreamingConfigurationsCommandInput,
33
+ DeleteMessagingStreamingConfigurationsCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ChimeSDKMessagingClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ChimeSDKMessagingClient";
14
+ import {
15
+ GetMessagingStreamingConfigurationsRequest,
16
+ GetMessagingStreamingConfigurationsResponse,
17
+ } from "../models/models_0";
18
+ export interface GetMessagingStreamingConfigurationsCommandInput
19
+ extends GetMessagingStreamingConfigurationsRequest {}
20
+ export interface GetMessagingStreamingConfigurationsCommandOutput
21
+ extends GetMessagingStreamingConfigurationsResponse,
22
+ __MetadataBearer {}
23
+ export declare class GetMessagingStreamingConfigurationsCommand extends $Command<
24
+ GetMessagingStreamingConfigurationsCommandInput,
25
+ GetMessagingStreamingConfigurationsCommandOutput,
26
+ ChimeSDKMessagingClientResolvedConfig
27
+ > {
28
+ readonly input: GetMessagingStreamingConfigurationsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: GetMessagingStreamingConfigurationsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ChimeSDKMessagingClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetMessagingStreamingConfigurationsCommandInput,
37
+ GetMessagingStreamingConfigurationsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ChimeSDKMessagingClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ChimeSDKMessagingClient";
14
+ import {
15
+ PutMessagingStreamingConfigurationsRequest,
16
+ PutMessagingStreamingConfigurationsResponse,
17
+ } from "../models/models_0";
18
+ export interface PutMessagingStreamingConfigurationsCommandInput
19
+ extends PutMessagingStreamingConfigurationsRequest {}
20
+ export interface PutMessagingStreamingConfigurationsCommandOutput
21
+ extends PutMessagingStreamingConfigurationsResponse,
22
+ __MetadataBearer {}
23
+ export declare class PutMessagingStreamingConfigurationsCommand extends $Command<
24
+ PutMessagingStreamingConfigurationsCommandInput,
25
+ PutMessagingStreamingConfigurationsCommandOutput,
26
+ ChimeSDKMessagingClientResolvedConfig
27
+ > {
28
+ readonly input: PutMessagingStreamingConfigurationsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: PutMessagingStreamingConfigurationsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ChimeSDKMessagingClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ PutMessagingStreamingConfigurationsCommandInput,
37
+ PutMessagingStreamingConfigurationsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -12,6 +12,7 @@ export * from "./DeleteChannelFlowCommand";
12
12
  export * from "./DeleteChannelMembershipCommand";
13
13
  export * from "./DeleteChannelMessageCommand";
14
14
  export * from "./DeleteChannelModeratorCommand";
15
+ export * from "./DeleteMessagingStreamingConfigurationsCommand";
15
16
  export * from "./DescribeChannelBanCommand";
16
17
  export * from "./DescribeChannelCommand";
17
18
  export * from "./DescribeChannelFlowCommand";
@@ -24,6 +25,7 @@ export * from "./GetChannelMembershipPreferencesCommand";
24
25
  export * from "./GetChannelMessageCommand";
25
26
  export * from "./GetChannelMessageStatusCommand";
26
27
  export * from "./GetMessagingSessionEndpointCommand";
28
+ export * from "./GetMessagingStreamingConfigurationsCommand";
27
29
  export * from "./ListChannelBansCommand";
28
30
  export * from "./ListChannelFlowsCommand";
29
31
  export * from "./ListChannelMembershipsCommand";
@@ -36,6 +38,7 @@ export * from "./ListChannelsModeratedByAppInstanceUserCommand";
36
38
  export * from "./ListSubChannelsCommand";
37
39
  export * from "./ListTagsForResourceCommand";
38
40
  export * from "./PutChannelMembershipPreferencesCommand";
41
+ export * from "./PutMessagingStreamingConfigurationsCommand";
39
42
  export * from "./RedactChannelMessageCommand";
40
43
  export * from "./SearchChannelsCommand";
41
44
  export * from "./SendChannelMessageCommand";
@@ -26,7 +26,7 @@ export declare const resolveClientEndpointParameters: <T>(
26
26
  defaultSigningName: string;
27
27
  };
28
28
  export interface EndpointParameters extends __EndpointParameters {
29
- Region: string;
29
+ Region?: string;
30
30
  UseDualStack?: boolean;
31
31
  UseFIPS?: boolean;
32
32
  Endpoint?: string;
@@ -423,6 +423,9 @@ export interface DeleteChannelModeratorRequest {
423
423
  ChannelModeratorArn: string | undefined;
424
424
  ChimeBearer: string | undefined;
425
425
  }
426
+ export interface DeleteMessagingStreamingConfigurationsRequest {
427
+ AppInstanceArn: string | undefined;
428
+ }
426
429
  export interface DescribeChannelRequest {
427
430
  ChannelArn: string | undefined;
428
431
  ChimeBearer: string | undefined;
@@ -517,6 +520,20 @@ export interface MessagingSessionEndpoint {
517
520
  export interface GetMessagingSessionEndpointResponse {
518
521
  Endpoint?: MessagingSessionEndpoint;
519
522
  }
523
+ export interface GetMessagingStreamingConfigurationsRequest {
524
+ AppInstanceArn: string | undefined;
525
+ }
526
+ export declare enum MessagingDataType {
527
+ Channel = "Channel",
528
+ ChannelMessage = "ChannelMessage",
529
+ }
530
+ export interface StreamingConfiguration {
531
+ DataType: MessagingDataType | string | undefined;
532
+ ResourceArn: string | undefined;
533
+ }
534
+ export interface GetMessagingStreamingConfigurationsResponse {
535
+ StreamingConfigurations?: StreamingConfiguration[];
536
+ }
520
537
  export interface ListChannelBansRequest {
521
538
  ChannelArn: string | undefined;
522
539
  MaxResults?: number;
@@ -653,6 +670,13 @@ export interface PutChannelMembershipPreferencesResponse {
653
670
  Member?: Identity;
654
671
  Preferences?: ChannelMembershipPreferences;
655
672
  }
673
+ export interface PutMessagingStreamingConfigurationsRequest {
674
+ AppInstanceArn: string | undefined;
675
+ StreamingConfigurations: StreamingConfiguration[] | undefined;
676
+ }
677
+ export interface PutMessagingStreamingConfigurationsResponse {
678
+ StreamingConfigurations?: StreamingConfiguration[];
679
+ }
656
680
  export interface RedactChannelMessageRequest {
657
681
  ChannelArn: string | undefined;
658
682
  MessageId: string | undefined;
@@ -894,6 +918,9 @@ export declare const DeleteChannelMessageRequestFilterSensitiveLog: (
894
918
  export declare const DeleteChannelModeratorRequestFilterSensitiveLog: (
895
919
  obj: DeleteChannelModeratorRequest
896
920
  ) => any;
921
+ export declare const DeleteMessagingStreamingConfigurationsRequestFilterSensitiveLog: (
922
+ obj: DeleteMessagingStreamingConfigurationsRequest
923
+ ) => any;
897
924
  export declare const DescribeChannelRequestFilterSensitiveLog: (
898
925
  obj: DescribeChannelRequest
899
926
  ) => any;
@@ -966,6 +993,15 @@ export declare const MessagingSessionEndpointFilterSensitiveLog: (
966
993
  export declare const GetMessagingSessionEndpointResponseFilterSensitiveLog: (
967
994
  obj: GetMessagingSessionEndpointResponse
968
995
  ) => any;
996
+ export declare const GetMessagingStreamingConfigurationsRequestFilterSensitiveLog: (
997
+ obj: GetMessagingStreamingConfigurationsRequest
998
+ ) => any;
999
+ export declare const StreamingConfigurationFilterSensitiveLog: (
1000
+ obj: StreamingConfiguration
1001
+ ) => any;
1002
+ export declare const GetMessagingStreamingConfigurationsResponseFilterSensitiveLog: (
1003
+ obj: GetMessagingStreamingConfigurationsResponse
1004
+ ) => any;
969
1005
  export declare const ListChannelBansRequestFilterSensitiveLog: (
970
1006
  obj: ListChannelBansRequest
971
1007
  ) => any;
@@ -1041,6 +1077,12 @@ export declare const PutChannelMembershipPreferencesRequestFilterSensitiveLog: (
1041
1077
  export declare const PutChannelMembershipPreferencesResponseFilterSensitiveLog: (
1042
1078
  obj: PutChannelMembershipPreferencesResponse
1043
1079
  ) => any;
1080
+ export declare const PutMessagingStreamingConfigurationsRequestFilterSensitiveLog: (
1081
+ obj: PutMessagingStreamingConfigurationsRequest
1082
+ ) => any;
1083
+ export declare const PutMessagingStreamingConfigurationsResponseFilterSensitiveLog: (
1084
+ obj: PutMessagingStreamingConfigurationsResponse
1085
+ ) => any;
1044
1086
  export declare const RedactChannelMessageRequestFilterSensitiveLog: (
1045
1087
  obj: RedactChannelMessageRequest
1046
1088
  ) => any;