@aws-sdk/client-chime-sdk-messaging 3.300.0 → 3.301.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 (51) hide show
  1. package/dist-types/commands/AssociateChannelFlowCommand.d.ts +1 -1
  2. package/dist-types/commands/BatchCreateChannelMembershipCommand.d.ts +2 -2
  3. package/dist-types/commands/ChannelFlowCallbackCommand.d.ts +6 -6
  4. package/dist-types/commands/CreateChannelBanCommand.d.ts +1 -1
  5. package/dist-types/commands/CreateChannelCommand.d.ts +7 -7
  6. package/dist-types/commands/CreateChannelFlowCommand.d.ts +7 -7
  7. package/dist-types/commands/CreateChannelMembershipCommand.d.ts +1 -1
  8. package/dist-types/commands/CreateChannelModeratorCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteChannelBanCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteChannelCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteChannelFlowCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteChannelMembershipCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteChannelMessageCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteChannelModeratorCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteMessagingStreamingConfigurationsCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeChannelBanCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeChannelCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeChannelFlowCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeChannelMembershipCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeChannelMembershipForAppInstanceUserCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeChannelModeratedByAppInstanceUserCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeChannelModeratorCommand.d.ts +1 -1
  23. package/dist-types/commands/DisassociateChannelFlowCommand.d.ts +1 -1
  24. package/dist-types/commands/GetChannelMembershipPreferencesCommand.d.ts +1 -1
  25. package/dist-types/commands/GetChannelMessageCommand.d.ts +1 -1
  26. package/dist-types/commands/GetChannelMessageStatusCommand.d.ts +1 -1
  27. package/dist-types/commands/GetMessagingStreamingConfigurationsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListChannelBansCommand.d.ts +1 -1
  29. package/dist-types/commands/ListChannelFlowsCommand.d.ts +1 -1
  30. package/dist-types/commands/ListChannelMembershipsCommand.d.ts +1 -1
  31. package/dist-types/commands/ListChannelMembershipsForAppInstanceUserCommand.d.ts +1 -1
  32. package/dist-types/commands/ListChannelMessagesCommand.d.ts +1 -1
  33. package/dist-types/commands/ListChannelModeratorsCommand.d.ts +1 -1
  34. package/dist-types/commands/ListChannelsAssociatedWithChannelFlowCommand.d.ts +1 -1
  35. package/dist-types/commands/ListChannelsCommand.d.ts +1 -1
  36. package/dist-types/commands/ListChannelsModeratedByAppInstanceUserCommand.d.ts +1 -1
  37. package/dist-types/commands/ListSubChannelsCommand.d.ts +1 -1
  38. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  39. package/dist-types/commands/PutChannelExpirationSettingsCommand.d.ts +2 -2
  40. package/dist-types/commands/PutChannelMembershipPreferencesCommand.d.ts +3 -3
  41. package/dist-types/commands/PutMessagingStreamingConfigurationsCommand.d.ts +3 -3
  42. package/dist-types/commands/RedactChannelMessageCommand.d.ts +1 -1
  43. package/dist-types/commands/SearchChannelsCommand.d.ts +4 -4
  44. package/dist-types/commands/SendChannelMessageCommand.d.ts +5 -5
  45. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  46. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  47. package/dist-types/commands/UpdateChannelCommand.d.ts +1 -1
  48. package/dist-types/commands/UpdateChannelFlowCommand.d.ts +5 -5
  49. package/dist-types/commands/UpdateChannelMessageCommand.d.ts +1 -1
  50. package/dist-types/commands/UpdateChannelReadMarkerCommand.d.ts +1 -1
  51. package/package.json +3 -3
