cdk-docker-image-deployment 0.0.200 → 0.0.201
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +4 -4
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +15 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/batch-2016-08-10.min.json +74 -41
- package/node_modules/aws-sdk/apis/chime-sdk-identity-2021-04-20.min.json +314 -64
- package/node_modules/aws-sdk/apis/chime-sdk-identity-2021-04-20.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +599 -8
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +162 -88
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.min.json +758 -44
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/codeartifact-2018-09-22.min.json +35 -29
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +69 -61
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.examples.json +5 -0
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.min.json +363 -0
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.paginators.json +9 -0
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1061 -880
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/batch.d.ts +25 -8
- package/node_modules/aws-sdk/clients/chimesdkidentity.d.ts +266 -11
- package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +696 -14
- package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +180 -107
- package/node_modules/aws-sdk/clients/chimesdkvoice.d.ts +364 -0
- package/node_modules/aws-sdk/clients/codeartifact.d.ts +29 -21
- package/node_modules/aws-sdk/clients/guardduty.d.ts +22 -13
- package/node_modules/aws-sdk/clients/ivsrealtime.d.ts +379 -0
- package/node_modules/aws-sdk/clients/ivsrealtime.js +18 -0
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +2 -2
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +219 -14
- package/node_modules/aws-sdk/clients/textract.d.ts +13 -13
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +52 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +7 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +12 -12
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -6
|
@@ -12,19 +12,19 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
12
12
|
constructor(options?: ChimeSDKMessaging.Types.ClientConfiguration)
|
|
13
13
|
config: Config & ChimeSDKMessaging.Types.ClientConfiguration;
|
|
14
14
|
/**
|
|
15
|
-
* Associates a channel flow with a channel. Once associated, all messages to that channel go through channel flow processors. To stop processing, use the DisassociateChannelFlow API. Only administrators or channel moderators can associate a channel flow. The x-amz-chime-bearer request header is mandatory. Use the
|
|
15
|
+
* Associates a channel flow with a channel. Once associated, all messages to that channel go through channel flow processors. To stop processing, use the DisassociateChannelFlow API. Only administrators or channel moderators can associate a channel flow. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
16
16
|
*/
|
|
17
17
|
associateChannelFlow(params: ChimeSDKMessaging.Types.AssociateChannelFlowRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
18
18
|
/**
|
|
19
|
-
* Associates a channel flow with a channel. Once associated, all messages to that channel go through channel flow processors. To stop processing, use the DisassociateChannelFlow API. Only administrators or channel moderators can associate a channel flow. The x-amz-chime-bearer request header is mandatory. Use the
|
|
19
|
+
* Associates a channel flow with a channel. Once associated, all messages to that channel go through channel flow processors. To stop processing, use the DisassociateChannelFlow API. Only administrators or channel moderators can associate a channel flow. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
20
20
|
*/
|
|
21
21
|
associateChannelFlow(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* Adds a specified number of users to a channel.
|
|
23
|
+
* Adds a specified number of users and bots to a channel.
|
|
24
24
|
*/
|
|
25
25
|
batchCreateChannelMembership(params: ChimeSDKMessaging.Types.BatchCreateChannelMembershipRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.BatchCreateChannelMembershipResponse) => void): Request<ChimeSDKMessaging.Types.BatchCreateChannelMembershipResponse, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* Adds a specified number of users to a channel.
|
|
27
|
+
* Adds a specified number of users and bots to a channel.
|
|
28
28
|
*/
|
|
29
29
|
batchCreateChannelMembership(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.BatchCreateChannelMembershipResponse) => void): Request<ChimeSDKMessaging.Types.BatchCreateChannelMembershipResponse, AWSError>;
|
|
30
30
|
/**
|
|
@@ -36,19 +36,19 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
36
36
|
*/
|
|
37
37
|
channelFlowCallback(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ChannelFlowCallbackResponse) => void): Request<ChimeSDKMessaging.Types.ChannelFlowCallbackResponse, AWSError>;
|
|
38
38
|
/**
|
|
39
|
-
* Creates a channel to which you can add users and send messages. Restriction: You can't change a channel's privacy. The x-amz-chime-bearer request header is mandatory. Use the
|
|
39
|
+
* Creates a channel to which you can add users and send messages. Restriction: You can't change a channel's privacy. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
40
40
|
*/
|
|
41
41
|
createChannel(params: ChimeSDKMessaging.Types.CreateChannelRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.CreateChannelResponse) => void): Request<ChimeSDKMessaging.Types.CreateChannelResponse, AWSError>;
|
|
42
42
|
/**
|
|
43
|
-
* Creates a channel to which you can add users and send messages. Restriction: You can't change a channel's privacy. The x-amz-chime-bearer request header is mandatory. Use the
|
|
43
|
+
* Creates a channel to which you can add users and send messages. Restriction: You can't change a channel's privacy. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
44
44
|
*/
|
|
45
45
|
createChannel(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.CreateChannelResponse) => void): Request<ChimeSDKMessaging.Types.CreateChannelResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
* Permanently bans a member from a channel. Moderators can't add banned members to a channel. To undo a ban, you first have to DeleteChannelBan, and then CreateChannelMembership. Bans are cleaned up when you delete users or channels. If you ban a user who is already part of a channel, that user is automatically kicked from the channel. The x-amz-chime-bearer request header is mandatory. Use the
|
|
47
|
+
* Permanently bans a member from a channel. Moderators can't add banned members to a channel. To undo a ban, you first have to DeleteChannelBan, and then CreateChannelMembership. Bans are cleaned up when you delete users or channels. If you ban a user who is already part of a channel, that user is automatically kicked from the channel. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
48
48
|
*/
|
|
49
49
|
createChannelBan(params: ChimeSDKMessaging.Types.CreateChannelBanRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.CreateChannelBanResponse) => void): Request<ChimeSDKMessaging.Types.CreateChannelBanResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
* Permanently bans a member from a channel. Moderators can't add banned members to a channel. To undo a ban, you first have to DeleteChannelBan, and then CreateChannelMembership. Bans are cleaned up when you delete users or channels. If you ban a user who is already part of a channel, that user is automatically kicked from the channel. The x-amz-chime-bearer request header is mandatory. Use the
|
|
51
|
+
* Permanently bans a member from a channel. Moderators can't add banned members to a channel. To undo a ban, you first have to DeleteChannelBan, and then CreateChannelMembership. Bans are cleaned up when you delete users or channels. If you ban a user who is already part of a channel, that user is automatically kicked from the channel. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
52
52
|
*/
|
|
53
53
|
createChannelBan(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.CreateChannelBanResponse) => void): Request<ChimeSDKMessaging.Types.CreateChannelBanResponse, AWSError>;
|
|
54
54
|
/**
|
|
@@ -60,35 +60,35 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
60
60
|
*/
|
|
61
61
|
createChannelFlow(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.CreateChannelFlowResponse) => void): Request<ChimeSDKMessaging.Types.CreateChannelFlowResponse, AWSError>;
|
|
62
62
|
/**
|
|
63
|
-
* Adds a
|
|
63
|
+
* Adds a member to a channel. The InvitedBy field in ChannelMembership is derived from the request header. A channel member can: List messages Send messages Receive messages Edit their own messages Leave the channel Privacy settings impact this action as follows: Public Channels: You do not need to be a member to list messages, but you must be a member to send messages. Private Channels: You must be a member to list or send messages. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUserArn or AppInstanceBot that makes the API call as the value in the header.
|
|
64
64
|
*/
|
|
65
65
|
createChannelMembership(params: ChimeSDKMessaging.Types.CreateChannelMembershipRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.CreateChannelMembershipResponse) => void): Request<ChimeSDKMessaging.Types.CreateChannelMembershipResponse, AWSError>;
|
|
66
66
|
/**
|
|
67
|
-
* Adds a
|
|
67
|
+
* Adds a member to a channel. The InvitedBy field in ChannelMembership is derived from the request header. A channel member can: List messages Send messages Receive messages Edit their own messages Leave the channel Privacy settings impact this action as follows: Public Channels: You do not need to be a member to list messages, but you must be a member to send messages. Private Channels: You must be a member to list or send messages. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUserArn or AppInstanceBot that makes the API call as the value in the header.
|
|
68
68
|
*/
|
|
69
69
|
createChannelMembership(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.CreateChannelMembershipResponse) => void): Request<ChimeSDKMessaging.Types.CreateChannelMembershipResponse, AWSError>;
|
|
70
70
|
/**
|
|
71
|
-
* Creates a new ChannelModerator. A channel moderator can: Add and remove other members of the channel. Add and remove other moderators of the channel. Add and remove user bans for the channel. Redact messages in the channel. List messages in the channel. The x-amz-chime-bearer request header is mandatory. Use the
|
|
71
|
+
* Creates a new ChannelModerator. A channel moderator can: Add and remove other members of the channel. Add and remove other moderators of the channel. Add and remove user bans for the channel. Redact messages in the channel. List messages in the channel. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBotof the user that makes the API call as the value in the header.
|
|
72
72
|
*/
|
|
73
73
|
createChannelModerator(params: ChimeSDKMessaging.Types.CreateChannelModeratorRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.CreateChannelModeratorResponse) => void): Request<ChimeSDKMessaging.Types.CreateChannelModeratorResponse, AWSError>;
|
|
74
74
|
/**
|
|
75
|
-
* Creates a new ChannelModerator. A channel moderator can: Add and remove other members of the channel. Add and remove other moderators of the channel. Add and remove user bans for the channel. Redact messages in the channel. List messages in the channel. The x-amz-chime-bearer request header is mandatory. Use the
|
|
75
|
+
* Creates a new ChannelModerator. A channel moderator can: Add and remove other members of the channel. Add and remove other moderators of the channel. Add and remove user bans for the channel. Redact messages in the channel. List messages in the channel. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBotof the user that makes the API call as the value in the header.
|
|
76
76
|
*/
|
|
77
77
|
createChannelModerator(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.CreateChannelModeratorResponse) => void): Request<ChimeSDKMessaging.Types.CreateChannelModeratorResponse, AWSError>;
|
|
78
78
|
/**
|
|
79
|
-
* Immediately makes a channel and its memberships inaccessible and marks them for deletion. This is an irreversible process. The x-amz-chime-bearer request header is mandatory. Use the
|
|
79
|
+
* Immediately makes a channel and its memberships inaccessible and marks them for deletion. This is an irreversible process. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUserArn or AppInstanceBot that makes the API call as the value in the header.
|
|
80
80
|
*/
|
|
81
81
|
deleteChannel(params: ChimeSDKMessaging.Types.DeleteChannelRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
82
82
|
/**
|
|
83
|
-
* Immediately makes a channel and its memberships inaccessible and marks them for deletion. This is an irreversible process. The x-amz-chime-bearer request header is mandatory. Use the
|
|
83
|
+
* Immediately makes a channel and its memberships inaccessible and marks them for deletion. This is an irreversible process. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUserArn or AppInstanceBot that makes the API call as the value in the header.
|
|
84
84
|
*/
|
|
85
85
|
deleteChannel(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
86
86
|
/**
|
|
87
|
-
* Removes a
|
|
87
|
+
* Removes a member from a channel's ban list. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
88
88
|
*/
|
|
89
89
|
deleteChannelBan(params: ChimeSDKMessaging.Types.DeleteChannelBanRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
90
90
|
/**
|
|
91
|
-
* Removes a
|
|
91
|
+
* Removes a member from a channel's ban list. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
92
92
|
*/
|
|
93
93
|
deleteChannelBan(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
94
94
|
/**
|
|
@@ -108,19 +108,19 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
108
108
|
*/
|
|
109
109
|
deleteChannelMembership(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
110
110
|
/**
|
|
111
|
-
* Deletes a channel message. Only admins can perform this action. Deletion makes messages inaccessible immediately. A background process deletes any revisions created by UpdateChannelMessage. The x-amz-chime-bearer request header is mandatory. Use the
|
|
111
|
+
* Deletes a channel message. Only admins can perform this action. Deletion makes messages inaccessible immediately. A background process deletes any revisions created by UpdateChannelMessage. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
112
112
|
*/
|
|
113
113
|
deleteChannelMessage(params: ChimeSDKMessaging.Types.DeleteChannelMessageRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
114
114
|
/**
|
|
115
|
-
* Deletes a channel message. Only admins can perform this action. Deletion makes messages inaccessible immediately. A background process deletes any revisions created by UpdateChannelMessage. The x-amz-chime-bearer request header is mandatory. Use the
|
|
115
|
+
* Deletes a channel message. Only admins can perform this action. Deletion makes messages inaccessible immediately. A background process deletes any revisions created by UpdateChannelMessage. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
116
116
|
*/
|
|
117
117
|
deleteChannelMessage(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
118
118
|
/**
|
|
119
|
-
* Deletes a channel moderator. The x-amz-chime-bearer request header is mandatory. Use the
|
|
119
|
+
* Deletes a channel moderator. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
120
120
|
*/
|
|
121
121
|
deleteChannelModerator(params: ChimeSDKMessaging.Types.DeleteChannelModeratorRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
122
122
|
/**
|
|
123
|
-
* Deletes a channel moderator. The x-amz-chime-bearer request header is mandatory. Use the
|
|
123
|
+
* Deletes a channel moderator. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
124
124
|
*/
|
|
125
125
|
deleteChannelModerator(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
126
126
|
/**
|
|
@@ -132,19 +132,19 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
132
132
|
*/
|
|
133
133
|
deleteMessagingStreamingConfigurations(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
134
134
|
/**
|
|
135
|
-
* Returns the full details of a channel in an Amazon Chime AppInstance. The x-amz-chime-bearer request header is mandatory. Use the
|
|
135
|
+
* Returns the full details of a channel in an Amazon Chime AppInstance. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
136
136
|
*/
|
|
137
137
|
describeChannel(params: ChimeSDKMessaging.Types.DescribeChannelRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.DescribeChannelResponse) => void): Request<ChimeSDKMessaging.Types.DescribeChannelResponse, AWSError>;
|
|
138
138
|
/**
|
|
139
|
-
* Returns the full details of a channel in an Amazon Chime AppInstance. The x-amz-chime-bearer request header is mandatory. Use the
|
|
139
|
+
* Returns the full details of a channel in an Amazon Chime AppInstance. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
140
140
|
*/
|
|
141
141
|
describeChannel(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.DescribeChannelResponse) => void): Request<ChimeSDKMessaging.Types.DescribeChannelResponse, AWSError>;
|
|
142
142
|
/**
|
|
143
|
-
* Returns the full details of a channel ban. The x-amz-chime-bearer request header is mandatory. Use the
|
|
143
|
+
* Returns the full details of a channel ban. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
144
144
|
*/
|
|
145
145
|
describeChannelBan(params: ChimeSDKMessaging.Types.DescribeChannelBanRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.DescribeChannelBanResponse) => void): Request<ChimeSDKMessaging.Types.DescribeChannelBanResponse, AWSError>;
|
|
146
146
|
/**
|
|
147
|
-
* Returns the full details of a channel ban. The x-amz-chime-bearer request header is mandatory. Use the
|
|
147
|
+
* Returns the full details of a channel ban. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
148
148
|
*/
|
|
149
149
|
describeChannelBan(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.DescribeChannelBanResponse) => void): Request<ChimeSDKMessaging.Types.DescribeChannelBanResponse, AWSError>;
|
|
150
150
|
/**
|
|
@@ -156,27 +156,27 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
156
156
|
*/
|
|
157
157
|
describeChannelFlow(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.DescribeChannelFlowResponse) => void): Request<ChimeSDKMessaging.Types.DescribeChannelFlowResponse, AWSError>;
|
|
158
158
|
/**
|
|
159
|
-
* Returns the full details of a user's channel membership. The x-amz-chime-bearer request header is mandatory. Use the
|
|
159
|
+
* Returns the full details of a user's channel membership. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
160
160
|
*/
|
|
161
161
|
describeChannelMembership(params: ChimeSDKMessaging.Types.DescribeChannelMembershipRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.DescribeChannelMembershipResponse) => void): Request<ChimeSDKMessaging.Types.DescribeChannelMembershipResponse, AWSError>;
|
|
162
162
|
/**
|
|
163
|
-
* Returns the full details of a user's channel membership. The x-amz-chime-bearer request header is mandatory. Use the
|
|
163
|
+
* Returns the full details of a user's channel membership. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
164
164
|
*/
|
|
165
165
|
describeChannelMembership(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.DescribeChannelMembershipResponse) => void): Request<ChimeSDKMessaging.Types.DescribeChannelMembershipResponse, AWSError>;
|
|
166
166
|
/**
|
|
167
|
-
* Returns the details of a channel based on the membership of the specified AppInstanceUser. The x-amz-chime-bearer request header is mandatory. Use the
|
|
167
|
+
* Returns the details of a channel based on the membership of the specified AppInstanceUser or AppInstanceBot. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
168
168
|
*/
|
|
169
169
|
describeChannelMembershipForAppInstanceUser(params: ChimeSDKMessaging.Types.DescribeChannelMembershipForAppInstanceUserRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.DescribeChannelMembershipForAppInstanceUserResponse) => void): Request<ChimeSDKMessaging.Types.DescribeChannelMembershipForAppInstanceUserResponse, AWSError>;
|
|
170
170
|
/**
|
|
171
|
-
* Returns the details of a channel based on the membership of the specified AppInstanceUser. The x-amz-chime-bearer request header is mandatory. Use the
|
|
171
|
+
* Returns the details of a channel based on the membership of the specified AppInstanceUser or AppInstanceBot. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
172
172
|
*/
|
|
173
173
|
describeChannelMembershipForAppInstanceUser(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.DescribeChannelMembershipForAppInstanceUserResponse) => void): Request<ChimeSDKMessaging.Types.DescribeChannelMembershipForAppInstanceUserResponse, AWSError>;
|
|
174
174
|
/**
|
|
175
|
-
* Returns the full details of a channel moderated by the specified AppInstanceUser. The x-amz-chime-bearer request header is mandatory. Use the
|
|
175
|
+
* Returns the full details of a channel moderated by the specified AppInstanceUser or AppInstanceBot. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
176
176
|
*/
|
|
177
177
|
describeChannelModeratedByAppInstanceUser(params: ChimeSDKMessaging.Types.DescribeChannelModeratedByAppInstanceUserRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.DescribeChannelModeratedByAppInstanceUserResponse) => void): Request<ChimeSDKMessaging.Types.DescribeChannelModeratedByAppInstanceUserResponse, AWSError>;
|
|
178
178
|
/**
|
|
179
|
-
* Returns the full details of a channel moderated by the specified AppInstanceUser. The x-amz-chime-bearer request header is mandatory. Use the
|
|
179
|
+
* Returns the full details of a channel moderated by the specified AppInstanceUser or AppInstanceBot. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
180
180
|
*/
|
|
181
181
|
describeChannelModeratedByAppInstanceUser(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.DescribeChannelModeratedByAppInstanceUserResponse) => void): Request<ChimeSDKMessaging.Types.DescribeChannelModeratedByAppInstanceUserResponse, AWSError>;
|
|
182
182
|
/**
|
|
@@ -188,35 +188,35 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
188
188
|
*/
|
|
189
189
|
describeChannelModerator(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.DescribeChannelModeratorResponse) => void): Request<ChimeSDKMessaging.Types.DescribeChannelModeratorResponse, AWSError>;
|
|
190
190
|
/**
|
|
191
|
-
* Disassociates a channel flow from all its channels. Once disassociated, all messages to that channel stop going through the channel flow processor. Only administrators or channel moderators can disassociate a channel flow. The x-amz-chime-bearer request header is mandatory. Use the
|
|
191
|
+
* Disassociates a channel flow from all its channels. Once disassociated, all messages to that channel stop going through the channel flow processor. Only administrators or channel moderators can disassociate a channel flow. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
192
192
|
*/
|
|
193
193
|
disassociateChannelFlow(params: ChimeSDKMessaging.Types.DisassociateChannelFlowRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
194
194
|
/**
|
|
195
|
-
* Disassociates a channel flow from all its channels. Once disassociated, all messages to that channel stop going through the channel flow processor. Only administrators or channel moderators can disassociate a channel flow. The x-amz-chime-bearer request header is mandatory. Use the
|
|
195
|
+
* Disassociates a channel flow from all its channels. Once disassociated, all messages to that channel stop going through the channel flow processor. Only administrators or channel moderators can disassociate a channel flow. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
196
196
|
*/
|
|
197
197
|
disassociateChannelFlow(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
198
198
|
/**
|
|
199
|
-
* Gets the membership preferences of an AppInstanceUser for the specified channel.
|
|
199
|
+
* Gets the membership preferences of an AppInstanceUser or AppInstanceBot for the specified channel. A user or a bot must be a member of the channel and own the membership to be able to retrieve membership preferences. Users or bots in the AppInstanceAdmin and channel moderator roles can't retrieve preferences for other users or bots. Banned users or bots can't retrieve membership preferences for the channel from which they are banned. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
200
200
|
*/
|
|
201
201
|
getChannelMembershipPreferences(params: ChimeSDKMessaging.Types.GetChannelMembershipPreferencesRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.GetChannelMembershipPreferencesResponse) => void): Request<ChimeSDKMessaging.Types.GetChannelMembershipPreferencesResponse, AWSError>;
|
|
202
202
|
/**
|
|
203
|
-
* Gets the membership preferences of an AppInstanceUser for the specified channel.
|
|
203
|
+
* Gets the membership preferences of an AppInstanceUser or AppInstanceBot for the specified channel. A user or a bot must be a member of the channel and own the membership to be able to retrieve membership preferences. Users or bots in the AppInstanceAdmin and channel moderator roles can't retrieve preferences for other users or bots. Banned users or bots can't retrieve membership preferences for the channel from which they are banned. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
204
204
|
*/
|
|
205
205
|
getChannelMembershipPreferences(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.GetChannelMembershipPreferencesResponse) => void): Request<ChimeSDKMessaging.Types.GetChannelMembershipPreferencesResponse, AWSError>;
|
|
206
206
|
/**
|
|
207
|
-
* Gets the full details of a channel message. The x-amz-chime-bearer request header is mandatory. Use the
|
|
207
|
+
* Gets the full details of a channel message. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
208
208
|
*/
|
|
209
209
|
getChannelMessage(params: ChimeSDKMessaging.Types.GetChannelMessageRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.GetChannelMessageResponse) => void): Request<ChimeSDKMessaging.Types.GetChannelMessageResponse, AWSError>;
|
|
210
210
|
/**
|
|
211
|
-
* Gets the full details of a channel message. The x-amz-chime-bearer request header is mandatory. Use the
|
|
211
|
+
* Gets the full details of a channel message. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
212
212
|
*/
|
|
213
213
|
getChannelMessage(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.GetChannelMessageResponse) => void): Request<ChimeSDKMessaging.Types.GetChannelMessageResponse, AWSError>;
|
|
214
214
|
/**
|
|
215
|
-
* Gets message status for a specified messageId. Use this API to determine the intermediate status of messages going through channel flow processing. The API provides an alternative to retrieving message status if the event was not received because a client wasn't connected to a websocket. Messages can have any one of these statuses. SENT Message processed successfully PENDING Ongoing processing FAILED Processing failed DENIED Messasge denied by the processor This API does not return statuses for denied messages, because we don't store them once the processor denies them. Only the message sender can invoke this API. The x-amz-chime-bearer request header is mandatory. Use the
|
|
215
|
+
* Gets message status for a specified messageId. Use this API to determine the intermediate status of messages going through channel flow processing. The API provides an alternative to retrieving message status if the event was not received because a client wasn't connected to a websocket. Messages can have any one of these statuses. SENT Message processed successfully PENDING Ongoing processing FAILED Processing failed DENIED Messasge denied by the processor This API does not return statuses for denied messages, because we don't store them once the processor denies them. Only the message sender can invoke this API. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
216
216
|
*/
|
|
217
217
|
getChannelMessageStatus(params: ChimeSDKMessaging.Types.GetChannelMessageStatusRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.GetChannelMessageStatusResponse) => void): Request<ChimeSDKMessaging.Types.GetChannelMessageStatusResponse, AWSError>;
|
|
218
218
|
/**
|
|
219
|
-
* Gets message status for a specified messageId. Use this API to determine the intermediate status of messages going through channel flow processing. The API provides an alternative to retrieving message status if the event was not received because a client wasn't connected to a websocket. Messages can have any one of these statuses. SENT Message processed successfully PENDING Ongoing processing FAILED Processing failed DENIED Messasge denied by the processor This API does not return statuses for denied messages, because we don't store them once the processor denies them. Only the message sender can invoke this API. The x-amz-chime-bearer request header is mandatory. Use the
|
|
219
|
+
* Gets message status for a specified messageId. Use this API to determine the intermediate status of messages going through channel flow processing. The API provides an alternative to retrieving message status if the event was not received because a client wasn't connected to a websocket. Messages can have any one of these statuses. SENT Message processed successfully PENDING Ongoing processing FAILED Processing failed DENIED Messasge denied by the processor This API does not return statuses for denied messages, because we don't store them once the processor denies them. Only the message sender can invoke this API. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
220
220
|
*/
|
|
221
221
|
getChannelMessageStatus(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.GetChannelMessageStatusResponse) => void): Request<ChimeSDKMessaging.Types.GetChannelMessageStatusResponse, AWSError>;
|
|
222
222
|
/**
|
|
@@ -236,11 +236,11 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
236
236
|
*/
|
|
237
237
|
getMessagingStreamingConfigurations(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.GetMessagingStreamingConfigurationsResponse) => void): Request<ChimeSDKMessaging.Types.GetMessagingStreamingConfigurationsResponse, AWSError>;
|
|
238
238
|
/**
|
|
239
|
-
* Lists all the users banned from a particular channel. The x-amz-chime-bearer request header is mandatory. Use the
|
|
239
|
+
* Lists all the users and bots banned from a particular channel. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
240
240
|
*/
|
|
241
241
|
listChannelBans(params: ChimeSDKMessaging.Types.ListChannelBansRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelBansResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelBansResponse, AWSError>;
|
|
242
242
|
/**
|
|
243
|
-
* Lists all the users banned from a particular channel. The x-amz-chime-bearer request header is mandatory. Use the
|
|
243
|
+
* Lists all the users and bots banned from a particular channel. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
244
244
|
*/
|
|
245
245
|
listChannelBans(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelBansResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelBansResponse, AWSError>;
|
|
246
246
|
/**
|
|
@@ -252,43 +252,43 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
252
252
|
*/
|
|
253
253
|
listChannelFlows(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelFlowsResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelFlowsResponse, AWSError>;
|
|
254
254
|
/**
|
|
255
|
-
* Lists all channel memberships in a channel. The x-amz-chime-bearer request header is mandatory. Use the
|
|
255
|
+
* Lists all channel memberships in a channel. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header. If you want to list the channels to which a specific app instance user belongs, see the ListChannelMembershipsForAppInstanceUser API.
|
|
256
256
|
*/
|
|
257
257
|
listChannelMemberships(params: ChimeSDKMessaging.Types.ListChannelMembershipsRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelMembershipsResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelMembershipsResponse, AWSError>;
|
|
258
258
|
/**
|
|
259
|
-
* Lists all channel memberships in a channel. The x-amz-chime-bearer request header is mandatory. Use the
|
|
259
|
+
* Lists all channel memberships in a channel. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header. If you want to list the channels to which a specific app instance user belongs, see the ListChannelMembershipsForAppInstanceUser API.
|
|
260
260
|
*/
|
|
261
261
|
listChannelMemberships(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelMembershipsResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelMembershipsResponse, AWSError>;
|
|
262
262
|
/**
|
|
263
|
-
* Lists all channels that
|
|
263
|
+
* Lists all channels that anr AppInstanceUser or AppInstanceBot is a part of. Only an AppInstanceAdmin can call the API with a user ARN that is not their own. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
264
264
|
*/
|
|
265
265
|
listChannelMembershipsForAppInstanceUser(params: ChimeSDKMessaging.Types.ListChannelMembershipsForAppInstanceUserRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelMembershipsForAppInstanceUserResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelMembershipsForAppInstanceUserResponse, AWSError>;
|
|
266
266
|
/**
|
|
267
|
-
* Lists all channels that
|
|
267
|
+
* Lists all channels that anr AppInstanceUser or AppInstanceBot is a part of. Only an AppInstanceAdmin can call the API with a user ARN that is not their own. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
268
268
|
*/
|
|
269
269
|
listChannelMembershipsForAppInstanceUser(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelMembershipsForAppInstanceUserResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelMembershipsForAppInstanceUserResponse, AWSError>;
|
|
270
270
|
/**
|
|
271
|
-
* List all the messages in a channel. Returns a paginated list of ChannelMessages. By default, sorted by creation timestamp in descending order. Redacted messages appear in the results as empty, since they are only redacted, not deleted. Deleted messages do not appear in the results. This action always returns the latest version of an edited message. Also, the x-amz-chime-bearer request header is mandatory. Use the
|
|
271
|
+
* List all the messages in a channel. Returns a paginated list of ChannelMessages. By default, sorted by creation timestamp in descending order. Redacted messages appear in the results as empty, since they are only redacted, not deleted. Deleted messages do not appear in the results. This action always returns the latest version of an edited message. Also, the x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
272
272
|
*/
|
|
273
273
|
listChannelMessages(params: ChimeSDKMessaging.Types.ListChannelMessagesRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelMessagesResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelMessagesResponse, AWSError>;
|
|
274
274
|
/**
|
|
275
|
-
* List all the messages in a channel. Returns a paginated list of ChannelMessages. By default, sorted by creation timestamp in descending order. Redacted messages appear in the results as empty, since they are only redacted, not deleted. Deleted messages do not appear in the results. This action always returns the latest version of an edited message. Also, the x-amz-chime-bearer request header is mandatory. Use the
|
|
275
|
+
* List all the messages in a channel. Returns a paginated list of ChannelMessages. By default, sorted by creation timestamp in descending order. Redacted messages appear in the results as empty, since they are only redacted, not deleted. Deleted messages do not appear in the results. This action always returns the latest version of an edited message. Also, the x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
276
276
|
*/
|
|
277
277
|
listChannelMessages(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelMessagesResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelMessagesResponse, AWSError>;
|
|
278
278
|
/**
|
|
279
|
-
* Lists all the moderators for a channel. The x-amz-chime-bearer request header is mandatory. Use the
|
|
279
|
+
* Lists all the moderators for a channel. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
280
280
|
*/
|
|
281
281
|
listChannelModerators(params: ChimeSDKMessaging.Types.ListChannelModeratorsRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelModeratorsResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelModeratorsResponse, AWSError>;
|
|
282
282
|
/**
|
|
283
|
-
* Lists all the moderators for a channel. The x-amz-chime-bearer request header is mandatory. Use the
|
|
283
|
+
* Lists all the moderators for a channel. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
284
284
|
*/
|
|
285
285
|
listChannelModerators(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelModeratorsResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelModeratorsResponse, AWSError>;
|
|
286
286
|
/**
|
|
287
|
-
* Lists all Channels created under a single Chime App as a paginated list. You can specify filters to narrow results. Functionality & restrictions Use privacy = PUBLIC to retrieve all public channels in the account. Only an AppInstanceAdmin can set privacy = PRIVATE to list the private channels in an account. The x-amz-chime-bearer request header is mandatory. Use the
|
|
287
|
+
* Lists all Channels created under a single Chime App as a paginated list. You can specify filters to narrow results. Functionality & restrictions Use privacy = PUBLIC to retrieve all public channels in the account. Only an AppInstanceAdmin can set privacy = PRIVATE to list the private channels in an account. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
288
288
|
*/
|
|
289
289
|
listChannels(params: ChimeSDKMessaging.Types.ListChannelsRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelsResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelsResponse, AWSError>;
|
|
290
290
|
/**
|
|
291
|
-
* Lists all Channels created under a single Chime App as a paginated list. You can specify filters to narrow results. Functionality & restrictions Use privacy = PUBLIC to retrieve all public channels in the account. Only an AppInstanceAdmin can set privacy = PRIVATE to list the private channels in an account. The x-amz-chime-bearer request header is mandatory. Use the
|
|
291
|
+
* Lists all Channels created under a single Chime App as a paginated list. You can specify filters to narrow results. Functionality & restrictions Use privacy = PUBLIC to retrieve all public channels in the account. Only an AppInstanceAdmin can set privacy = PRIVATE to list the private channels in an account. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
292
292
|
*/
|
|
293
293
|
listChannels(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelsResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelsResponse, AWSError>;
|
|
294
294
|
/**
|
|
@@ -300,11 +300,11 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
300
300
|
*/
|
|
301
301
|
listChannelsAssociatedWithChannelFlow(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelsAssociatedWithChannelFlowResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelsAssociatedWithChannelFlowResponse, AWSError>;
|
|
302
302
|
/**
|
|
303
|
-
* A list of the channels moderated by an AppInstanceUser. The x-amz-chime-bearer request header is mandatory. Use the
|
|
303
|
+
* A list of the channels moderated by an AppInstanceUser. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
304
304
|
*/
|
|
305
305
|
listChannelsModeratedByAppInstanceUser(params: ChimeSDKMessaging.Types.ListChannelsModeratedByAppInstanceUserRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelsModeratedByAppInstanceUserResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelsModeratedByAppInstanceUserResponse, AWSError>;
|
|
306
306
|
/**
|
|
307
|
-
* A list of the channels moderated by an AppInstanceUser. The x-amz-chime-bearer request header is mandatory. Use the
|
|
307
|
+
* A list of the channels moderated by an AppInstanceUser. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
308
308
|
*/
|
|
309
309
|
listChannelsModeratedByAppInstanceUser(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelsModeratedByAppInstanceUserResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelsModeratedByAppInstanceUserResponse, AWSError>;
|
|
310
310
|
/**
|
|
@@ -324,11 +324,19 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
324
324
|
*/
|
|
325
325
|
listTagsForResource(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListTagsForResourceResponse) => void): Request<ChimeSDKMessaging.Types.ListTagsForResourceResponse, AWSError>;
|
|
326
326
|
/**
|
|
327
|
-
* Sets the
|
|
327
|
+
* Sets the number of days before the channel is automatically deleted. A background process deletes expired channels within 6 hours of expiration. Actual deletion times may vary. Expired channels that have not yet been deleted appear as active, and you can update their expiration settings. The system honors the new settings. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
328
|
+
*/
|
|
329
|
+
putChannelExpirationSettings(params: ChimeSDKMessaging.Types.PutChannelExpirationSettingsRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.PutChannelExpirationSettingsResponse) => void): Request<ChimeSDKMessaging.Types.PutChannelExpirationSettingsResponse, AWSError>;
|
|
330
|
+
/**
|
|
331
|
+
* Sets the number of days before the channel is automatically deleted. A background process deletes expired channels within 6 hours of expiration. Actual deletion times may vary. Expired channels that have not yet been deleted appear as active, and you can update their expiration settings. The system honors the new settings. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
332
|
+
*/
|
|
333
|
+
putChannelExpirationSettings(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.PutChannelExpirationSettingsResponse) => void): Request<ChimeSDKMessaging.Types.PutChannelExpirationSettingsResponse, AWSError>;
|
|
334
|
+
/**
|
|
335
|
+
* Sets the membership preferences of an AppInstanceUser or AppIntanceBot for the specified channel. The user or bot must be a member of the channel. Only the user or bot who owns the membership can set preferences. Users or bots in the AppInstanceAdmin and channel moderator roles can't set preferences for other users or users. Banned users or bots can't set membership preferences for the channel from which they are banned. The x-amz-chime-bearer request header is mandatory. Use the ARN of an AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
328
336
|
*/
|
|
329
337
|
putChannelMembershipPreferences(params: ChimeSDKMessaging.Types.PutChannelMembershipPreferencesRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.PutChannelMembershipPreferencesResponse) => void): Request<ChimeSDKMessaging.Types.PutChannelMembershipPreferencesResponse, AWSError>;
|
|
330
338
|
/**
|
|
331
|
-
* Sets the membership preferences of an AppInstanceUser for the specified channel. The
|
|
339
|
+
* Sets the membership preferences of an AppInstanceUser or AppIntanceBot for the specified channel. The user or bot must be a member of the channel. Only the user or bot who owns the membership can set preferences. Users or bots in the AppInstanceAdmin and channel moderator roles can't set preferences for other users or users. Banned users or bots can't set membership preferences for the channel from which they are banned. The x-amz-chime-bearer request header is mandatory. Use the ARN of an AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
332
340
|
*/
|
|
333
341
|
putChannelMembershipPreferences(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.PutChannelMembershipPreferencesResponse) => void): Request<ChimeSDKMessaging.Types.PutChannelMembershipPreferencesResponse, AWSError>;
|
|
334
342
|
/**
|
|
@@ -340,27 +348,27 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
340
348
|
*/
|
|
341
349
|
putMessagingStreamingConfigurations(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.PutMessagingStreamingConfigurationsResponse) => void): Request<ChimeSDKMessaging.Types.PutMessagingStreamingConfigurationsResponse, AWSError>;
|
|
342
350
|
/**
|
|
343
|
-
* Redacts message content, but not metadata. The message exists in the back end, but the action returns null content, and the state shows as redacted. The x-amz-chime-bearer request header is mandatory. Use the
|
|
351
|
+
* Redacts message content, but not metadata. The message exists in the back end, but the action returns null content, and the state shows as redacted. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
344
352
|
*/
|
|
345
353
|
redactChannelMessage(params: ChimeSDKMessaging.Types.RedactChannelMessageRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.RedactChannelMessageResponse) => void): Request<ChimeSDKMessaging.Types.RedactChannelMessageResponse, AWSError>;
|
|
346
354
|
/**
|
|
347
|
-
* Redacts message content, but not metadata. The message exists in the back end, but the action returns null content, and the state shows as redacted. The x-amz-chime-bearer request header is mandatory. Use the
|
|
355
|
+
* Redacts message content, but not metadata. The message exists in the back end, but the action returns null content, and the state shows as redacted. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
348
356
|
*/
|
|
349
357
|
redactChannelMessage(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.RedactChannelMessageResponse) => void): Request<ChimeSDKMessaging.Types.RedactChannelMessageResponse, AWSError>;
|
|
350
358
|
/**
|
|
351
|
-
* Allows ChimeBearer to search channels by channel members.
|
|
359
|
+
* Allows the ChimeBearer to search channels by channel members. Users or bots can search across the channels that they belong to. Users in the AppInstanceAdmin role can search across all channels. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
352
360
|
*/
|
|
353
361
|
searchChannels(params: ChimeSDKMessaging.Types.SearchChannelsRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.SearchChannelsResponse) => void): Request<ChimeSDKMessaging.Types.SearchChannelsResponse, AWSError>;
|
|
354
362
|
/**
|
|
355
|
-
* Allows ChimeBearer to search channels by channel members.
|
|
363
|
+
* Allows the ChimeBearer to search channels by channel members. Users or bots can search across the channels that they belong to. Users in the AppInstanceAdmin role can search across all channels. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
356
364
|
*/
|
|
357
365
|
searchChannels(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.SearchChannelsResponse) => void): Request<ChimeSDKMessaging.Types.SearchChannelsResponse, AWSError>;
|
|
358
366
|
/**
|
|
359
|
-
* Sends a message to a particular channel that the member is a part of. The x-amz-chime-bearer request header is mandatory. Use the
|
|
367
|
+
* Sends a message to a particular channel that the member is a part of. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header. Also, STANDARD messages can contain 4KB of data and the 1KB of metadata. CONTROL messages can contain 30 bytes of data and no metadata.
|
|
360
368
|
*/
|
|
361
369
|
sendChannelMessage(params: ChimeSDKMessaging.Types.SendChannelMessageRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.SendChannelMessageResponse) => void): Request<ChimeSDKMessaging.Types.SendChannelMessageResponse, AWSError>;
|
|
362
370
|
/**
|
|
363
|
-
* Sends a message to a particular channel that the member is a part of. The x-amz-chime-bearer request header is mandatory. Use the
|
|
371
|
+
* Sends a message to a particular channel that the member is a part of. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header. Also, STANDARD messages can contain 4KB of data and the 1KB of metadata. CONTROL messages can contain 30 bytes of data and no metadata.
|
|
364
372
|
*/
|
|
365
373
|
sendChannelMessage(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.SendChannelMessageResponse) => void): Request<ChimeSDKMessaging.Types.SendChannelMessageResponse, AWSError>;
|
|
366
374
|
/**
|
|
@@ -380,11 +388,11 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
380
388
|
*/
|
|
381
389
|
untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
382
390
|
/**
|
|
383
|
-
* Update a channel's attributes. Restriction: You can't change a channel's privacy. The x-amz-chime-bearer request header is mandatory. Use the
|
|
391
|
+
* Update a channel's attributes. Restriction: You can't change a channel's privacy. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
384
392
|
*/
|
|
385
393
|
updateChannel(params: ChimeSDKMessaging.Types.UpdateChannelRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.UpdateChannelResponse) => void): Request<ChimeSDKMessaging.Types.UpdateChannelResponse, AWSError>;
|
|
386
394
|
/**
|
|
387
|
-
* Update a channel's attributes. Restriction: You can't change a channel's privacy. The x-amz-chime-bearer request header is mandatory. Use the
|
|
395
|
+
* Update a channel's attributes. Restriction: You can't change a channel's privacy. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
388
396
|
*/
|
|
389
397
|
updateChannel(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.UpdateChannelResponse) => void): Request<ChimeSDKMessaging.Types.UpdateChannelResponse, AWSError>;
|
|
390
398
|
/**
|
|
@@ -396,19 +404,19 @@ declare class ChimeSDKMessaging extends Service {
|
|
|
396
404
|
*/
|
|
397
405
|
updateChannelFlow(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.UpdateChannelFlowResponse) => void): Request<ChimeSDKMessaging.Types.UpdateChannelFlowResponse, AWSError>;
|
|
398
406
|
/**
|
|
399
|
-
* Updates the content of a message. The x-amz-chime-bearer request header is mandatory. Use the
|
|
407
|
+
* Updates the content of a message. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
400
408
|
*/
|
|
401
409
|
updateChannelMessage(params: ChimeSDKMessaging.Types.UpdateChannelMessageRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.UpdateChannelMessageResponse) => void): Request<ChimeSDKMessaging.Types.UpdateChannelMessageResponse, AWSError>;
|
|
402
410
|
/**
|
|
403
|
-
* Updates the content of a message. The x-amz-chime-bearer request header is mandatory. Use the
|
|
411
|
+
* Updates the content of a message. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
404
412
|
*/
|
|
405
413
|
updateChannelMessage(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.UpdateChannelMessageResponse) => void): Request<ChimeSDKMessaging.Types.UpdateChannelMessageResponse, AWSError>;
|
|
406
414
|
/**
|
|
407
|
-
* The details of the time when a user last read messages in a channel. The x-amz-chime-bearer request header is mandatory. Use the
|
|
415
|
+
* The details of the time when a user last read messages in a channel. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
408
416
|
*/
|
|
409
417
|
updateChannelReadMarker(params: ChimeSDKMessaging.Types.UpdateChannelReadMarkerRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.UpdateChannelReadMarkerResponse) => void): Request<ChimeSDKMessaging.Types.UpdateChannelReadMarkerResponse, AWSError>;
|
|
410
418
|
/**
|
|
411
|
-
* The details of the time when a user last read messages in a channel. The x-amz-chime-bearer request header is mandatory. Use the
|
|
419
|
+
* The details of the time when a user last read messages in a channel. The x-amz-chime-bearer request header is mandatory. Use the ARN of the AppInstanceUser or AppInstanceBot that makes the API call as the value in the header.
|
|
412
420
|
*/
|
|
413
421
|
updateChannelReadMarker(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.UpdateChannelReadMarkerResponse) => void): Request<ChimeSDKMessaging.Types.UpdateChannelReadMarkerResponse, AWSError>;
|
|
414
422
|
}
|
|
@@ -448,7 +456,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
448
456
|
*/
|
|
449
457
|
InvitedBy?: Identity;
|
|
450
458
|
/**
|
|
451
|
-
* The membership types set for the channel
|
|
459
|
+
* The membership types set for the channel members.
|
|
452
460
|
*/
|
|
453
461
|
Type?: ChannelMembershipType;
|
|
454
462
|
/**
|
|
@@ -456,7 +464,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
456
464
|
*/
|
|
457
465
|
Members?: Members;
|
|
458
466
|
/**
|
|
459
|
-
* The ARN of the channel to which you're adding
|
|
467
|
+
* The ARN of the channel to which you're adding members.
|
|
460
468
|
*/
|
|
461
469
|
ChannelArn?: ChimeArn;
|
|
462
470
|
/**
|
|
@@ -481,7 +489,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
481
489
|
export type BatchCreateChannelMembershipErrors = BatchCreateChannelMembershipError[];
|
|
482
490
|
export interface BatchCreateChannelMembershipRequest {
|
|
483
491
|
/**
|
|
484
|
-
* The ARN of the channel to which you're adding users.
|
|
492
|
+
* The ARN of the channel to which you're adding users or bots.
|
|
485
493
|
*/
|
|
486
494
|
ChannelArn: ChimeArn;
|
|
487
495
|
/**
|
|
@@ -489,11 +497,11 @@ declare namespace ChimeSDKMessaging {
|
|
|
489
497
|
*/
|
|
490
498
|
Type?: ChannelMembershipType;
|
|
491
499
|
/**
|
|
492
|
-
* The
|
|
500
|
+
* The ARNs of the members you want to add to the channel. Only AppInstanceUsers and AppInstanceBots can be added as a channel member.
|
|
493
501
|
*/
|
|
494
502
|
MemberArns: MemberArns;
|
|
495
503
|
/**
|
|
496
|
-
* The
|
|
504
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
497
505
|
*/
|
|
498
506
|
ChimeBearer: ChimeArn;
|
|
499
507
|
/**
|
|
@@ -557,6 +565,10 @@ declare namespace ChimeSDKMessaging {
|
|
|
557
565
|
* The attributes required to configure and create an elastic channel. An elastic channel can support a maximum of 1-million members.
|
|
558
566
|
*/
|
|
559
567
|
ElasticChannelConfiguration?: ElasticChannelConfiguration;
|
|
568
|
+
/**
|
|
569
|
+
* Settings that control when a channel expires.
|
|
570
|
+
*/
|
|
571
|
+
ExpirationSettings?: ExpirationSettings;
|
|
560
572
|
}
|
|
561
573
|
export interface ChannelAssociatedWithFlowSummary {
|
|
562
574
|
/**
|
|
@@ -786,6 +798,10 @@ declare namespace ChimeSDKMessaging {
|
|
|
786
798
|
* The ID of the SubChannel.
|
|
787
799
|
*/
|
|
788
800
|
SubChannelId?: SubChannelId;
|
|
801
|
+
/**
|
|
802
|
+
* The content type of the channel message.
|
|
803
|
+
*/
|
|
804
|
+
ContentType?: ContentType;
|
|
789
805
|
}
|
|
790
806
|
export interface ChannelMessageCallback {
|
|
791
807
|
/**
|
|
@@ -812,6 +828,10 @@ declare namespace ChimeSDKMessaging {
|
|
|
812
828
|
* The ID of the SubChannel.
|
|
813
829
|
*/
|
|
814
830
|
SubChannelId?: SubChannelId;
|
|
831
|
+
/**
|
|
832
|
+
* The content type of the call-back message.
|
|
833
|
+
*/
|
|
834
|
+
ContentType?: ContentType;
|
|
815
835
|
}
|
|
816
836
|
export type ChannelMessagePersistenceType = "PERSISTENT"|"NON_PERSISTENT"|string;
|
|
817
837
|
export type ChannelMessageStatus = "SENT"|"PENDING"|"FAILED"|"DENIED"|string;
|
|
@@ -870,6 +890,10 @@ declare namespace ChimeSDKMessaging {
|
|
|
870
890
|
* The message attribues listed in a the summary of a channel message.
|
|
871
891
|
*/
|
|
872
892
|
MessageAttributes?: MessageAttributeMap;
|
|
893
|
+
/**
|
|
894
|
+
* The content type of the channel messsage listed in the summary.
|
|
895
|
+
*/
|
|
896
|
+
ContentType?: ContentType;
|
|
873
897
|
}
|
|
874
898
|
export type ChannelMessageSummaryList = ChannelMessageSummary[];
|
|
875
899
|
export type ChannelMessageType = "STANDARD"|"CONTROL"|string;
|
|
@@ -938,6 +962,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
938
962
|
export type ChimeArn = string;
|
|
939
963
|
export type ClientRequestToken = string;
|
|
940
964
|
export type Content = string;
|
|
965
|
+
export type ContentType = string;
|
|
941
966
|
export interface CreateChannelBanRequest {
|
|
942
967
|
/**
|
|
943
968
|
* The ARN of the ban request.
|
|
@@ -948,7 +973,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
948
973
|
*/
|
|
949
974
|
MemberArn: ChimeArn;
|
|
950
975
|
/**
|
|
951
|
-
* The
|
|
976
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
952
977
|
*/
|
|
953
978
|
ChimeBearer: ChimeArn;
|
|
954
979
|
}
|
|
@@ -1004,7 +1029,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1004
1029
|
*/
|
|
1005
1030
|
Type: ChannelMembershipType;
|
|
1006
1031
|
/**
|
|
1007
|
-
* The
|
|
1032
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1008
1033
|
*/
|
|
1009
1034
|
ChimeBearer: ChimeArn;
|
|
1010
1035
|
/**
|
|
@@ -1036,7 +1061,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1036
1061
|
*/
|
|
1037
1062
|
ChannelModeratorArn: ChimeArn;
|
|
1038
1063
|
/**
|
|
1039
|
-
* The
|
|
1064
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1040
1065
|
*/
|
|
1041
1066
|
ChimeBearer: ChimeArn;
|
|
1042
1067
|
}
|
|
@@ -1080,7 +1105,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1080
1105
|
*/
|
|
1081
1106
|
Tags?: TagList;
|
|
1082
1107
|
/**
|
|
1083
|
-
* The
|
|
1108
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1084
1109
|
*/
|
|
1085
1110
|
ChimeBearer: ChimeArn;
|
|
1086
1111
|
/**
|
|
@@ -1099,6 +1124,10 @@ declare namespace ChimeSDKMessaging {
|
|
|
1099
1124
|
* The attributes required to configure and create an elastic channel. An elastic channel can support a maximum of 1-million users, excluding moderators.
|
|
1100
1125
|
*/
|
|
1101
1126
|
ElasticChannelConfiguration?: ElasticChannelConfiguration;
|
|
1127
|
+
/**
|
|
1128
|
+
* Settings that control the interval after which the channel is automatically deleted.
|
|
1129
|
+
*/
|
|
1130
|
+
ExpirationSettings?: ExpirationSettings;
|
|
1102
1131
|
}
|
|
1103
1132
|
export interface CreateChannelResponse {
|
|
1104
1133
|
/**
|
|
@@ -1116,7 +1145,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1116
1145
|
*/
|
|
1117
1146
|
MemberArn: ChimeArn;
|
|
1118
1147
|
/**
|
|
1119
|
-
* The
|
|
1148
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1120
1149
|
*/
|
|
1121
1150
|
ChimeBearer: ChimeArn;
|
|
1122
1151
|
}
|
|
@@ -1136,7 +1165,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1136
1165
|
*/
|
|
1137
1166
|
MemberArn: ChimeArn;
|
|
1138
1167
|
/**
|
|
1139
|
-
* The
|
|
1168
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1140
1169
|
*/
|
|
1141
1170
|
ChimeBearer: ChimeArn;
|
|
1142
1171
|
/**
|
|
@@ -1154,7 +1183,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1154
1183
|
*/
|
|
1155
1184
|
MessageId: MessageId;
|
|
1156
1185
|
/**
|
|
1157
|
-
* The
|
|
1186
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1158
1187
|
*/
|
|
1159
1188
|
ChimeBearer: ChimeArn;
|
|
1160
1189
|
/**
|
|
@@ -1172,7 +1201,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1172
1201
|
*/
|
|
1173
1202
|
ChannelModeratorArn: ChimeArn;
|
|
1174
1203
|
/**
|
|
1175
|
-
* The
|
|
1204
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1176
1205
|
*/
|
|
1177
1206
|
ChimeBearer: ChimeArn;
|
|
1178
1207
|
}
|
|
@@ -1182,7 +1211,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1182
1211
|
*/
|
|
1183
1212
|
ChannelArn: ChimeArn;
|
|
1184
1213
|
/**
|
|
1185
|
-
* The
|
|
1214
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1186
1215
|
*/
|
|
1187
1216
|
ChimeBearer: ChimeArn;
|
|
1188
1217
|
/**
|
|
@@ -1206,7 +1235,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1206
1235
|
*/
|
|
1207
1236
|
MemberArn: ChimeArn;
|
|
1208
1237
|
/**
|
|
1209
|
-
* The
|
|
1238
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1210
1239
|
*/
|
|
1211
1240
|
ChimeBearer: ChimeArn;
|
|
1212
1241
|
}
|
|
@@ -1234,11 +1263,11 @@ declare namespace ChimeSDKMessaging {
|
|
|
1234
1263
|
*/
|
|
1235
1264
|
ChannelArn: ChimeArn;
|
|
1236
1265
|
/**
|
|
1237
|
-
* The ARN of the user in a channel.
|
|
1266
|
+
* The ARN of the user or bot in a channel.
|
|
1238
1267
|
*/
|
|
1239
1268
|
AppInstanceUserArn: ChimeArn;
|
|
1240
1269
|
/**
|
|
1241
|
-
* The
|
|
1270
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1242
1271
|
*/
|
|
1243
1272
|
ChimeBearer: ChimeArn;
|
|
1244
1273
|
}
|
|
@@ -1258,7 +1287,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1258
1287
|
*/
|
|
1259
1288
|
MemberArn: ChimeArn;
|
|
1260
1289
|
/**
|
|
1261
|
-
* The
|
|
1290
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1262
1291
|
*/
|
|
1263
1292
|
ChimeBearer: ChimeArn;
|
|
1264
1293
|
/**
|
|
@@ -1278,11 +1307,11 @@ declare namespace ChimeSDKMessaging {
|
|
|
1278
1307
|
*/
|
|
1279
1308
|
ChannelArn: ChimeArn;
|
|
1280
1309
|
/**
|
|
1281
|
-
* The ARN of the
|
|
1310
|
+
* The ARN of the user or bot in the moderated channel.
|
|
1282
1311
|
*/
|
|
1283
1312
|
AppInstanceUserArn: ChimeArn;
|
|
1284
1313
|
/**
|
|
1285
|
-
* The
|
|
1314
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1286
1315
|
*/
|
|
1287
1316
|
ChimeBearer: ChimeArn;
|
|
1288
1317
|
}
|
|
@@ -1302,7 +1331,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1302
1331
|
*/
|
|
1303
1332
|
ChannelModeratorArn: ChimeArn;
|
|
1304
1333
|
/**
|
|
1305
|
-
* The
|
|
1334
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1306
1335
|
*/
|
|
1307
1336
|
ChimeBearer: ChimeArn;
|
|
1308
1337
|
}
|
|
@@ -1318,7 +1347,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1318
1347
|
*/
|
|
1319
1348
|
ChannelArn: ChimeArn;
|
|
1320
1349
|
/**
|
|
1321
|
-
* The
|
|
1350
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1322
1351
|
*/
|
|
1323
1352
|
ChimeBearer: ChimeArn;
|
|
1324
1353
|
}
|
|
@@ -1357,6 +1386,18 @@ declare namespace ChimeSDKMessaging {
|
|
|
1357
1386
|
MinimumMembershipPercentage: MinimumMembershipPercentage;
|
|
1358
1387
|
}
|
|
1359
1388
|
export type ErrorCode = "BadRequest"|"Conflict"|"Forbidden"|"NotFound"|"PreconditionFailed"|"ResourceLimitExceeded"|"ServiceFailure"|"AccessDenied"|"ServiceUnavailable"|"Throttled"|"Throttling"|"Unauthorized"|"Unprocessable"|"VoiceConnectorGroupAssociationsExist"|"PhoneNumberAssociationsExist"|string;
|
|
1389
|
+
export type ExpirationCriterion = "CREATED_TIMESTAMP"|"LAST_MESSAGE_TIMESTAMP"|string;
|
|
1390
|
+
export type ExpirationDays = number;
|
|
1391
|
+
export interface ExpirationSettings {
|
|
1392
|
+
/**
|
|
1393
|
+
* The period in days after which the system automatically deletes a channel.
|
|
1394
|
+
*/
|
|
1395
|
+
ExpirationDays: ExpirationDays;
|
|
1396
|
+
/**
|
|
1397
|
+
* The conditions that must be met for a channel to expire.
|
|
1398
|
+
*/
|
|
1399
|
+
ExpirationCriterion: ExpirationCriterion;
|
|
1400
|
+
}
|
|
1360
1401
|
export type FallbackAction = "CONTINUE"|"ABORT"|string;
|
|
1361
1402
|
export type FilterRule = string;
|
|
1362
1403
|
export interface GetChannelMembershipPreferencesRequest {
|
|
@@ -1369,7 +1410,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1369
1410
|
*/
|
|
1370
1411
|
MemberArn: ChimeArn;
|
|
1371
1412
|
/**
|
|
1372
|
-
* The
|
|
1413
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1373
1414
|
*/
|
|
1374
1415
|
ChimeBearer: ChimeArn;
|
|
1375
1416
|
}
|
|
@@ -1397,7 +1438,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1397
1438
|
*/
|
|
1398
1439
|
MessageId: MessageId;
|
|
1399
1440
|
/**
|
|
1400
|
-
* The
|
|
1441
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1401
1442
|
*/
|
|
1402
1443
|
ChimeBearer: ChimeArn;
|
|
1403
1444
|
/**
|
|
@@ -1491,7 +1532,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1491
1532
|
*/
|
|
1492
1533
|
NextToken?: NextToken;
|
|
1493
1534
|
/**
|
|
1494
|
-
* The
|
|
1535
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1495
1536
|
*/
|
|
1496
1537
|
ChimeBearer: ChimeArn;
|
|
1497
1538
|
}
|
|
@@ -1535,7 +1576,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1535
1576
|
}
|
|
1536
1577
|
export interface ListChannelMembershipsForAppInstanceUserRequest {
|
|
1537
1578
|
/**
|
|
1538
|
-
* The ARN of the
|
|
1579
|
+
* The ARN of the user or bot.
|
|
1539
1580
|
*/
|
|
1540
1581
|
AppInstanceUserArn?: ChimeArn;
|
|
1541
1582
|
/**
|
|
@@ -1547,7 +1588,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1547
1588
|
*/
|
|
1548
1589
|
NextToken?: NextToken;
|
|
1549
1590
|
/**
|
|
1550
|
-
* The
|
|
1591
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1551
1592
|
*/
|
|
1552
1593
|
ChimeBearer: ChimeArn;
|
|
1553
1594
|
}
|
|
@@ -1579,7 +1620,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1579
1620
|
*/
|
|
1580
1621
|
NextToken?: NextToken;
|
|
1581
1622
|
/**
|
|
1582
|
-
* The
|
|
1623
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1583
1624
|
*/
|
|
1584
1625
|
ChimeBearer: ChimeArn;
|
|
1585
1626
|
/**
|
|
@@ -1627,7 +1668,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1627
1668
|
*/
|
|
1628
1669
|
NextToken?: NextToken;
|
|
1629
1670
|
/**
|
|
1630
|
-
* The
|
|
1671
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1631
1672
|
*/
|
|
1632
1673
|
ChimeBearer: ChimeArn;
|
|
1633
1674
|
/**
|
|
@@ -1667,7 +1708,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1667
1708
|
*/
|
|
1668
1709
|
NextToken?: NextToken;
|
|
1669
1710
|
/**
|
|
1670
|
-
* The
|
|
1711
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1671
1712
|
*/
|
|
1672
1713
|
ChimeBearer: ChimeArn;
|
|
1673
1714
|
}
|
|
@@ -1711,7 +1752,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1711
1752
|
}
|
|
1712
1753
|
export interface ListChannelsModeratedByAppInstanceUserRequest {
|
|
1713
1754
|
/**
|
|
1714
|
-
* The ARN of the user in the moderated channel.
|
|
1755
|
+
* The ARN of the user or bot in the moderated channel.
|
|
1715
1756
|
*/
|
|
1716
1757
|
AppInstanceUserArn?: ChimeArn;
|
|
1717
1758
|
/**
|
|
@@ -1723,7 +1764,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1723
1764
|
*/
|
|
1724
1765
|
NextToken?: NextToken;
|
|
1725
1766
|
/**
|
|
1726
|
-
* The
|
|
1767
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1727
1768
|
*/
|
|
1728
1769
|
ChimeBearer: ChimeArn;
|
|
1729
1770
|
}
|
|
@@ -1755,7 +1796,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1755
1796
|
*/
|
|
1756
1797
|
NextToken?: NextToken;
|
|
1757
1798
|
/**
|
|
1758
|
-
* The
|
|
1799
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1759
1800
|
*/
|
|
1760
1801
|
ChimeBearer: ChimeArn;
|
|
1761
1802
|
}
|
|
@@ -1894,17 +1935,41 @@ declare namespace ChimeSDKMessaging {
|
|
|
1894
1935
|
}
|
|
1895
1936
|
export type PushNotificationTitle = string;
|
|
1896
1937
|
export type PushNotificationType = "DEFAULT"|"VOIP"|string;
|
|
1938
|
+
export interface PutChannelExpirationSettingsRequest {
|
|
1939
|
+
/**
|
|
1940
|
+
* The ARN of the channel.
|
|
1941
|
+
*/
|
|
1942
|
+
ChannelArn: ChimeArn;
|
|
1943
|
+
/**
|
|
1944
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1945
|
+
*/
|
|
1946
|
+
ChimeBearer?: ChimeArn;
|
|
1947
|
+
/**
|
|
1948
|
+
* Settings that control the interval after which a channel is deleted.
|
|
1949
|
+
*/
|
|
1950
|
+
ExpirationSettings?: ExpirationSettings;
|
|
1951
|
+
}
|
|
1952
|
+
export interface PutChannelExpirationSettingsResponse {
|
|
1953
|
+
/**
|
|
1954
|
+
* The channel ARN.
|
|
1955
|
+
*/
|
|
1956
|
+
ChannelArn?: ChimeArn;
|
|
1957
|
+
/**
|
|
1958
|
+
* Settings that control the interval after which a channel is deleted.
|
|
1959
|
+
*/
|
|
1960
|
+
ExpirationSettings?: ExpirationSettings;
|
|
1961
|
+
}
|
|
1897
1962
|
export interface PutChannelMembershipPreferencesRequest {
|
|
1898
1963
|
/**
|
|
1899
1964
|
* The ARN of the channel.
|
|
1900
1965
|
*/
|
|
1901
1966
|
ChannelArn: ChimeArn;
|
|
1902
1967
|
/**
|
|
1903
|
-
* The
|
|
1968
|
+
* The ARN of the member setting the preferences.
|
|
1904
1969
|
*/
|
|
1905
1970
|
MemberArn: ChimeArn;
|
|
1906
1971
|
/**
|
|
1907
|
-
* The
|
|
1972
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1908
1973
|
*/
|
|
1909
1974
|
ChimeBearer: ChimeArn;
|
|
1910
1975
|
/**
|
|
@@ -1952,7 +2017,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
1952
2017
|
*/
|
|
1953
2018
|
MessageId: MessageId;
|
|
1954
2019
|
/**
|
|
1955
|
-
* The
|
|
2020
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
1956
2021
|
*/
|
|
1957
2022
|
ChimeBearer: ChimeArn;
|
|
1958
2023
|
/**
|
|
@@ -2048,7 +2113,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
2048
2113
|
*/
|
|
2049
2114
|
ClientRequestToken: ClientRequestToken;
|
|
2050
2115
|
/**
|
|
2051
|
-
* The
|
|
2116
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
2052
2117
|
*/
|
|
2053
2118
|
ChimeBearer: ChimeArn;
|
|
2054
2119
|
/**
|
|
@@ -2063,6 +2128,10 @@ declare namespace ChimeSDKMessaging {
|
|
|
2063
2128
|
* The ID of the SubChannel in the request.
|
|
2064
2129
|
*/
|
|
2065
2130
|
SubChannelId?: SubChannelId;
|
|
2131
|
+
/**
|
|
2132
|
+
* The content type of the channel message.
|
|
2133
|
+
*/
|
|
2134
|
+
ContentType?: ContentType;
|
|
2066
2135
|
}
|
|
2067
2136
|
export interface SendChannelMessageResponse {
|
|
2068
2137
|
/**
|
|
@@ -2176,19 +2245,23 @@ declare namespace ChimeSDKMessaging {
|
|
|
2176
2245
|
/**
|
|
2177
2246
|
* The content of the message being updated.
|
|
2178
2247
|
*/
|
|
2179
|
-
Content
|
|
2248
|
+
Content: NonEmptyContent;
|
|
2180
2249
|
/**
|
|
2181
2250
|
* The metadata of the message being updated.
|
|
2182
2251
|
*/
|
|
2183
2252
|
Metadata?: Metadata;
|
|
2184
2253
|
/**
|
|
2185
|
-
* The
|
|
2254
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
2186
2255
|
*/
|
|
2187
2256
|
ChimeBearer: ChimeArn;
|
|
2188
2257
|
/**
|
|
2189
2258
|
* The ID of the SubChannel in the request. Only required when updating messages in a SubChannel that the user belongs to.
|
|
2190
2259
|
*/
|
|
2191
2260
|
SubChannelId?: SubChannelId;
|
|
2261
|
+
/**
|
|
2262
|
+
* The content type of the channel message.
|
|
2263
|
+
*/
|
|
2264
|
+
ContentType?: ContentType;
|
|
2192
2265
|
}
|
|
2193
2266
|
export interface UpdateChannelMessageResponse {
|
|
2194
2267
|
/**
|
|
@@ -2214,7 +2287,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
2214
2287
|
*/
|
|
2215
2288
|
ChannelArn: ChimeArn;
|
|
2216
2289
|
/**
|
|
2217
|
-
* The
|
|
2290
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
2218
2291
|
*/
|
|
2219
2292
|
ChimeBearer: ChimeArn;
|
|
2220
2293
|
/**
|
|
@@ -2250,7 +2323,7 @@ declare namespace ChimeSDKMessaging {
|
|
|
2250
2323
|
*/
|
|
2251
2324
|
Metadata?: Metadata;
|
|
2252
2325
|
/**
|
|
2253
|
-
* The
|
|
2326
|
+
* The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.
|
|
2254
2327
|
*/
|
|
2255
2328
|
ChimeBearer: ChimeArn;
|
|
2256
2329
|
}
|