@@ -33,7 +33,7 @@ export interface AssociateChannelFlowCommandOutput extends __MetadataBearer {
33
33
  * import { ChimeSDKMessagingClient, AssociateChannelFlowCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
34
34
  * // const { ChimeSDKMessagingClient, AssociateChannelFlowCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
35
35
  * const client = new ChimeSDKMessagingClient(config);
36
- * const input = {
36
+ * const input = { // AssociateChannelFlowRequest
37
37
  * ChannelArn: "STRING_VALUE", // required
38
38
  * ChannelFlowArn: "STRING_VALUE", // required
39
39
  * ChimeBearer: "STRING_VALUE", // required
@@ -26,10 +26,10 @@ export interface BatchCreateChannelMembershipCommandOutput extends BatchCreateCh
26
26
  * import { ChimeSDKMessagingClient, BatchCreateChannelMembershipCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
27
27
  * // const { ChimeSDKMessagingClient, BatchCreateChannelMembershipCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
28
28
  * const client = new ChimeSDKMessagingClient(config);
29
- * const input = {
29
+ * const input = { // BatchCreateChannelMembershipRequest
30
30
  * ChannelArn: "STRING_VALUE", // required
31
31
  * Type: "DEFAULT" || "HIDDEN",
32
- * MemberArns: [ // required
32
+ * MemberArns: [ // MemberArns // required
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * ChimeBearer: "STRING_VALUE", // required
@@ -38,22 +38,22 @@ export interface ChannelFlowCallbackCommandOutput extends ChannelFlowCallbackRes
38
38
  * import { ChimeSDKMessagingClient, ChannelFlowCallbackCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
39
39
  * // const { ChimeSDKMessagingClient, ChannelFlowCallbackCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
40
40
  * const client = new ChimeSDKMessagingClient(config);
41
- * const input = {
41
+ * const input = { // ChannelFlowCallbackRequest
42
42
  * CallbackId: "STRING_VALUE", // required
43
43
  * ChannelArn: "STRING_VALUE", // required
44
44
  * DeleteResource: true || false,
45
- * ChannelMessage: {
45
+ * ChannelMessage: { // ChannelMessageCallback
46
46
  * MessageId: "STRING_VALUE", // required
47
47
  * Content: "STRING_VALUE",
48
48
  * Metadata: "STRING_VALUE",
49
- * PushNotification: {
49
+ * PushNotification: { // PushNotificationConfiguration
50
50
  * Title: "STRING_VALUE",
51
51
  * Body: "STRING_VALUE",
52
52
  * Type: "DEFAULT" || "VOIP",
53
53
  * },
54
- * MessageAttributes: {
55
- * "<keys>": {
56
- * StringValues: [
54
+ * MessageAttributes: { // MessageAttributeMap
55
+ * "<keys>": { // MessageAttributeValue
56
+ * StringValues: [ // MessageAttributeStringValues
57
57
  * "STRING_VALUE",
58
58
  * ],
59
59
  * },
@@ -36,7 +36,7 @@ export interface CreateChannelBanCommandOutput extends CreateChannelBanResponse,
36
36
  * import { ChimeSDKMessagingClient, CreateChannelBanCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
37
37
  * // const { ChimeSDKMessagingClient, CreateChannelBanCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
38
38
  * const client = new ChimeSDKMessagingClient(config);
39
- * const input = {
39
+ * const input = { // CreateChannelBanRequest
40
40
  * ChannelArn: "STRING_VALUE", // required
41
41
  * MemberArn: "STRING_VALUE", // required
42
42
  * ChimeBearer: "STRING_VALUE", // required
@@ -34,33 +34,33 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
34
34
  * import { ChimeSDKMessagingClient, CreateChannelCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
35
35
  * // const { ChimeSDKMessagingClient, CreateChannelCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
36
36
  * const client = new ChimeSDKMessagingClient(config);
37
- * const input = {
37
+ * const input = { // CreateChannelRequest
38
38
  * AppInstanceArn: "STRING_VALUE", // required
39
39
  * Name: "STRING_VALUE", // required
40
40
  * Mode: "UNRESTRICTED" || "RESTRICTED",
41
41
  * Privacy: "PUBLIC" || "PRIVATE",
42
42
  * Metadata: "STRING_VALUE",
43
43
  * ClientRequestToken: "STRING_VALUE", // required
44
- * Tags: [
45
- * {
44
+ * Tags: [ // TagList
45
+ * { // Tag
46
46
  * Key: "STRING_VALUE", // required
47
47
  * Value: "STRING_VALUE", // required
48
48
  * },
49
49
  * ],
50
50
  * ChimeBearer: "STRING_VALUE", // required
51
51
  * ChannelId: "STRING_VALUE",
52
- * MemberArns: [
52
+ * MemberArns: [ // ChannelMemberArns
53
53
  * "STRING_VALUE",
54
54
  * ],
55
- * ModeratorArns: [
55
+ * ModeratorArns: [ // ChannelModeratorArns
56
56
  * "STRING_VALUE",
57
57
  * ],
58
- * ElasticChannelConfiguration: {
58
+ * ElasticChannelConfiguration: { // ElasticChannelConfiguration
59
59
  * MaximumSubChannels: Number("int"), // required
60
60
  * TargetMembershipsPerSubChannel: Number("int"), // required
61
61
  * MinimumMembershipPercentage: Number("int"), // required
62
62
  * },
63
- * ExpirationSettings: {
63
+ * ExpirationSettings: { // ExpirationSettings
64
64
  * ExpirationDays: Number("int"), // required
65
65
  * ExpirationCriterion: "CREATED_TIMESTAMP" || "LAST_MESSAGE_TIMESTAMP", // required
66
66
  * },
@@ -45,13 +45,13 @@ export interface CreateChannelFlowCommandOutput extends CreateChannelFlowRespons
45
45
  * import { ChimeSDKMessagingClient, CreateChannelFlowCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
46
46
  * // const { ChimeSDKMessagingClient, CreateChannelFlowCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
47
47
  * const client = new ChimeSDKMessagingClient(config);
48
- * const input = {
48
+ * const input = { // CreateChannelFlowRequest
49
49
  * AppInstanceArn: "STRING_VALUE", // required
50
- * Processors: [ // required
51
- * {
50
+ * Processors: [ // ProcessorList // required
51
+ * { // Processor
52
52
  * Name: "STRING_VALUE", // required
53
- * Configuration: {
54
- * Lambda: {
53
+ * Configuration: { // ProcessorConfiguration
54
+ * Lambda: { // LambdaConfiguration
55
55
  * ResourceArn: "STRING_VALUE", // required
56
56
  * InvocationType: "ASYNC", // required
57
57
  * },
@@ -61,8 +61,8 @@ export interface CreateChannelFlowCommandOutput extends CreateChannelFlowRespons
61
61
  * },
62
62
  * ],
63
63
  * Name: "STRING_VALUE", // required
64
- * Tags: [
65
- * {
64
+ * Tags: [ // TagList
65
+ * { // Tag
66
66
  * Key: "STRING_VALUE", // required
67
67
  * Value: "STRING_VALUE", // required
68
68
  * },
@@ -59,7 +59,7 @@ export interface CreateChannelMembershipCommandOutput extends CreateChannelMembe
59
59
  * import { ChimeSDKMessagingClient, CreateChannelMembershipCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
60
60
  * // const { ChimeSDKMessagingClient, CreateChannelMembershipCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
61
61
  * const client = new ChimeSDKMessagingClient(config);
62
- * const input = {
62
+ * const input = { // CreateChannelMembershipRequest
63
63
  * ChannelArn: "STRING_VALUE", // required
64
64
  * MemberArn: "STRING_VALUE", // required
65
65
  * Type: "DEFAULT" || "HIDDEN", // required
@@ -48,7 +48,7 @@ export interface CreateChannelModeratorCommandOutput extends CreateChannelModera
48
48
  * import { ChimeSDKMessagingClient, CreateChannelModeratorCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
49
49
  * // const { ChimeSDKMessagingClient, CreateChannelModeratorCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
50
50
  * const client = new ChimeSDKMessagingClient(config);
51
- * const input = {
51
+ * const input = { // CreateChannelModeratorRequest
52
52
  * ChannelArn: "STRING_VALUE", // required
53
53
  * ChannelModeratorArn: "STRING_VALUE", // required
54
54
  * ChimeBearer: "STRING_VALUE", // required
@@ -31,7 +31,7 @@ export interface DeleteChannelBanCommandOutput extends __MetadataBearer {
31
31
  * import { ChimeSDKMessagingClient, DeleteChannelBanCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
32
32
  * // const { ChimeSDKMessagingClient, DeleteChannelBanCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
33
33
  * const client = new ChimeSDKMessagingClient(config);
34
- * const input = {
34
+ * const input = { // DeleteChannelBanRequest
35
35
  * ChannelArn: "STRING_VALUE", // required
36
36
  * MemberArn: "STRING_VALUE", // required
37
37
  * ChimeBearer: "STRING_VALUE", // required
@@ -32,7 +32,7 @@ export interface DeleteChannelCommandOutput extends __MetadataBearer {
32
32
  * import { ChimeSDKMessagingClient, DeleteChannelCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
33
33
  * // const { ChimeSDKMessagingClient, DeleteChannelCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
34
34
  * const client = new ChimeSDKMessagingClient(config);
35
- * const input = {
35
+ * const input = { // DeleteChannelRequest
36
36
  * ChannelArn: "STRING_VALUE", // required
37
37
  * ChimeBearer: "STRING_VALUE", // required
38
38
  * SubChannelId: "STRING_VALUE",
@@ -30,7 +30,7 @@ export interface DeleteChannelFlowCommandOutput extends __MetadataBearer {
30
30
  * import { ChimeSDKMessagingClient, DeleteChannelFlowCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
31
31
  * // const { ChimeSDKMessagingClient, DeleteChannelFlowCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
32
32
  * const client = new ChimeSDKMessagingClient(config);
33
- * const input = {
33
+ * const input = { // DeleteChannelFlowRequest
34
34
  * ChannelFlowArn: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new DeleteChannelFlowCommand(input);
@@ -31,7 +31,7 @@ export interface DeleteChannelMembershipCommandOutput extends __MetadataBearer {
31
31
  * import { ChimeSDKMessagingClient, DeleteChannelMembershipCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
32
32
  * // const { ChimeSDKMessagingClient, DeleteChannelMembershipCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
33
33
  * const client = new ChimeSDKMessagingClient(config);
34
- * const input = {
34
+ * const input = { // DeleteChannelMembershipRequest
35
35
  * ChannelArn: "STRING_VALUE", // required
36
36
  * MemberArn: "STRING_VALUE", // required
37
37
  * ChimeBearer: "STRING_VALUE", // required
@@ -33,7 +33,7 @@ export interface DeleteChannelMessageCommandOutput extends __MetadataBearer {
33
33
  * import { ChimeSDKMessagingClient, DeleteChannelMessageCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
34
34
  * // const { ChimeSDKMessagingClient, DeleteChannelMessageCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
35
35
  * const client = new ChimeSDKMessagingClient(config);
36
- * const input = {
36
+ * const input = { // DeleteChannelMessageRequest
37
37
  * ChannelArn: "STRING_VALUE", // required
38
38
  * MessageId: "STRING_VALUE", // required
39
39
  * ChimeBearer: "STRING_VALUE", // required
@@ -31,7 +31,7 @@ export interface DeleteChannelModeratorCommandOutput extends __MetadataBearer {
31
31
  * import { ChimeSDKMessagingClient, DeleteChannelModeratorCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
32
32
  * // const { ChimeSDKMessagingClient, DeleteChannelModeratorCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
33
33
  * const client = new ChimeSDKMessagingClient(config);
34
- * const input = {
34
+ * const input = { // DeleteChannelModeratorRequest
35
35
  * ChannelArn: "STRING_VALUE", // required
36
36
  * ChannelModeratorArn: "STRING_VALUE", // required
37
37
  * ChimeBearer: "STRING_VALUE", // required
@@ -27,7 +27,7 @@ export interface DeleteMessagingStreamingConfigurationsCommandOutput extends __M
27
27
  * import { ChimeSDKMessagingClient, DeleteMessagingStreamingConfigurationsCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
28
28
  * // const { ChimeSDKMessagingClient, DeleteMessagingStreamingConfigurationsCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
29
29
  * const client = new ChimeSDKMessagingClient(config);
30
- * const input = {
30
+ * const input = { // DeleteMessagingStreamingConfigurationsRequest
31
31
  * AppInstanceArn: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeleteMessagingStreamingConfigurationsCommand(input);
@@ -31,7 +31,7 @@ export interface DescribeChannelBanCommandOutput extends DescribeChannelBanRespo
31
31
  * import { ChimeSDKMessagingClient, DescribeChannelBanCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
32
32
  * // const { ChimeSDKMessagingClient, DescribeChannelBanCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
33
33
  * const client = new ChimeSDKMessagingClient(config);
34
- * const input = {
34
+ * const input = { // DescribeChannelBanRequest
35
35
  * ChannelArn: "STRING_VALUE", // required
36
36
  * MemberArn: "STRING_VALUE", // required
37
37
  * ChimeBearer: "STRING_VALUE", // required
@@ -32,7 +32,7 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _
32
32
  * import { ChimeSDKMessagingClient, DescribeChannelCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
33
33
  * // const { ChimeSDKMessagingClient, DescribeChannelCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
34
34
  * const client = new ChimeSDKMessagingClient(config);
35
- * const input = {
35
+ * const input = { // DescribeChannelRequest
36
36
  * ChannelArn: "STRING_VALUE", // required
37
37
  * ChimeBearer: "STRING_VALUE", // required
38
38
  * };
@@ -26,7 +26,7 @@ export interface DescribeChannelFlowCommandOutput extends DescribeChannelFlowRes
26
26
  * import { ChimeSDKMessagingClient, DescribeChannelFlowCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
27
27
  * // const { ChimeSDKMessagingClient, DescribeChannelFlowCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
28
28
  * const client = new ChimeSDKMessagingClient(config);
29
- * const input = {
29
+ * const input = { // DescribeChannelFlowRequest
30
30
  * ChannelFlowArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeChannelFlowCommand(input);
@@ -31,7 +31,7 @@ export interface DescribeChannelMembershipCommandOutput extends DescribeChannelM
31
31
  * import { ChimeSDKMessagingClient, DescribeChannelMembershipCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
32
32
  * // const { ChimeSDKMessagingClient, DescribeChannelMembershipCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
33
33
  * const client = new ChimeSDKMessagingClient(config);
34
- * const input = {
34
+ * const input = { // DescribeChannelMembershipRequest
35
35
  * ChannelArn: "STRING_VALUE", // required
36
36
  * MemberArn: "STRING_VALUE", // required
37
37
  * ChimeBearer: "STRING_VALUE", // required
@@ -32,7 +32,7 @@ export interface DescribeChannelMembershipForAppInstanceUserCommandOutput extend
32
32
  * import { ChimeSDKMessagingClient, DescribeChannelMembershipForAppInstanceUserCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
33
33
  * // const { ChimeSDKMessagingClient, DescribeChannelMembershipForAppInstanceUserCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
34
34
  * const client = new ChimeSDKMessagingClient(config);
35
- * const input = {
35
+ * const input = { // DescribeChannelMembershipForAppInstanceUserRequest
36
36
  * ChannelArn: "STRING_VALUE", // required
37
37
  * AppInstanceUserArn: "STRING_VALUE", // required
38
38
  * ChimeBearer: "STRING_VALUE", // required
@@ -32,7 +32,7 @@ export interface DescribeChannelModeratedByAppInstanceUserCommandOutput extends
32
32
  * import { ChimeSDKMessagingClient, DescribeChannelModeratedByAppInstanceUserCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
33
33
  * // const { ChimeSDKMessagingClient, DescribeChannelModeratedByAppInstanceUserCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
34
34
  * const client = new ChimeSDKMessagingClient(config);
35
- * const input = {
35
+ * const input = { // DescribeChannelModeratedByAppInstanceUserRequest
36
36
  * ChannelArn: "STRING_VALUE", // required
37
37
  * AppInstanceUserArn: "STRING_VALUE", // required
38
38
  * ChimeBearer: "STRING_VALUE", // required
@@ -31,7 +31,7 @@ export interface DescribeChannelModeratorCommandOutput extends DescribeChannelMo
31
31
  * import { ChimeSDKMessagingClient, DescribeChannelModeratorCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
32
32
  * // const { ChimeSDKMessagingClient, DescribeChannelModeratorCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
33
33
  * const client = new ChimeSDKMessagingClient(config);
34
- * const input = {
34
+ * const input = { // DescribeChannelModeratorRequest
35
35
  * ChannelArn: "STRING_VALUE", // required
36
36
  * ChannelModeratorArn: "STRING_VALUE", // required
37
37
  * ChimeBearer: "STRING_VALUE", // required
@@ -33,7 +33,7 @@ export interface DisassociateChannelFlowCommandOutput extends __MetadataBearer {
33
33
  * import { ChimeSDKMessagingClient, DisassociateChannelFlowCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
34
34
  * // const { ChimeSDKMessagingClient, DisassociateChannelFlowCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
35
35
  * const client = new ChimeSDKMessagingClient(config);
36
- * const input = {
36
+ * const input = { // DisassociateChannelFlowRequest
37
37
  * ChannelArn: "STRING_VALUE", // required
38
38
  * ChannelFlowArn: "STRING_VALUE", // required
39
39
  * ChimeBearer: "STRING_VALUE", // required
@@ -35,7 +35,7 @@ export interface GetChannelMembershipPreferencesCommandOutput extends GetChannel
35
35
  * import { ChimeSDKMessagingClient, GetChannelMembershipPreferencesCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
36
36
  * // const { ChimeSDKMessagingClient, GetChannelMembershipPreferencesCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
37
37
  * const client = new ChimeSDKMessagingClient(config);
38
- * const input = {
38
+ * const input = { // GetChannelMembershipPreferencesRequest
39
39
  * ChannelArn: "STRING_VALUE", // required
40
40
  * MemberArn: "STRING_VALUE", // required
41
41
  * ChimeBearer: "STRING_VALUE", // required
@@ -31,7 +31,7 @@ export interface GetChannelMessageCommandOutput extends GetChannelMessageRespons
31
31
  * import { ChimeSDKMessagingClient, GetChannelMessageCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
32
32
  * // const { ChimeSDKMessagingClient, GetChannelMessageCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
33
33
  * const client = new ChimeSDKMessagingClient(config);
34
- * const input = {
34
+ * const input = { // GetChannelMessageRequest
35
35
  * ChannelArn: "STRING_VALUE", // required
36
36
  * MessageId: "STRING_VALUE", // required
37
37
  * ChimeBearer: "STRING_VALUE", // required
@@ -61,7 +61,7 @@ export interface GetChannelMessageStatusCommandOutput extends GetChannelMessageS
61
61
  * import { ChimeSDKMessagingClient, GetChannelMessageStatusCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
62
62
  * // const { ChimeSDKMessagingClient, GetChannelMessageStatusCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
63
63
  * const client = new ChimeSDKMessagingClient(config);
64
- * const input = {
64
+ * const input = { // GetChannelMessageStatusRequest
65
65
  * ChannelArn: "STRING_VALUE", // required
66
66
  * MessageId: "STRING_VALUE", // required
67
67
  * ChimeBearer: "STRING_VALUE", // required
@@ -27,7 +27,7 @@ export interface GetMessagingStreamingConfigurationsCommandOutput extends GetMes
27
27
  * import { ChimeSDKMessagingClient, GetMessagingStreamingConfigurationsCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
28
28
  * // const { ChimeSDKMessagingClient, GetMessagingStreamingConfigurationsCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
29
29
  * const client = new ChimeSDKMessagingClient(config);
30
- * const input = {
30
+ * const input = { // GetMessagingStreamingConfigurationsRequest
31
31
  * AppInstanceArn: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new GetMessagingStreamingConfigurationsCommand(input);
@@ -31,7 +31,7 @@ export interface ListChannelBansCommandOutput extends ListChannelBansResponse, _
31
31
  * import { ChimeSDKMessagingClient, ListChannelBansCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
32
32
  * // const { ChimeSDKMessagingClient, ListChannelBansCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
33
33
  * const client = new ChimeSDKMessagingClient(config);
34
- * const input = {
34
+ * const input = { // ListChannelBansRequest
35
35
  * ChannelArn: "STRING_VALUE", // required
36
36
  * MaxResults: Number("int"),
37
37
  * NextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListChannelFlowsCommandOutput extends ListChannelFlowsResponse,
26
26
  * import { ChimeSDKMessagingClient, ListChannelFlowsCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
27
27
  * // const { ChimeSDKMessagingClient, ListChannelFlowsCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
28
28
  * const client = new ChimeSDKMessagingClient(config);
29
- * const input = {
29
+ * const input = { // ListChannelFlowsRequest
30
30
  * AppInstanceArn: "STRING_VALUE", // required
31
31
  * MaxResults: Number("int"),
32
32
  * NextToken: "STRING_VALUE",
@@ -33,7 +33,7 @@ export interface ListChannelMembershipsCommandOutput extends ListChannelMembersh
33
33
  * import { ChimeSDKMessagingClient, ListChannelMembershipsCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
34
34
  * // const { ChimeSDKMessagingClient, ListChannelMembershipsCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
35
35
  * const client = new ChimeSDKMessagingClient(config);
36
- * const input = {
36
+ * const input = { // ListChannelMembershipsRequest
37
37
  * ChannelArn: "STRING_VALUE", // required
38
38
  * Type: "DEFAULT" || "HIDDEN",
39
39
  * MaxResults: Number("int"),
@@ -32,7 +32,7 @@ export interface ListChannelMembershipsForAppInstanceUserCommandOutput extends L
32
32
  * import { ChimeSDKMessagingClient, ListChannelMembershipsForAppInstanceUserCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
33
33
  * // const { ChimeSDKMessagingClient, ListChannelMembershipsForAppInstanceUserCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
34
34
  * const client = new ChimeSDKMessagingClient(config);
35
- * const input = {
35
+ * const input = { // ListChannelMembershipsForAppInstanceUserRequest
36
36
  * AppInstanceUserArn: "STRING_VALUE",
37
37
  * MaxResults: Number("int"),
38
38
  * NextToken: "STRING_VALUE",
@@ -36,7 +36,7 @@ export interface ListChannelMessagesCommandOutput extends ListChannelMessagesRes
36
36
  * import { ChimeSDKMessagingClient, ListChannelMessagesCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
37
37
  * // const { ChimeSDKMessagingClient, ListChannelMessagesCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
38
38
  * const client = new ChimeSDKMessagingClient(config);
39
- * const input = {
39
+ * const input = { // ListChannelMessagesRequest
40
40
  * ChannelArn: "STRING_VALUE", // required
41
41
  * SortOrder: "ASCENDING" || "DESCENDING",
42
42
  * NotBefore: new Date("TIMESTAMP"),
@@ -31,7 +31,7 @@ export interface ListChannelModeratorsCommandOutput extends ListChannelModerator
31
31
  * import { ChimeSDKMessagingClient, ListChannelModeratorsCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
32
32
  * // const { ChimeSDKMessagingClient, ListChannelModeratorsCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
33
33
  * const client = new ChimeSDKMessagingClient(config);
34
- * const input = {
34
+ * const input = { // ListChannelModeratorsRequest
35
35
  * ChannelArn: "STRING_VALUE", // required
36
36
  * MaxResults: Number("int"),
37
37
  * NextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListChannelsAssociatedWithChannelFlowCommandOutput extends List
26
26
  * import { ChimeSDKMessagingClient, ListChannelsAssociatedWithChannelFlowCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
27
27
  * // const { ChimeSDKMessagingClient, ListChannelsAssociatedWithChannelFlowCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
28
28
  * const client = new ChimeSDKMessagingClient(config);
29
- * const input = {
29
+ * const input = { // ListChannelsAssociatedWithChannelFlowRequest
30
30
  * ChannelFlowArn: "STRING_VALUE", // required
31
31
  * MaxResults: Number("int"),
32
32
  * NextToken: "STRING_VALUE",
@@ -45,7 +45,7 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
45
45
  * import { ChimeSDKMessagingClient, ListChannelsCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
46
46
  * // const { ChimeSDKMessagingClient, ListChannelsCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
47
47
  * const client = new ChimeSDKMessagingClient(config);
48
- * const input = {
48
+ * const input = { // ListChannelsRequest
49
49
  * AppInstanceArn: "STRING_VALUE", // required
50
50
  * Privacy: "PUBLIC" || "PRIVATE",
51
51
  * MaxResults: Number("int"),
@@ -31,7 +31,7 @@ export interface ListChannelsModeratedByAppInstanceUserCommandOutput extends Lis
31
31
  * import { ChimeSDKMessagingClient, ListChannelsModeratedByAppInstanceUserCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
32
32
  * // const { ChimeSDKMessagingClient, ListChannelsModeratedByAppInstanceUserCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
33
33
  * const client = new ChimeSDKMessagingClient(config);
34
- * const input = {
34
+ * const input = { // ListChannelsModeratedByAppInstanceUserRequest
35
35
  * AppInstanceUserArn: "STRING_VALUE",
36
36
  * MaxResults: Number("int"),
37
37
  * NextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListSubChannelsCommandOutput extends ListSubChannelsResponse, _
26
26
  * import { ChimeSDKMessagingClient, ListSubChannelsCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
27
27
  * // const { ChimeSDKMessagingClient, ListSubChannelsCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
28
28
  * const client = new ChimeSDKMessagingClient(config);
29
- * const input = {
29
+ * const input = { // ListSubChannelsRequest
30
30
  * ChannelArn: "STRING_VALUE", // required
31
31
  * ChimeBearer: "STRING_VALUE", // required
32
32
  * MaxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { ChimeSDKMessagingClient, ListTagsForResourceCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
27
27
  * // const { ChimeSDKMessagingClient, ListTagsForResourceCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
28
28
  * const client = new ChimeSDKMessagingClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -43,10 +43,10 @@ export interface PutChannelExpirationSettingsCommandOutput extends PutChannelExp
43
43
  * import { ChimeSDKMessagingClient, PutChannelExpirationSettingsCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
44
44
  * // const { ChimeSDKMessagingClient, PutChannelExpirationSettingsCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
45
45
  * const client = new ChimeSDKMessagingClient(config);
46
- * const input = {
46
+ * const input = { // PutChannelExpirationSettingsRequest
47
47
  * ChannelArn: "STRING_VALUE", // required
48
48
  * ChimeBearer: "STRING_VALUE",
49
- * ExpirationSettings: {
49
+ * ExpirationSettings: { // ExpirationSettings
50
50
  * ExpirationDays: Number("int"), // required
51
51
  * ExpirationCriterion: "CREATED_TIMESTAMP" || "LAST_MESSAGE_TIMESTAMP", // required
52
52
  * },
@@ -35,12 +35,12 @@ export interface PutChannelMembershipPreferencesCommandOutput extends PutChannel
35
35
  * import { ChimeSDKMessagingClient, PutChannelMembershipPreferencesCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
36
36
  * // const { ChimeSDKMessagingClient, PutChannelMembershipPreferencesCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
37
37
  * const client = new ChimeSDKMessagingClient(config);
38
- * const input = {
38
+ * const input = { // PutChannelMembershipPreferencesRequest
39
39
  * ChannelArn: "STRING_VALUE", // required
40
40
  * MemberArn: "STRING_VALUE", // required
41
41
  * ChimeBearer: "STRING_VALUE", // required
42
- * Preferences: {
43
- * PushNotifications: {
42
+ * Preferences: { // ChannelMembershipPreferences
43
+ * PushNotifications: { // PushNotificationPreferences
44
44
  * AllowNotifications: "ALL" || "NONE" || "FILTERED", // required
45
45
  * FilterRule: "STRING_VALUE",
46
46
  * },
@@ -27,10 +27,10 @@ export interface PutMessagingStreamingConfigurationsCommandOutput extends PutMes
27
27
  * import { ChimeSDKMessagingClient, PutMessagingStreamingConfigurationsCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
28
28
  * // const { ChimeSDKMessagingClient, PutMessagingStreamingConfigurationsCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
29
29
  * const client = new ChimeSDKMessagingClient(config);
30
- * const input = {
30
+ * const input = { // PutMessagingStreamingConfigurationsRequest
31
31
  * AppInstanceArn: "STRING_VALUE", // required
32
- * StreamingConfigurations: [ // required
33
- * {
32
+ * StreamingConfigurations: [ // StreamingConfigurationList // required
33
+ * { // StreamingConfiguration
34
34
  * DataType: "Channel" || "ChannelMessage", // required
35
35
  * ResourceArn: "STRING_VALUE", // required
36
36
  * },
@@ -32,7 +32,7 @@ export interface RedactChannelMessageCommandOutput extends RedactChannelMessageR
32
32
  * import { ChimeSDKMessagingClient, RedactChannelMessageCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
33
33
  * // const { ChimeSDKMessagingClient, RedactChannelMessageCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
34
34
  * const client = new ChimeSDKMessagingClient(config);
35
- * const input = {
35
+ * const input = { // RedactChannelMessageRequest
36
36
  * ChannelArn: "STRING_VALUE", // required
37
37
  * MessageId: "STRING_VALUE", // required
38
38
  * ChimeBearer: "STRING_VALUE", // required
@@ -31,12 +31,12 @@ export interface SearchChannelsCommandOutput extends SearchChannelsResponse, __M
31
31
  * import { ChimeSDKMessagingClient, SearchChannelsCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
32
32
  * // const { ChimeSDKMessagingClient, SearchChannelsCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
33
33
  * const client = new ChimeSDKMessagingClient(config);
34
- * const input = {
34
+ * const input = { // SearchChannelsRequest
35
35
  * ChimeBearer: "STRING_VALUE",
36
- * Fields: [ // required
37
- * {
36
+ * Fields: [ // SearchFields // required
37
+ * { // SearchField
38
38
  * Key: "MEMBERS", // required
39
- * Values: [ // required
39
+ * Values: [ // SearchFieldValues // required
40
40
  * "STRING_VALUE",
41
41
  * ],
42
42
  * Operator: "EQUALS" || "INCLUDES", // required
@@ -33,7 +33,7 @@ export interface SendChannelMessageCommandOutput extends SendChannelMessageRespo
33
33
  * import { ChimeSDKMessagingClient, SendChannelMessageCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
34
34
  * // const { ChimeSDKMessagingClient, SendChannelMessageCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
35
35
  * const client = new ChimeSDKMessagingClient(config);
36
- * const input = {
36
+ * const input = { // SendChannelMessageRequest
37
37
  * ChannelArn: "STRING_VALUE", // required
38
38
  * Content: "STRING_VALUE", // required
39
39
  * Type: "STANDARD" || "CONTROL", // required
@@ -41,14 +41,14 @@ export interface SendChannelMessageCommandOutput extends SendChannelMessageRespo
41
41
  * Metadata: "STRING_VALUE",
42
42
  * ClientRequestToken: "STRING_VALUE", // required
43
43
  * ChimeBearer: "STRING_VALUE", // required
44
- * PushNotification: {
44
+ * PushNotification: { // PushNotificationConfiguration
45
45
  * Title: "STRING_VALUE",
46
46
  * Body: "STRING_VALUE",
47
47
  * Type: "DEFAULT" || "VOIP",
48
48
  * },
49
- * MessageAttributes: {
50
- * "<keys>": {
51
- * StringValues: [
49
+ * MessageAttributes: { // MessageAttributeMap
50
+ * "<keys>": { // MessageAttributeValue
51
+ * StringValues: [ // MessageAttributeStringValues
52
52
  * "STRING_VALUE",
53
53
  * ],
54
54
  * },
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
26
26
  * import { ChimeSDKMessagingClient, TagResourceCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
27
27
  * // const { ChimeSDKMessagingClient, TagResourceCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
28
28
  * const client = new ChimeSDKMessagingClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
- * Tags: [ // required
32
- * {
31
+ * Tags: [ // TagList // required
32
+ * { // Tag
33
33
  * Key: "STRING_VALUE", // required
34
34
  * Value: "STRING_VALUE", // required
35
35
  * },
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
26
26
  * import { ChimeSDKMessagingClient, UntagResourceCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
27
27
  * // const { ChimeSDKMessagingClient, UntagResourceCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
28
28
  * const client = new ChimeSDKMessagingClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
- * TagKeys: [ // required
31
+ * TagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -33,7 +33,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
33
33
  * import { ChimeSDKMessagingClient, UpdateChannelCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
34
34
  * // const { ChimeSDKMessagingClient, UpdateChannelCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
35
35
  * const client = new ChimeSDKMessagingClient(config);
36
- * const input = {
36
+ * const input = { // UpdateChannelRequest
37
37
  * ChannelArn: "STRING_VALUE", // required
38
38
  * Name: "STRING_VALUE",
39
39
  * Mode: "UNRESTRICTED" || "RESTRICTED",
@@ -26,13 +26,13 @@ export interface UpdateChannelFlowCommandOutput extends UpdateChannelFlowRespons
26
26
  * import { ChimeSDKMessagingClient, UpdateChannelFlowCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
27
27
  * // const { ChimeSDKMessagingClient, UpdateChannelFlowCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
28
28
  * const client = new ChimeSDKMessagingClient(config);
29
- * const input = {
29
+ * const input = { // UpdateChannelFlowRequest
30
30
  * ChannelFlowArn: "STRING_VALUE", // required
31
- * Processors: [ // required
32
- * {
31
+ * Processors: [ // ProcessorList // required
32
+ * { // Processor
33
33
  * Name: "STRING_VALUE", // required
34
- * Configuration: {
35
- * Lambda: {
34
+ * Configuration: { // ProcessorConfiguration
35
+ * Lambda: { // LambdaConfiguration
36
36
  * ResourceArn: "STRING_VALUE", // required
37
37
  * InvocationType: "ASYNC", // required
38
38
  * },
@@ -31,7 +31,7 @@ export interface UpdateChannelMessageCommandOutput extends UpdateChannelMessageR
31
31
  * import { ChimeSDKMessagingClient, UpdateChannelMessageCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
32
32
  * // const { ChimeSDKMessagingClient, UpdateChannelMessageCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
33
33
  * const client = new ChimeSDKMessagingClient(config);
34
- * const input = {
34
+ * const input = { // UpdateChannelMessageRequest
35
35
  * ChannelArn: "STRING_VALUE", // required
36
36
  * MessageId: "STRING_VALUE", // required
37
37
  * Content: "STRING_VALUE", // required
@@ -31,7 +31,7 @@ export interface UpdateChannelReadMarkerCommandOutput extends UpdateChannelReadM
31
31
  * import { ChimeSDKMessagingClient, UpdateChannelReadMarkerCommand } from "@aws-sdk/client-chime-sdk-messaging"; // ES Modules import
32
32
  * // const { ChimeSDKMessagingClient, UpdateChannelReadMarkerCommand } = require("@aws-sdk/client-chime-sdk-messaging"); // CommonJS import
33
33
  * const client = new ChimeSDKMessagingClient(config);
34
- * const input = {
34
+ * const input = { // UpdateChannelReadMarkerRequest
35
35
  * ChannelArn: "STRING_VALUE", // required
36
36
  * ChimeBearer: "STRING_VALUE", // required
37
37
  * SubChannelId: "STRING_VALUE",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-chime-sdk-messaging",
3
3
  "description": "AWS SDK for JavaScript Chime Sdk Messaging Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",