@aws-sdk/client-chime 3.42.0 → 3.43.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.
- package/CHANGELOG.md +11 -0
- package/README.md +1 -2
- package/dist-cjs/commands/GetRetentionSettingsCommand.js +2 -1
- package/dist-cjs/commands/GetRoomCommand.js +3 -3
- package/dist-cjs/commands/GetSipMediaApplicationCommand.js +1 -2
- package/dist-cjs/models/models_0.js +20 -27
- package/dist-cjs/models/models_1.js +29 -4
- package/dist-cjs/protocols/Aws_restJson1.js +16 -0
- package/dist-es/commands/GetRetentionSettingsCommand.js +2 -1
- package/dist-es/commands/GetRoomCommand.js +1 -1
- package/dist-es/commands/GetSipMediaApplicationCommand.js +1 -2
- package/dist-es/models/models_0.js +18 -16
- package/dist-es/models/models_1.js +16 -0
- package/dist-es/protocols/Aws_restJson1.js +11 -2
- package/dist-types/Chime.d.ts +1 -2
- package/dist-types/ChimeClient.d.ts +1 -2
- package/dist-types/commands/GetRetentionSettingsCommand.d.ts +2 -1
- package/dist-types/commands/GetRoomCommand.d.ts +1 -1
- package/dist-types/commands/GetSipMediaApplicationCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +49 -56
- package/dist-types/models/models_1.d.ts +56 -0
- package/dist-types/ts3.4/commands/GetRetentionSettingsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetRoomCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetSipMediaApplicationCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +28 -36
- package/dist-types/ts3.4/models/models_1.d.ts +36 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 11/28/2021 ([#3072](https://github.com/aws/aws-sdk-js-v3/issues/3072)) ([2ad1622](https://github.com/aws/aws-sdk-js-v3/commit/2ad1622ba8586b926fe508055211803bb29e3976))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.42.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.41.0...v3.42.0) (2021-11-19)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-chime
|
package/README.md
CHANGED
|
@@ -10,8 +10,7 @@ AWS SDK for JavaScript Chime Client for Node.js, Browser and React Native.
|
|
|
10
10
|
<p>The Amazon Chime API (application programming interface) is designed for developers to
|
|
11
11
|
perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice
|
|
12
12
|
Connectors. This guide provides detailed information about the Amazon Chime API,
|
|
13
|
-
including operations, types, inputs and outputs, and error codes. It also includes
|
|
14
|
-
server-side API actions to use with the Amazon Chime SDK. For more information about the
|
|
13
|
+
including operations, types, inputs and outputs, and error codes. It also includes API actions for use with the Amazon Chime SDK, which developers use to build their own communication applications. For more information about the
|
|
15
14
|
Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">
|
|
16
15
|
Using the Amazon Chime SDK
|
|
17
16
|
</a> in the <i>Amazon Chime Developer Guide</i>.</p>
|
|
@@ -4,6 +4,7 @@ exports.GetRetentionSettingsCommand = void 0;
|
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
6
|
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const models_1_1 = require("../models/models_1");
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class GetRetentionSettingsCommand extends smithy_client_1.Command {
|
|
9
10
|
constructor(input) {
|
|
@@ -21,7 +22,7 @@ class GetRetentionSettingsCommand extends smithy_client_1.Command {
|
|
|
21
22
|
clientName,
|
|
22
23
|
commandName,
|
|
23
24
|
inputFilterSensitiveLog: models_0_1.GetRetentionSettingsRequest.filterSensitiveLog,
|
|
24
|
-
outputFilterSensitiveLog:
|
|
25
|
+
outputFilterSensitiveLog: models_1_1.GetRetentionSettingsResponse.filterSensitiveLog,
|
|
25
26
|
};
|
|
26
27
|
const { requestHandler } = configuration;
|
|
27
28
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.GetRoomCommand = void 0;
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
-
const
|
|
6
|
+
const models_1_1 = require("../models/models_1");
|
|
7
7
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
8
|
class GetRoomCommand extends smithy_client_1.Command {
|
|
9
9
|
constructor(input) {
|
|
@@ -20,8 +20,8 @@ class GetRoomCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: models_1_1.GetRoomRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_1_1.GetRoomResponse.filterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.GetSipMediaApplicationCommand = void 0;
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
-
const models_0_1 = require("../models/models_0");
|
|
7
6
|
const models_1_1 = require("../models/models_1");
|
|
8
7
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
8
|
class GetSipMediaApplicationCommand extends smithy_client_1.Command {
|
|
@@ -21,7 +20,7 @@ class GetSipMediaApplicationCommand extends smithy_client_1.Command {
|
|
|
21
20
|
logger,
|
|
22
21
|
clientName,
|
|
23
22
|
commandName,
|
|
24
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: models_1_1.GetSipMediaApplicationRequest.filterSensitiveLog,
|
|
25
24
|
outputFilterSensitiveLog: models_1_1.GetSipMediaApplicationResponse.filterSensitiveLog,
|
|
26
25
|
};
|
|
27
26
|
const { requestHandler } = configuration;
|
|
@@ -4,8 +4,8 @@ exports.CreateAttendeeRequestItem = exports.BatchChannelMemberships = exports.Ta
|
|
|
4
4
|
exports.SourceConfiguration = exports.SelectedVideoStreams = exports.ChannelModeratorSummary = exports.ChannelModerator = exports.ChannelModeratedByAppInstanceUserSummary = exports.ChannelMessageSummary = exports.ChannelMessage = exports.ChannelMessageType = exports.ChannelMessagePersistenceType = exports.ChannelMembershipSummary = exports.ChannelMembershipForAppInstanceUserSummary = exports.ChannelSummary = exports.ChannelMembership = exports.ChannelBanSummary = exports.ChannelBan = exports.Channel = exports.ChannelPrivacy = exports.ChannelMode = exports.Capability = exports.CallingNameStatus = exports.BusinessCallingSettings = exports.Bot = exports.BotType = exports.BatchUpdateUserResponse = exports.BatchUpdateUserRequest = exports.UpdateUserRequestItem = exports.UserType = exports.BatchUpdatePhoneNumberResponse = exports.BatchUpdatePhoneNumberRequest = exports.UpdatePhoneNumberRequestItem = exports.PhoneNumberProductType = exports.BatchUnsuspendUserResponse = exports.BatchUnsuspendUserRequest = exports.BatchSuspendUserResponse = exports.UserError = exports.BatchSuspendUserRequest = exports.BatchDeletePhoneNumberResponse = exports.BatchDeletePhoneNumberRequest = exports.BatchCreateRoomMembershipResponse = exports.MemberError = exports.BatchCreateRoomMembershipRequest = exports.MembershipItem = exports.RoomMembershipRole = exports.BatchCreateChannelMembershipResponse = exports.BatchCreateChannelMembershipError = exports.BatchCreateChannelMembershipRequest = exports.ResourceLimitExceededException = exports.BatchCreateAttendeeResponse = exports.CreateAttendeeError = exports.BatchCreateAttendeeRequest = void 0;
|
|
5
5
|
exports.ProxySessionStatus = exports.Participant = exports.CreateProxySessionRequest = exports.NumberSelectionBehavior = exports.GeoMatchParams = exports.GeoMatchLevel = exports.CreatePhoneNumberOrderResponse = exports.PhoneNumberOrder = exports.PhoneNumberOrderStatus = exports.OrderedPhoneNumber = exports.OrderedPhoneNumberStatus = exports.CreatePhoneNumberOrderRequest = exports.CreateMeetingWithAttendeesResponse = exports.CreateMeetingWithAttendeesRequest = exports.CreateMeetingDialOutResponse = exports.CreateMeetingDialOutRequest = exports.CreateMeetingResponse = exports.Meeting = exports.MediaPlacement = exports.CreateMeetingRequest = exports.MeetingNotificationConfiguration = exports.CreateMediaCapturePipelineResponse = exports.MediaCapturePipeline = exports.MediaPipelineStatus = exports.CreateMediaCapturePipelineRequest = exports.MediaPipelineSourceType = exports.MediaPipelineSinkType = exports.CreateChannelModeratorResponse = exports.CreateChannelModeratorRequest = exports.CreateChannelMembershipResponse = exports.CreateChannelMembershipRequest = exports.CreateChannelBanResponse = exports.CreateChannelBanRequest = exports.CreateChannelResponse = exports.CreateChannelRequest = exports.CreateBotResponse = exports.CreateBotRequest = exports.CreateAttendeeResponse = exports.CreateAttendeeRequest = exports.CreateAppInstanceUserResponse = exports.CreateAppInstanceUserRequest = exports.CreateAppInstanceAdminResponse = exports.CreateAppInstanceAdminRequest = exports.CreateAppInstanceResponse = exports.CreateAppInstanceRequest = exports.CreateAccountResponse = exports.CreateAccountRequest = exports.ConversationRetentionSettings = exports.ConflictException = exports.ChimeSdkMeetingConfiguration = void 0;
|
|
6
6
|
exports.DeleteEventsConfigurationRequest = exports.DeleteChannelModeratorRequest = exports.DeleteChannelMessageRequest = exports.DeleteChannelMembershipRequest = exports.DeleteChannelBanRequest = exports.DeleteChannelRequest = exports.DeleteAttendeeRequest = exports.DeleteAppInstanceUserRequest = exports.DeleteAppInstanceStreamingConfigurationsRequest = exports.DeleteAppInstanceAdminRequest = exports.DeleteAppInstanceRequest = exports.UnprocessableEntityException = exports.DeleteAccountResponse = exports.DeleteAccountRequest = exports.Credential = exports.CreateVoiceConnectorGroupResponse = exports.VoiceConnectorGroup = exports.CreateVoiceConnectorGroupRequest = exports.VoiceConnectorItem = exports.CreateVoiceConnectorResponse = exports.VoiceConnector = exports.CreateVoiceConnectorRequest = exports.VoiceConnectorAwsRegion = exports.CreateUserResponse = exports.User = exports.RegistrationStatus = exports.InviteStatus = exports.CreateUserRequest = exports.CreateSipRuleResponse = exports.SipRule = exports.CreateSipRuleRequest = exports.SipRuleTriggerType = exports.SipRuleTargetApplication = exports.CreateSipMediaApplicationCallResponse = exports.SipMediaApplicationCall = exports.CreateSipMediaApplicationCallRequest = exports.CreateSipMediaApplicationResponse = exports.SipMediaApplication = exports.CreateSipMediaApplicationRequest = exports.SipMediaApplicationEndpoint = exports.CreateRoomMembershipResponse = exports.RoomMembership = exports.Member = exports.MemberType = exports.CreateRoomMembershipRequest = exports.CreateRoomResponse = exports.Room = exports.CreateRoomRequest = exports.CreateProxySessionResponse = exports.ProxySession = void 0;
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
7
|
+
exports.TranscribeMedicalType = exports.TranscribeMedicalSpecialty = exports.TranscribeMedicalRegion = exports.TranscribeMedicalLanguageCode = exports.TranscribeMedicalContentIdentificationType = exports.EmergencyCallingConfiguration = exports.EmailStatus = exports.DNISEmergencyCallingConfiguration = exports.DisassociateSigninDelegateGroupsFromAccountResponse = exports.DisassociateSigninDelegateGroupsFromAccountRequest = exports.DisassociatePhoneNumbersFromVoiceConnectorGroupResponse = exports.DisassociatePhoneNumbersFromVoiceConnectorGroupRequest = exports.DisassociatePhoneNumbersFromVoiceConnectorResponse = exports.DisassociatePhoneNumbersFromVoiceConnectorRequest = exports.DisassociatePhoneNumberFromUserResponse = exports.DisassociatePhoneNumberFromUserRequest = exports.DescribeChannelModeratorResponse = exports.DescribeChannelModeratorRequest = exports.DescribeChannelModeratedByAppInstanceUserResponse = exports.DescribeChannelModeratedByAppInstanceUserRequest = exports.DescribeChannelMembershipForAppInstanceUserResponse = exports.DescribeChannelMembershipForAppInstanceUserRequest = exports.DescribeChannelMembershipResponse = exports.DescribeChannelMembershipRequest = exports.DescribeChannelBanResponse = exports.DescribeChannelBanRequest = exports.DescribeChannelResponse = exports.DescribeChannelRequest = exports.DescribeAppInstanceUserResponse = exports.DescribeAppInstanceUserRequest = exports.DescribeAppInstanceAdminResponse = exports.DescribeAppInstanceAdminRequest = exports.DescribeAppInstanceResponse = exports.DescribeAppInstanceRequest = exports.DeleteVoiceConnectorTerminationCredentialsRequest = exports.DeleteVoiceConnectorTerminationRequest = exports.DeleteVoiceConnectorStreamingConfigurationRequest = exports.DeleteVoiceConnectorProxyRequest = exports.DeleteVoiceConnectorOriginationRequest = exports.DeleteVoiceConnectorGroupRequest = exports.DeleteVoiceConnectorEmergencyCallingConfigurationRequest = exports.DeleteVoiceConnectorRequest = exports.DeleteSipRuleRequest = exports.DeleteSipMediaApplicationRequest = exports.DeleteRoomMembershipRequest = exports.DeleteRoomRequest = exports.DeleteProxySessionRequest = exports.DeletePhoneNumberRequest = exports.DeleteMeetingRequest = exports.DeleteMediaCapturePipelineRequest = void 0;
|
|
8
|
+
exports.RetentionSettings = exports.RoomRetentionSettings = exports.GetRetentionSettingsRequest = exports.GetProxySessionResponse = exports.GetProxySessionRequest = exports.GetPhoneNumberSettingsResponse = exports.GetPhoneNumberOrderResponse = exports.GetPhoneNumberOrderRequest = exports.GetPhoneNumberResponse = exports.PhoneNumber = exports.PhoneNumberType = exports.PhoneNumberStatus = exports.PhoneNumberCapabilities = exports.PhoneNumberAssociation = exports.PhoneNumberAssociationName = exports.GetPhoneNumberRequest = exports.GetMessagingSessionEndpointResponse = exports.MessagingSessionEndpoint = exports.GetMessagingSessionEndpointRequest = exports.GetMeetingResponse = exports.GetMeetingRequest = exports.GetMediaCapturePipelineResponse = exports.GetMediaCapturePipelineRequest = exports.GetGlobalSettingsResponse = exports.VoiceConnectorSettings = exports.GetEventsConfigurationResponse = exports.GetEventsConfigurationRequest = exports.GetChannelMessageResponse = exports.GetChannelMessageRequest = exports.GetBotResponse = exports.GetBotRequest = exports.GetAttendeeResponse = exports.GetAttendeeRequest = exports.GetAppInstanceStreamingConfigurationsResponse = exports.GetAppInstanceStreamingConfigurationsRequest = exports.GetAppInstanceRetentionSettingsResponse = exports.GetAppInstanceRetentionSettingsRequest = exports.GetAccountSettingsResponse = exports.GetAccountSettingsRequest = exports.GetAccountResponse = exports.GetAccountRequest = exports.EventsConfiguration = exports.EngineTranscribeSettings = exports.TranscribeVocabularyFilterMethod = exports.TranscribeRegion = exports.TranscribePartialResultsStability = exports.TranscribeLanguageCode = exports.TranscribeContentRedactionType = exports.TranscribeContentIdentificationType = exports.EngineTranscribeMedicalSettings = void 0;
|
|
9
9
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
10
10
|
var ErrorCode;
|
|
11
11
|
(function (ErrorCode) {
|
|
@@ -1667,6 +1667,10 @@ var EmergencyCallingConfiguration;
|
|
|
1667
1667
|
...(obj.DNIS && { DNIS: obj.DNIS.map((item) => DNISEmergencyCallingConfiguration.filterSensitiveLog(item)) }),
|
|
1668
1668
|
});
|
|
1669
1669
|
})(EmergencyCallingConfiguration = exports.EmergencyCallingConfiguration || (exports.EmergencyCallingConfiguration = {}));
|
|
1670
|
+
var TranscribeMedicalContentIdentificationType;
|
|
1671
|
+
(function (TranscribeMedicalContentIdentificationType) {
|
|
1672
|
+
TranscribeMedicalContentIdentificationType["PHI"] = "PHI";
|
|
1673
|
+
})(TranscribeMedicalContentIdentificationType = exports.TranscribeMedicalContentIdentificationType || (exports.TranscribeMedicalContentIdentificationType = {}));
|
|
1670
1674
|
var TranscribeMedicalLanguageCode;
|
|
1671
1675
|
(function (TranscribeMedicalLanguageCode) {
|
|
1672
1676
|
TranscribeMedicalLanguageCode["EN_US"] = "en-US";
|
|
@@ -1701,6 +1705,14 @@ var EngineTranscribeMedicalSettings;
|
|
|
1701
1705
|
...obj,
|
|
1702
1706
|
});
|
|
1703
1707
|
})(EngineTranscribeMedicalSettings = exports.EngineTranscribeMedicalSettings || (exports.EngineTranscribeMedicalSettings = {}));
|
|
1708
|
+
var TranscribeContentIdentificationType;
|
|
1709
|
+
(function (TranscribeContentIdentificationType) {
|
|
1710
|
+
TranscribeContentIdentificationType["PII"] = "PII";
|
|
1711
|
+
})(TranscribeContentIdentificationType = exports.TranscribeContentIdentificationType || (exports.TranscribeContentIdentificationType = {}));
|
|
1712
|
+
var TranscribeContentRedactionType;
|
|
1713
|
+
(function (TranscribeContentRedactionType) {
|
|
1714
|
+
TranscribeContentRedactionType["PII"] = "PII";
|
|
1715
|
+
})(TranscribeContentRedactionType = exports.TranscribeContentRedactionType || (exports.TranscribeContentRedactionType = {}));
|
|
1704
1716
|
var TranscribeLanguageCode;
|
|
1705
1717
|
(function (TranscribeLanguageCode) {
|
|
1706
1718
|
TranscribeLanguageCode["DE_DE"] = "de-DE";
|
|
@@ -1716,6 +1728,12 @@ var TranscribeLanguageCode;
|
|
|
1716
1728
|
TranscribeLanguageCode["PT_BR"] = "pt-BR";
|
|
1717
1729
|
TranscribeLanguageCode["ZH_CN"] = "zh-CN";
|
|
1718
1730
|
})(TranscribeLanguageCode = exports.TranscribeLanguageCode || (exports.TranscribeLanguageCode = {}));
|
|
1731
|
+
var TranscribePartialResultsStability;
|
|
1732
|
+
(function (TranscribePartialResultsStability) {
|
|
1733
|
+
TranscribePartialResultsStability["HIGH"] = "high";
|
|
1734
|
+
TranscribePartialResultsStability["LOW"] = "low";
|
|
1735
|
+
TranscribePartialResultsStability["MEDIUM"] = "medium";
|
|
1736
|
+
})(TranscribePartialResultsStability = exports.TranscribePartialResultsStability || (exports.TranscribePartialResultsStability = {}));
|
|
1719
1737
|
var TranscribeRegion;
|
|
1720
1738
|
(function (TranscribeRegion) {
|
|
1721
1739
|
TranscribeRegion["AP_NORTHEAST_1"] = "ap-northeast-1";
|
|
@@ -2022,28 +2040,3 @@ var RetentionSettings;
|
|
|
2022
2040
|
...obj,
|
|
2023
2041
|
});
|
|
2024
2042
|
})(RetentionSettings = exports.RetentionSettings || (exports.RetentionSettings = {}));
|
|
2025
|
-
var GetRetentionSettingsResponse;
|
|
2026
|
-
(function (GetRetentionSettingsResponse) {
|
|
2027
|
-
GetRetentionSettingsResponse.filterSensitiveLog = (obj) => ({
|
|
2028
|
-
...obj,
|
|
2029
|
-
});
|
|
2030
|
-
})(GetRetentionSettingsResponse = exports.GetRetentionSettingsResponse || (exports.GetRetentionSettingsResponse = {}));
|
|
2031
|
-
var GetRoomRequest;
|
|
2032
|
-
(function (GetRoomRequest) {
|
|
2033
|
-
GetRoomRequest.filterSensitiveLog = (obj) => ({
|
|
2034
|
-
...obj,
|
|
2035
|
-
});
|
|
2036
|
-
})(GetRoomRequest = exports.GetRoomRequest || (exports.GetRoomRequest = {}));
|
|
2037
|
-
var GetRoomResponse;
|
|
2038
|
-
(function (GetRoomResponse) {
|
|
2039
|
-
GetRoomResponse.filterSensitiveLog = (obj) => ({
|
|
2040
|
-
...obj,
|
|
2041
|
-
...(obj.Room && { Room: Room.filterSensitiveLog(obj.Room) }),
|
|
2042
|
-
});
|
|
2043
|
-
})(GetRoomResponse = exports.GetRoomResponse || (exports.GetRoomResponse = {}));
|
|
2044
|
-
var GetSipMediaApplicationRequest;
|
|
2045
|
-
(function (GetSipMediaApplicationRequest) {
|
|
2046
|
-
GetSipMediaApplicationRequest.filterSensitiveLog = (obj) => ({
|
|
2047
|
-
...obj,
|
|
2048
|
-
});
|
|
2049
|
-
})(GetSipMediaApplicationRequest = exports.GetSipMediaApplicationRequest || (exports.GetSipMediaApplicationRequest = {}));
|
|
@@ -1,11 +1,36 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.UpdateVoiceConnectorGroupResponse = exports.UpdateVoiceConnectorGroupRequest = exports.UpdateVoiceConnectorResponse = exports.UpdateVoiceConnectorRequest = exports.UpdateUserSettingsRequest = exports.UpdateUserResponse = exports.UpdateUserRequest = exports.UpdateSipRuleResponse = exports.UpdateSipRuleRequest = exports.UpdateSipMediaApplicationCallResponse = exports.UpdateSipMediaApplicationCallRequest = exports.UpdateSipMediaApplicationResponse = exports.UpdateSipMediaApplicationRequest = exports.UpdateRoomMembershipResponse = exports.UpdateRoomMembershipRequest = exports.UpdateRoomResponse = exports.UpdateRoomRequest = exports.UpdateProxySessionResponse = exports.UpdateProxySessionRequest = exports.UpdatePhoneNumberSettingsRequest = exports.UpdatePhoneNumberResponse = exports.UpdatePhoneNumberRequest = exports.UpdateGlobalSettingsRequest = exports.UpdateChannelReadMarkerResponse = exports.UpdateChannelReadMarkerRequest = exports.UpdateChannelMessageResponse = exports.UpdateChannelMessageRequest = exports.UpdateChannelResponse = exports.UpdateChannelRequest = exports.UpdateBotResponse = exports.UpdateBotRequest = exports.UpdateAppInstanceUserResponse = exports.UpdateAppInstanceUserRequest = exports.UpdateAppInstanceResponse = exports.UpdateAppInstanceRequest = exports.UpdateAccountSettingsResponse = exports.UpdateAccountSettingsRequest = exports.UpdateAccountResponse = exports.UpdateAccountRequest = exports.UntagResourceRequest = exports.UntagMeetingRequest = exports.UntagAttendeeRequest = exports.TagResourceRequest = exports.TagMeetingRequest = exports.TagAttendeeRequest = exports.StopMeetingTranscriptionResponse = void 0;
|
|
3
|
+
exports.ListAppInstanceAdminsRequest = exports.ListAccountsResponse = exports.ListAccountsRequest = exports.InviteUsersResponse = exports.InviteUsersRequest = exports.Invite = exports.GetVoiceConnectorTerminationHealthResponse = exports.TerminationHealth = exports.GetVoiceConnectorTerminationHealthRequest = exports.GetVoiceConnectorTerminationResponse = exports.Termination = exports.GetVoiceConnectorTerminationRequest = exports.GetVoiceConnectorStreamingConfigurationResponse = exports.StreamingConfiguration = exports.StreamingNotificationTarget = exports.NotificationTarget = exports.GetVoiceConnectorStreamingConfigurationRequest = exports.GetVoiceConnectorProxyResponse = exports.Proxy = exports.GetVoiceConnectorProxyRequest = exports.GetVoiceConnectorOriginationResponse = exports.Origination = exports.OriginationRoute = exports.OriginationRouteProtocol = exports.GetVoiceConnectorOriginationRequest = exports.GetVoiceConnectorLoggingConfigurationResponse = exports.LoggingConfiguration = exports.GetVoiceConnectorLoggingConfigurationRequest = exports.GetVoiceConnectorGroupResponse = exports.GetVoiceConnectorGroupRequest = exports.GetVoiceConnectorEmergencyCallingConfigurationResponse = exports.GetVoiceConnectorEmergencyCallingConfigurationRequest = exports.GetVoiceConnectorResponse = exports.GetVoiceConnectorRequest = exports.GetUserSettingsResponse = exports.UserSettings = exports.TelephonySettings = exports.GetUserSettingsRequest = exports.GetUserResponse = exports.GetUserRequest = exports.GetSipRuleResponse = exports.GetSipRuleRequest = exports.GetSipMediaApplicationLoggingConfigurationResponse = exports.SipMediaApplicationLoggingConfiguration = exports.GetSipMediaApplicationLoggingConfigurationRequest = exports.GetSipMediaApplicationResponse = exports.GetSipMediaApplicationRequest = exports.GetRoomResponse = exports.GetRoomRequest = exports.GetRetentionSettingsResponse = void 0;
|
|
4
|
+
exports.ListTagsForResourceRequest = exports.ListSupportedPhoneNumberCountriesResponse = exports.PhoneNumberCountry = exports.ListSupportedPhoneNumberCountriesRequest = exports.ListSipRulesResponse = exports.ListSipRulesRequest = exports.ListSipMediaApplicationsResponse = exports.ListSipMediaApplicationsRequest = exports.ListRoomsResponse = exports.ListRoomsRequest = exports.ListRoomMembershipsResponse = exports.ListRoomMembershipsRequest = exports.ListProxySessionsResponse = exports.ListProxySessionsRequest = exports.ListPhoneNumbersResponse = exports.ListPhoneNumbersRequest = exports.ListPhoneNumberOrdersResponse = exports.ListPhoneNumberOrdersRequest = exports.ListMeetingTagsResponse = exports.ListMeetingTagsRequest = exports.ListMeetingsResponse = exports.ListMeetingsRequest = exports.ListMediaCapturePipelinesResponse = exports.ListMediaCapturePipelinesRequest = exports.ListChannelsModeratedByAppInstanceUserResponse = exports.ListChannelsModeratedByAppInstanceUserRequest = exports.ListChannelsResponse = exports.ListChannelsRequest = exports.ListChannelModeratorsResponse = exports.ListChannelModeratorsRequest = exports.ListChannelMessagesResponse = exports.ListChannelMessagesRequest = exports.SortOrder = exports.ListChannelMembershipsForAppInstanceUserResponse = exports.ListChannelMembershipsForAppInstanceUserRequest = exports.ListChannelMembershipsResponse = exports.ListChannelMembershipsRequest = exports.ListChannelBansResponse = exports.ListChannelBansRequest = exports.ListBotsResponse = exports.ListBotsRequest = exports.ListAttendeeTagsResponse = exports.ListAttendeeTagsRequest = exports.ListAttendeesResponse = exports.ListAttendeesRequest = exports.ListAppInstanceUsersResponse = exports.ListAppInstanceUsersRequest = exports.ListAppInstancesResponse = exports.ListAppInstancesRequest = exports.ListAppInstanceAdminsResponse = void 0;
|
|
5
|
+
exports.SendChannelMessageResponse = exports.SendChannelMessageRequest = exports.SearchAvailablePhoneNumbersResponse = exports.SearchAvailablePhoneNumbersRequest = exports.RestorePhoneNumberResponse = exports.RestorePhoneNumberRequest = exports.ResetPersonalPINResponse = exports.ResetPersonalPINRequest = exports.RegenerateSecurityTokenResponse = exports.RegenerateSecurityTokenRequest = exports.RedactRoomMessageResponse = exports.RedactRoomMessageRequest = exports.RedactConversationMessageResponse = exports.RedactConversationMessageRequest = exports.RedactChannelMessageResponse = exports.RedactChannelMessageRequest = exports.PutVoiceConnectorTerminationCredentialsRequest = exports.PutVoiceConnectorTerminationResponse = exports.PutVoiceConnectorTerminationRequest = exports.PutVoiceConnectorStreamingConfigurationResponse = exports.PutVoiceConnectorStreamingConfigurationRequest = exports.PutVoiceConnectorProxyResponse = exports.PutVoiceConnectorProxyRequest = exports.PutVoiceConnectorOriginationResponse = exports.PutVoiceConnectorOriginationRequest = exports.PutVoiceConnectorLoggingConfigurationResponse = exports.PutVoiceConnectorLoggingConfigurationRequest = exports.PutVoiceConnectorEmergencyCallingConfigurationResponse = exports.PutVoiceConnectorEmergencyCallingConfigurationRequest = exports.PutSipMediaApplicationLoggingConfigurationResponse = exports.PutSipMediaApplicationLoggingConfigurationRequest = exports.PutRetentionSettingsResponse = exports.PutRetentionSettingsRequest = exports.PutEventsConfigurationResponse = exports.PutEventsConfigurationRequest = exports.PutAppInstanceStreamingConfigurationsResponse = exports.PutAppInstanceStreamingConfigurationsRequest = exports.PutAppInstanceRetentionSettingsResponse = exports.PutAppInstanceRetentionSettingsRequest = exports.LogoutUserResponse = exports.LogoutUserRequest = exports.ListVoiceConnectorTerminationCredentialsResponse = exports.ListVoiceConnectorTerminationCredentialsRequest = exports.ListVoiceConnectorsResponse = exports.ListVoiceConnectorsRequest = exports.ListVoiceConnectorGroupsResponse = exports.ListVoiceConnectorGroupsRequest = exports.ListUsersResponse = exports.ListUsersRequest = exports.ListTagsForResourceResponse = void 0;
|
|
6
|
+
exports.UpdateVoiceConnectorGroupResponse = exports.UpdateVoiceConnectorGroupRequest = exports.UpdateVoiceConnectorResponse = exports.UpdateVoiceConnectorRequest = exports.UpdateUserSettingsRequest = exports.UpdateUserResponse = exports.UpdateUserRequest = exports.UpdateSipRuleResponse = exports.UpdateSipRuleRequest = exports.UpdateSipMediaApplicationCallResponse = exports.UpdateSipMediaApplicationCallRequest = exports.UpdateSipMediaApplicationResponse = exports.UpdateSipMediaApplicationRequest = exports.UpdateRoomMembershipResponse = exports.UpdateRoomMembershipRequest = exports.UpdateRoomResponse = exports.UpdateRoomRequest = exports.UpdateProxySessionResponse = exports.UpdateProxySessionRequest = exports.UpdatePhoneNumberSettingsRequest = exports.UpdatePhoneNumberResponse = exports.UpdatePhoneNumberRequest = exports.UpdateGlobalSettingsRequest = exports.UpdateChannelReadMarkerResponse = exports.UpdateChannelReadMarkerRequest = exports.UpdateChannelMessageResponse = exports.UpdateChannelMessageRequest = exports.UpdateChannelResponse = exports.UpdateChannelRequest = exports.UpdateBotResponse = exports.UpdateBotRequest = exports.UpdateAppInstanceUserResponse = exports.UpdateAppInstanceUserRequest = exports.UpdateAppInstanceResponse = exports.UpdateAppInstanceRequest = exports.UpdateAccountSettingsResponse = exports.UpdateAccountSettingsRequest = exports.UpdateAccountResponse = exports.UpdateAccountRequest = exports.UntagResourceRequest = exports.UntagMeetingRequest = exports.UntagAttendeeRequest = exports.TagResourceRequest = exports.TagMeetingRequest = exports.TagAttendeeRequest = exports.StopMeetingTranscriptionResponse = exports.StopMeetingTranscriptionRequest = exports.StartMeetingTranscriptionResponse = exports.StartMeetingTranscriptionRequest = exports.TranscriptionConfiguration = void 0;
|
|
7
7
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
8
8
|
const models_0_1 = require("./models_0");
|
|
9
|
+
var GetRetentionSettingsResponse;
|
|
10
|
+
(function (GetRetentionSettingsResponse) {
|
|
11
|
+
GetRetentionSettingsResponse.filterSensitiveLog = (obj) => ({
|
|
12
|
+
...obj,
|
|
13
|
+
});
|
|
14
|
+
})(GetRetentionSettingsResponse = exports.GetRetentionSettingsResponse || (exports.GetRetentionSettingsResponse = {}));
|
|
15
|
+
var GetRoomRequest;
|
|
16
|
+
(function (GetRoomRequest) {
|
|
17
|
+
GetRoomRequest.filterSensitiveLog = (obj) => ({
|
|
18
|
+
...obj,
|
|
19
|
+
});
|
|
20
|
+
})(GetRoomRequest = exports.GetRoomRequest || (exports.GetRoomRequest = {}));
|
|
21
|
+
var GetRoomResponse;
|
|
22
|
+
(function (GetRoomResponse) {
|
|
23
|
+
GetRoomResponse.filterSensitiveLog = (obj) => ({
|
|
24
|
+
...obj,
|
|
25
|
+
...(obj.Room && { Room: models_0_1.Room.filterSensitiveLog(obj.Room) }),
|
|
26
|
+
});
|
|
27
|
+
})(GetRoomResponse = exports.GetRoomResponse || (exports.GetRoomResponse = {}));
|
|
28
|
+
var GetSipMediaApplicationRequest;
|
|
29
|
+
(function (GetSipMediaApplicationRequest) {
|
|
30
|
+
GetSipMediaApplicationRequest.filterSensitiveLog = (obj) => ({
|
|
31
|
+
...obj,
|
|
32
|
+
});
|
|
33
|
+
})(GetSipMediaApplicationRequest = exports.GetSipMediaApplicationRequest || (exports.GetSipMediaApplicationRequest = {}));
|
|
9
34
|
var GetSipMediaApplicationResponse;
|
|
10
35
|
(function (GetSipMediaApplicationResponse) {
|
|
11
36
|
GetSipMediaApplicationResponse.filterSensitiveLog = (obj) => ({
|
|
@@ -25211,6 +25211,8 @@ const serializeAws_restJson1EmergencyCallingConfiguration = (input, context) =>
|
|
|
25211
25211
|
};
|
|
25212
25212
|
const serializeAws_restJson1EngineTranscribeMedicalSettings = (input, context) => {
|
|
25213
25213
|
return {
|
|
25214
|
+
...(input.ContentIdentificationType !== undefined &&
|
|
25215
|
+
input.ContentIdentificationType !== null && { ContentIdentificationType: input.ContentIdentificationType }),
|
|
25214
25216
|
...(input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode }),
|
|
25215
25217
|
...(input.Region !== undefined && input.Region !== null && { Region: input.Region }),
|
|
25216
25218
|
...(input.Specialty !== undefined && input.Specialty !== null && { Specialty: input.Specialty }),
|
|
@@ -25221,7 +25223,21 @@ const serializeAws_restJson1EngineTranscribeMedicalSettings = (input, context) =
|
|
|
25221
25223
|
};
|
|
25222
25224
|
const serializeAws_restJson1EngineTranscribeSettings = (input, context) => {
|
|
25223
25225
|
return {
|
|
25226
|
+
...(input.ContentIdentificationType !== undefined &&
|
|
25227
|
+
input.ContentIdentificationType !== null && { ContentIdentificationType: input.ContentIdentificationType }),
|
|
25228
|
+
...(input.ContentRedactionType !== undefined &&
|
|
25229
|
+
input.ContentRedactionType !== null && { ContentRedactionType: input.ContentRedactionType }),
|
|
25230
|
+
...(input.EnablePartialResultsStabilization !== undefined &&
|
|
25231
|
+
input.EnablePartialResultsStabilization !== null && {
|
|
25232
|
+
EnablePartialResultsStabilization: input.EnablePartialResultsStabilization,
|
|
25233
|
+
}),
|
|
25224
25234
|
...(input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode }),
|
|
25235
|
+
...(input.LanguageModelName !== undefined &&
|
|
25236
|
+
input.LanguageModelName !== null && { LanguageModelName: input.LanguageModelName }),
|
|
25237
|
+
...(input.PartialResultsStability !== undefined &&
|
|
25238
|
+
input.PartialResultsStability !== null && { PartialResultsStability: input.PartialResultsStability }),
|
|
25239
|
+
...(input.PiiEntityTypes !== undefined &&
|
|
25240
|
+
input.PiiEntityTypes !== null && { PiiEntityTypes: input.PiiEntityTypes }),
|
|
25225
25241
|
...(input.Region !== undefined && input.Region !== null && { Region: input.Region }),
|
|
25226
25242
|
...(input.VocabularyFilterMethod !== undefined &&
|
|
25227
25243
|
input.VocabularyFilterMethod !== null && { VocabularyFilterMethod: input.VocabularyFilterMethod }),
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { GetRetentionSettingsRequest
|
|
4
|
+
import { GetRetentionSettingsRequest } from "../models/models_0";
|
|
5
|
+
import { GetRetentionSettingsResponse } from "../models/models_1";
|
|
5
6
|
import { deserializeAws_restJson1GetRetentionSettingsCommand, serializeAws_restJson1GetRetentionSettingsCommand, } from "../protocols/Aws_restJson1";
|
|
6
7
|
var GetRetentionSettingsCommand = (function (_super) {
|
|
7
8
|
__extends(GetRetentionSettingsCommand, _super);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { GetRoomRequest, GetRoomResponse } from "../models/
|
|
4
|
+
import { GetRoomRequest, GetRoomResponse } from "../models/models_1";
|
|
5
5
|
import { deserializeAws_restJson1GetRoomCommand, serializeAws_restJson1GetRoomCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetRoomCommand = (function (_super) {
|
|
7
7
|
__extends(GetRoomCommand, _super);
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { GetSipMediaApplicationRequest } from "../models/
|
|
5
|
-
import { GetSipMediaApplicationResponse } from "../models/models_1";
|
|
4
|
+
import { GetSipMediaApplicationRequest, GetSipMediaApplicationResponse } from "../models/models_1";
|
|
6
5
|
import { deserializeAws_restJson1GetSipMediaApplicationCommand, serializeAws_restJson1GetSipMediaApplicationCommand, } from "../protocols/Aws_restJson1";
|
|
7
6
|
var GetSipMediaApplicationCommand = (function (_super) {
|
|
8
7
|
__extends(GetSipMediaApplicationCommand, _super);
|
|
@@ -1080,6 +1080,10 @@ export var EmergencyCallingConfiguration;
|
|
|
1080
1080
|
(function (EmergencyCallingConfiguration) {
|
|
1081
1081
|
EmergencyCallingConfiguration.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.DNIS && { DNIS: obj.DNIS.map(function (item) { return DNISEmergencyCallingConfiguration.filterSensitiveLog(item); }) }))); };
|
|
1082
1082
|
})(EmergencyCallingConfiguration || (EmergencyCallingConfiguration = {}));
|
|
1083
|
+
export var TranscribeMedicalContentIdentificationType;
|
|
1084
|
+
(function (TranscribeMedicalContentIdentificationType) {
|
|
1085
|
+
TranscribeMedicalContentIdentificationType["PHI"] = "PHI";
|
|
1086
|
+
})(TranscribeMedicalContentIdentificationType || (TranscribeMedicalContentIdentificationType = {}));
|
|
1083
1087
|
export var TranscribeMedicalLanguageCode;
|
|
1084
1088
|
(function (TranscribeMedicalLanguageCode) {
|
|
1085
1089
|
TranscribeMedicalLanguageCode["EN_US"] = "en-US";
|
|
@@ -1112,6 +1116,14 @@ export var EngineTranscribeMedicalSettings;
|
|
|
1112
1116
|
(function (EngineTranscribeMedicalSettings) {
|
|
1113
1117
|
EngineTranscribeMedicalSettings.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1114
1118
|
})(EngineTranscribeMedicalSettings || (EngineTranscribeMedicalSettings = {}));
|
|
1119
|
+
export var TranscribeContentIdentificationType;
|
|
1120
|
+
(function (TranscribeContentIdentificationType) {
|
|
1121
|
+
TranscribeContentIdentificationType["PII"] = "PII";
|
|
1122
|
+
})(TranscribeContentIdentificationType || (TranscribeContentIdentificationType = {}));
|
|
1123
|
+
export var TranscribeContentRedactionType;
|
|
1124
|
+
(function (TranscribeContentRedactionType) {
|
|
1125
|
+
TranscribeContentRedactionType["PII"] = "PII";
|
|
1126
|
+
})(TranscribeContentRedactionType || (TranscribeContentRedactionType = {}));
|
|
1115
1127
|
export var TranscribeLanguageCode;
|
|
1116
1128
|
(function (TranscribeLanguageCode) {
|
|
1117
1129
|
TranscribeLanguageCode["DE_DE"] = "de-DE";
|
|
@@ -1127,6 +1139,12 @@ export var TranscribeLanguageCode;
|
|
|
1127
1139
|
TranscribeLanguageCode["PT_BR"] = "pt-BR";
|
|
1128
1140
|
TranscribeLanguageCode["ZH_CN"] = "zh-CN";
|
|
1129
1141
|
})(TranscribeLanguageCode || (TranscribeLanguageCode = {}));
|
|
1142
|
+
export var TranscribePartialResultsStability;
|
|
1143
|
+
(function (TranscribePartialResultsStability) {
|
|
1144
|
+
TranscribePartialResultsStability["HIGH"] = "high";
|
|
1145
|
+
TranscribePartialResultsStability["LOW"] = "low";
|
|
1146
|
+
TranscribePartialResultsStability["MEDIUM"] = "medium";
|
|
1147
|
+
})(TranscribePartialResultsStability || (TranscribePartialResultsStability = {}));
|
|
1130
1148
|
export var TranscribeRegion;
|
|
1131
1149
|
(function (TranscribeRegion) {
|
|
1132
1150
|
TranscribeRegion["AP_NORTHEAST_1"] = "ap-northeast-1";
|
|
@@ -1340,19 +1358,3 @@ export var RetentionSettings;
|
|
|
1340
1358
|
(function (RetentionSettings) {
|
|
1341
1359
|
RetentionSettings.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1342
1360
|
})(RetentionSettings || (RetentionSettings = {}));
|
|
1343
|
-
export var GetRetentionSettingsResponse;
|
|
1344
|
-
(function (GetRetentionSettingsResponse) {
|
|
1345
|
-
GetRetentionSettingsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1346
|
-
})(GetRetentionSettingsResponse || (GetRetentionSettingsResponse = {}));
|
|
1347
|
-
export var GetRoomRequest;
|
|
1348
|
-
(function (GetRoomRequest) {
|
|
1349
|
-
GetRoomRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1350
|
-
})(GetRoomRequest || (GetRoomRequest = {}));
|
|
1351
|
-
export var GetRoomResponse;
|
|
1352
|
-
(function (GetRoomResponse) {
|
|
1353
|
-
GetRoomResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Room && { Room: Room.filterSensitiveLog(obj.Room) }))); };
|
|
1354
|
-
})(GetRoomResponse || (GetRoomResponse = {}));
|
|
1355
|
-
export var GetSipMediaApplicationRequest;
|
|
1356
|
-
(function (GetSipMediaApplicationRequest) {
|
|
1357
|
-
GetSipMediaApplicationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1358
|
-
})(GetSipMediaApplicationRequest || (GetSipMediaApplicationRequest = {}));
|
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { AlexaForBusinessMetadata, AppInstanceAdminSummary, AppInstanceStreamingConfiguration, AppInstanceSummary, AppInstanceUserSummary, Attendee, Bot, ChannelBanSummary, ChannelMembershipForAppInstanceUserSummary, ChannelMembershipSummary, ChannelMessageSummary, ChannelModeratedByAppInstanceUserSummary, ChannelModeratorSummary, ChannelSummary, Credential, EmergencyCallingConfiguration, EventsConfiguration, MediaCapturePipeline, Meeting, PhoneNumber, ProxySession, Room, RoomMembership, SipMediaApplication, SipMediaApplicationEndpoint, Tag, User, } from "./models_0";
|
|
4
|
+
export var GetRetentionSettingsResponse;
|
|
5
|
+
(function (GetRetentionSettingsResponse) {
|
|
6
|
+
GetRetentionSettingsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
7
|
+
})(GetRetentionSettingsResponse || (GetRetentionSettingsResponse = {}));
|
|
8
|
+
export var GetRoomRequest;
|
|
9
|
+
(function (GetRoomRequest) {
|
|
10
|
+
GetRoomRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
11
|
+
})(GetRoomRequest || (GetRoomRequest = {}));
|
|
12
|
+
export var GetRoomResponse;
|
|
13
|
+
(function (GetRoomResponse) {
|
|
14
|
+
GetRoomResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Room && { Room: Room.filterSensitiveLog(obj.Room) }))); };
|
|
15
|
+
})(GetRoomResponse || (GetRoomResponse = {}));
|
|
16
|
+
export var GetSipMediaApplicationRequest;
|
|
17
|
+
(function (GetSipMediaApplicationRequest) {
|
|
18
|
+
GetSipMediaApplicationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
19
|
+
})(GetSipMediaApplicationRequest || (GetSipMediaApplicationRequest = {}));
|
|
4
20
|
export var GetSipMediaApplicationResponse;
|
|
5
21
|
(function (GetSipMediaApplicationResponse) {
|
|
6
22
|
GetSipMediaApplicationResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.SipMediaApplication && {
|
|
@@ -28367,11 +28367,20 @@ var serializeAws_restJson1EmergencyCallingConfiguration = function (input, conte
|
|
|
28367
28367
|
}));
|
|
28368
28368
|
};
|
|
28369
28369
|
var serializeAws_restJson1EngineTranscribeMedicalSettings = function (input, context) {
|
|
28370
|
-
return __assign(__assign(__assign(__assign(__assign(
|
|
28370
|
+
return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.ContentIdentificationType !== undefined &&
|
|
28371
|
+
input.ContentIdentificationType !== null && { ContentIdentificationType: input.ContentIdentificationType })), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.Region !== undefined && input.Region !== null && { Region: input.Region })), (input.Specialty !== undefined && input.Specialty !== null && { Specialty: input.Specialty })), (input.Type !== undefined && input.Type !== null && { Type: input.Type })), (input.VocabularyName !== undefined &&
|
|
28371
28372
|
input.VocabularyName !== null && { VocabularyName: input.VocabularyName }));
|
|
28372
28373
|
};
|
|
28373
28374
|
var serializeAws_restJson1EngineTranscribeSettings = function (input, context) {
|
|
28374
|
-
return __assign(__assign(__assign(__assign(__assign(
|
|
28375
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.ContentIdentificationType !== undefined &&
|
|
28376
|
+
input.ContentIdentificationType !== null && { ContentIdentificationType: input.ContentIdentificationType })), (input.ContentRedactionType !== undefined &&
|
|
28377
|
+
input.ContentRedactionType !== null && { ContentRedactionType: input.ContentRedactionType })), (input.EnablePartialResultsStabilization !== undefined &&
|
|
28378
|
+
input.EnablePartialResultsStabilization !== null && {
|
|
28379
|
+
EnablePartialResultsStabilization: input.EnablePartialResultsStabilization,
|
|
28380
|
+
})), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.LanguageModelName !== undefined &&
|
|
28381
|
+
input.LanguageModelName !== null && { LanguageModelName: input.LanguageModelName })), (input.PartialResultsStability !== undefined &&
|
|
28382
|
+
input.PartialResultsStability !== null && { PartialResultsStability: input.PartialResultsStability })), (input.PiiEntityTypes !== undefined &&
|
|
28383
|
+
input.PiiEntityTypes !== null && { PiiEntityTypes: input.PiiEntityTypes })), (input.Region !== undefined && input.Region !== null && { Region: input.Region })), (input.VocabularyFilterMethod !== undefined &&
|
|
28375
28384
|
input.VocabularyFilterMethod !== null && { VocabularyFilterMethod: input.VocabularyFilterMethod })), (input.VocabularyFilterName !== undefined &&
|
|
28376
28385
|
input.VocabularyFilterName !== null && { VocabularyFilterName: input.VocabularyFilterName })), (input.VocabularyName !== undefined &&
|
|
28377
28386
|
input.VocabularyName !== null && { VocabularyName: input.VocabularyName }));
|
package/dist-types/Chime.d.ts
CHANGED
|
@@ -194,8 +194,7 @@ import { UpdateVoiceConnectorGroupCommandInput, UpdateVoiceConnectorGroupCommand
|
|
|
194
194
|
* <p>The Amazon Chime API (application programming interface) is designed for developers to
|
|
195
195
|
* perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice
|
|
196
196
|
* Connectors. This guide provides detailed information about the Amazon Chime API,
|
|
197
|
-
* including operations, types, inputs and outputs, and error codes. It also includes
|
|
198
|
-
* server-side API actions to use with the Amazon Chime SDK. For more information about the
|
|
197
|
+
* including operations, types, inputs and outputs, and error codes. It also includes API actions for use with the Amazon Chime SDK, which developers use to build their own communication applications. For more information about the
|
|
199
198
|
* Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">
|
|
200
199
|
* Using the Amazon Chime SDK
|
|
201
200
|
* </a> in the <i>Amazon Chime Developer Guide</i>.</p>
|
|
@@ -315,8 +315,7 @@ export interface ChimeClientResolvedConfig extends ChimeClientResolvedConfigType
|
|
|
315
315
|
* <p>The Amazon Chime API (application programming interface) is designed for developers to
|
|
316
316
|
* perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice
|
|
317
317
|
* Connectors. This guide provides detailed information about the Amazon Chime API,
|
|
318
|
-
* including operations, types, inputs and outputs, and error codes. It also includes
|
|
319
|
-
* server-side API actions to use with the Amazon Chime SDK. For more information about the
|
|
318
|
+
* including operations, types, inputs and outputs, and error codes. It also includes API actions for use with the Amazon Chime SDK, which developers use to build their own communication applications. For more information about the
|
|
320
319
|
* Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">
|
|
321
320
|
* Using the Amazon Chime SDK
|
|
322
321
|
* </a> in the <i>Amazon Chime Developer Guide</i>.</p>
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient";
|
|
4
|
-
import { GetRetentionSettingsRequest
|
|
4
|
+
import { GetRetentionSettingsRequest } from "../models/models_0";
|
|
5
|
+
import { GetRetentionSettingsResponse } from "../models/models_1";
|
|
5
6
|
export interface GetRetentionSettingsCommandInput extends GetRetentionSettingsRequest {
|
|
6
7
|
}
|
|
7
8
|
export interface GetRetentionSettingsCommandOutput extends GetRetentionSettingsResponse, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient";
|
|
4
|
-
import { GetRoomRequest, GetRoomResponse } from "../models/
|
|
4
|
+
import { GetRoomRequest, GetRoomResponse } from "../models/models_1";
|
|
5
5
|
export interface GetRoomCommandInput extends GetRoomRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface GetRoomCommandOutput extends GetRoomResponse, __MetadataBearer {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient";
|
|
4
|
-
import { GetSipMediaApplicationRequest } from "../models/
|
|
5
|
-
import { GetSipMediaApplicationResponse } from "../models/models_1";
|
|
4
|
+
import { GetSipMediaApplicationRequest, GetSipMediaApplicationResponse } from "../models/models_1";
|
|
6
5
|
export interface GetSipMediaApplicationCommandInput extends GetSipMediaApplicationRequest {
|
|
7
6
|
}
|
|
8
7
|
export interface GetSipMediaApplicationCommandOutput extends GetSipMediaApplicationResponse, __MetadataBearer {
|
|
@@ -4429,6 +4429,9 @@ export declare namespace EmergencyCallingConfiguration {
|
|
|
4429
4429
|
*/
|
|
4430
4430
|
const filterSensitiveLog: (obj: EmergencyCallingConfiguration) => any;
|
|
4431
4431
|
}
|
|
4432
|
+
export declare enum TranscribeMedicalContentIdentificationType {
|
|
4433
|
+
PHI = "PHI"
|
|
4434
|
+
}
|
|
4432
4435
|
export declare enum TranscribeMedicalLanguageCode {
|
|
4433
4436
|
EN_US = "en-US"
|
|
4434
4437
|
}
|
|
@@ -4477,6 +4480,10 @@ export interface EngineTranscribeMedicalSettings {
|
|
|
4477
4480
|
* <p>The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region.</p>
|
|
4478
4481
|
*/
|
|
4479
4482
|
Region?: TranscribeMedicalRegion | string;
|
|
4483
|
+
/**
|
|
4484
|
+
* <p>Set this field to <code>PHI</code> to identify personal health information in the transcription output.</p>
|
|
4485
|
+
*/
|
|
4486
|
+
ContentIdentificationType?: TranscribeMedicalContentIdentificationType | string;
|
|
4480
4487
|
}
|
|
4481
4488
|
export declare namespace EngineTranscribeMedicalSettings {
|
|
4482
4489
|
/**
|
|
@@ -4484,6 +4491,12 @@ export declare namespace EngineTranscribeMedicalSettings {
|
|
|
4484
4491
|
*/
|
|
4485
4492
|
const filterSensitiveLog: (obj: EngineTranscribeMedicalSettings) => any;
|
|
4486
4493
|
}
|
|
4494
|
+
export declare enum TranscribeContentIdentificationType {
|
|
4495
|
+
PII = "PII"
|
|
4496
|
+
}
|
|
4497
|
+
export declare enum TranscribeContentRedactionType {
|
|
4498
|
+
PII = "PII"
|
|
4499
|
+
}
|
|
4487
4500
|
export declare enum TranscribeLanguageCode {
|
|
4488
4501
|
DE_DE = "de-DE",
|
|
4489
4502
|
EN_AU = "en-AU",
|
|
@@ -4498,6 +4511,11 @@ export declare enum TranscribeLanguageCode {
|
|
|
4498
4511
|
PT_BR = "pt-BR",
|
|
4499
4512
|
ZH_CN = "zh-CN"
|
|
4500
4513
|
}
|
|
4514
|
+
export declare enum TranscribePartialResultsStability {
|
|
4515
|
+
HIGH = "high",
|
|
4516
|
+
LOW = "low",
|
|
4517
|
+
MEDIUM = "medium"
|
|
4518
|
+
}
|
|
4501
4519
|
export declare enum TranscribeRegion {
|
|
4502
4520
|
AP_NORTHEAST_1 = "ap-northeast-1",
|
|
4503
4521
|
AP_NORTHEAST_2 = "ap-northeast-2",
|
|
@@ -4541,6 +4559,37 @@ export interface EngineTranscribeSettings {
|
|
|
4541
4559
|
* <p>The AWS Region passed to Amazon Transcribe. If you don't specify a Region, Amazon Chime uses the meeting's Region.</p>
|
|
4542
4560
|
*/
|
|
4543
4561
|
Region?: TranscribeRegion | string;
|
|
4562
|
+
/**
|
|
4563
|
+
* <p>Generates partial transcription results that are less likely to change as meeting attendees speak. It does so by only allowing the last few words from the partial results to change.</p>
|
|
4564
|
+
*/
|
|
4565
|
+
EnablePartialResultsStabilization?: boolean;
|
|
4566
|
+
/**
|
|
4567
|
+
* <p>The stabity level of a partial results transcription. Determines how stable you want the transcription results to be. A higher level means the transcription results are less likely to change.</p>
|
|
4568
|
+
*/
|
|
4569
|
+
PartialResultsStability?: TranscribePartialResultsStability | string;
|
|
4570
|
+
/**
|
|
4571
|
+
* <p>Set this field to <code>PII</code> to identify personal health information in the transcription output.</p>
|
|
4572
|
+
*/
|
|
4573
|
+
ContentIdentificationType?: TranscribeContentIdentificationType | string;
|
|
4574
|
+
/**
|
|
4575
|
+
* <p>Set this field to <code>PII</code> to redact personally identifiable information in the transcription output. Content redaction is performed only upon complete transcription of the audio segments.</p>
|
|
4576
|
+
*/
|
|
4577
|
+
ContentRedactionType?: TranscribeContentRedactionType | string;
|
|
4578
|
+
/**
|
|
4579
|
+
* <p>Lists the PII entity types you want to identify or redact. To specify entity types, you must enable <code>ContentIdentificationType</code> or <code>ContentRedactionType</code>.</p>
|
|
4580
|
+
* <p>
|
|
4581
|
+
* <code>PIIEntityTypes</code> must be comma-separated. The available values are:
|
|
4582
|
+
* <code>BANK_ACCOUNT_NUMBER</code>, <code>BANK_ROUTING, CREDIT_DEBIT_NUMBER</code>, <code>CREDIT_DEBIT_CVV</code>, <code>CREDIT_DEBIT_EXPIRY</code>, <code>PIN</code>, <code>EMAIL</code>,
|
|
4583
|
+
* <code>ADDRESS</code>, <code>NAME</code>, <code>PHONE</code>, <code>SSN</code>, and <code>ALL</code>.</p>
|
|
4584
|
+
*
|
|
4585
|
+
* <p>
|
|
4586
|
+
* <code>PiiEntityTypes</code> is an optional parameter with a default value of <code>ALL</code>.</p>
|
|
4587
|
+
*/
|
|
4588
|
+
PiiEntityTypes?: string;
|
|
4589
|
+
/**
|
|
4590
|
+
* <p>The name of the language model used during transcription.</p>
|
|
4591
|
+
*/
|
|
4592
|
+
LanguageModelName?: string;
|
|
4544
4593
|
}
|
|
4545
4594
|
export declare namespace EngineTranscribeSettings {
|
|
4546
4595
|
/**
|
|
@@ -5186,59 +5235,3 @@ export declare namespace RetentionSettings {
|
|
|
5186
5235
|
*/
|
|
5187
5236
|
const filterSensitiveLog: (obj: RetentionSettings) => any;
|
|
5188
5237
|
}
|
|
5189
|
-
export interface GetRetentionSettingsResponse {
|
|
5190
|
-
/**
|
|
5191
|
-
* <p>The retention settings.</p>
|
|
5192
|
-
*/
|
|
5193
|
-
RetentionSettings?: RetentionSettings;
|
|
5194
|
-
/**
|
|
5195
|
-
* <p>The timestamp representing the time at which the specified items are permanently deleted, in ISO 8601 format.</p>
|
|
5196
|
-
*/
|
|
5197
|
-
InitiateDeletionTimestamp?: Date;
|
|
5198
|
-
}
|
|
5199
|
-
export declare namespace GetRetentionSettingsResponse {
|
|
5200
|
-
/**
|
|
5201
|
-
* @internal
|
|
5202
|
-
*/
|
|
5203
|
-
const filterSensitiveLog: (obj: GetRetentionSettingsResponse) => any;
|
|
5204
|
-
}
|
|
5205
|
-
export interface GetRoomRequest {
|
|
5206
|
-
/**
|
|
5207
|
-
* <p>The Amazon Chime account ID.</p>
|
|
5208
|
-
*/
|
|
5209
|
-
AccountId: string | undefined;
|
|
5210
|
-
/**
|
|
5211
|
-
* <p>The room ID.</p>
|
|
5212
|
-
*/
|
|
5213
|
-
RoomId: string | undefined;
|
|
5214
|
-
}
|
|
5215
|
-
export declare namespace GetRoomRequest {
|
|
5216
|
-
/**
|
|
5217
|
-
* @internal
|
|
5218
|
-
*/
|
|
5219
|
-
const filterSensitiveLog: (obj: GetRoomRequest) => any;
|
|
5220
|
-
}
|
|
5221
|
-
export interface GetRoomResponse {
|
|
5222
|
-
/**
|
|
5223
|
-
* <p>The room details.</p>
|
|
5224
|
-
*/
|
|
5225
|
-
Room?: Room;
|
|
5226
|
-
}
|
|
5227
|
-
export declare namespace GetRoomResponse {
|
|
5228
|
-
/**
|
|
5229
|
-
* @internal
|
|
5230
|
-
*/
|
|
5231
|
-
const filterSensitiveLog: (obj: GetRoomResponse) => any;
|
|
5232
|
-
}
|
|
5233
|
-
export interface GetSipMediaApplicationRequest {
|
|
5234
|
-
/**
|
|
5235
|
-
* <p>The SIP media application ID.</p>
|
|
5236
|
-
*/
|
|
5237
|
-
SipMediaApplicationId: string | undefined;
|
|
5238
|
-
}
|
|
5239
|
-
export declare namespace GetSipMediaApplicationRequest {
|
|
5240
|
-
/**
|
|
5241
|
-
* @internal
|
|
5242
|
-
*/
|
|
5243
|
-
const filterSensitiveLog: (obj: GetSipMediaApplicationRequest) => any;
|
|
5244
|
-
}
|
|
@@ -1,4 +1,60 @@
|
|
|
1
1
|
import { Account, AccountSettings, AlexaForBusinessMetadata, AppInstanceAdminSummary, AppInstanceRetentionSettings, AppInstanceStreamingConfiguration, AppInstanceSummary, AppInstanceUserSummary, Attendee, Bot, BusinessCallingSettings, Capability, ChannelBanSummary, ChannelMembershipForAppInstanceUserSummary, ChannelMembershipSummary, ChannelMembershipType, ChannelMessagePersistenceType, ChannelMessageSummary, ChannelMessageType, ChannelMode, ChannelModeratedByAppInstanceUserSummary, ChannelModeratorSummary, ChannelPrivacy, ChannelSummary, Credential, EmailStatus, EmergencyCallingConfiguration, EngineTranscribeMedicalSettings, EngineTranscribeSettings, EventsConfiguration, InviteStatus, License, MediaCapturePipeline, Meeting, PhoneNumber, PhoneNumberAssociationName, PhoneNumberOrder, PhoneNumberProductType, PhoneNumberStatus, PhoneNumberType, ProxySession, ProxySessionStatus, RetentionSettings, Room, RoomMembership, RoomMembershipRole, SipMediaApplication, SipMediaApplicationCall, SipMediaApplicationEndpoint, SipRule, SipRuleTargetApplication, Tag, User, UserType, VoiceConnector, VoiceConnectorGroup, VoiceConnectorItem, VoiceConnectorSettings } from "./models_0";
|
|
2
|
+
export interface GetRetentionSettingsResponse {
|
|
3
|
+
/**
|
|
4
|
+
* <p>The retention settings.</p>
|
|
5
|
+
*/
|
|
6
|
+
RetentionSettings?: RetentionSettings;
|
|
7
|
+
/**
|
|
8
|
+
* <p>The timestamp representing the time at which the specified items are permanently deleted, in ISO 8601 format.</p>
|
|
9
|
+
*/
|
|
10
|
+
InitiateDeletionTimestamp?: Date;
|
|
11
|
+
}
|
|
12
|
+
export declare namespace GetRetentionSettingsResponse {
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
const filterSensitiveLog: (obj: GetRetentionSettingsResponse) => any;
|
|
17
|
+
}
|
|
18
|
+
export interface GetRoomRequest {
|
|
19
|
+
/**
|
|
20
|
+
* <p>The Amazon Chime account ID.</p>
|
|
21
|
+
*/
|
|
22
|
+
AccountId: string | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* <p>The room ID.</p>
|
|
25
|
+
*/
|
|
26
|
+
RoomId: string | undefined;
|
|
27
|
+
}
|
|
28
|
+
export declare namespace GetRoomRequest {
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
const filterSensitiveLog: (obj: GetRoomRequest) => any;
|
|
33
|
+
}
|
|
34
|
+
export interface GetRoomResponse {
|
|
35
|
+
/**
|
|
36
|
+
* <p>The room details.</p>
|
|
37
|
+
*/
|
|
38
|
+
Room?: Room;
|
|
39
|
+
}
|
|
40
|
+
export declare namespace GetRoomResponse {
|
|
41
|
+
/**
|
|
42
|
+
* @internal
|
|
43
|
+
*/
|
|
44
|
+
const filterSensitiveLog: (obj: GetRoomResponse) => any;
|
|
45
|
+
}
|
|
46
|
+
export interface GetSipMediaApplicationRequest {
|
|
47
|
+
/**
|
|
48
|
+
* <p>The SIP media application ID.</p>
|
|
49
|
+
*/
|
|
50
|
+
SipMediaApplicationId: string | undefined;
|
|
51
|
+
}
|
|
52
|
+
export declare namespace GetSipMediaApplicationRequest {
|
|
53
|
+
/**
|
|
54
|
+
* @internal
|
|
55
|
+
*/
|
|
56
|
+
const filterSensitiveLog: (obj: GetSipMediaApplicationRequest) => any;
|
|
57
|
+
}
|
|
2
58
|
export interface GetSipMediaApplicationResponse {
|
|
3
59
|
/**
|
|
4
60
|
* <p>The SIP media application details.</p>
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient";
|
|
4
|
-
import { GetRetentionSettingsRequest
|
|
4
|
+
import { GetRetentionSettingsRequest } from "../models/models_0";
|
|
5
|
+
import { GetRetentionSettingsResponse } from "../models/models_1";
|
|
5
6
|
export interface GetRetentionSettingsCommandInput extends GetRetentionSettingsRequest {
|
|
6
7
|
}
|
|
7
8
|
export interface GetRetentionSettingsCommandOutput extends GetRetentionSettingsResponse, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient";
|
|
4
|
-
import { GetRoomRequest, GetRoomResponse } from "../models/
|
|
4
|
+
import { GetRoomRequest, GetRoomResponse } from "../models/models_1";
|
|
5
5
|
export interface GetRoomCommandInput extends GetRoomRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface GetRoomCommandOutput extends GetRoomResponse, __MetadataBearer {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient";
|
|
4
|
-
import { GetSipMediaApplicationRequest } from "../models/
|
|
5
|
-
import { GetSipMediaApplicationResponse } from "../models/models_1";
|
|
4
|
+
import { GetSipMediaApplicationRequest, GetSipMediaApplicationResponse } from "../models/models_1";
|
|
6
5
|
export interface GetSipMediaApplicationCommandInput extends GetSipMediaApplicationRequest {
|
|
7
6
|
}
|
|
8
7
|
export interface GetSipMediaApplicationCommandOutput extends GetSipMediaApplicationResponse, __MetadataBearer {
|
|
@@ -2611,6 +2611,9 @@ export declare namespace EmergencyCallingConfiguration {
|
|
|
2611
2611
|
|
|
2612
2612
|
const filterSensitiveLog: (obj: EmergencyCallingConfiguration) => any;
|
|
2613
2613
|
}
|
|
2614
|
+
export declare enum TranscribeMedicalContentIdentificationType {
|
|
2615
|
+
PHI = "PHI"
|
|
2616
|
+
}
|
|
2614
2617
|
export declare enum TranscribeMedicalLanguageCode {
|
|
2615
2618
|
EN_US = "en-US"
|
|
2616
2619
|
}
|
|
@@ -2647,11 +2650,19 @@ export interface EngineTranscribeMedicalSettings {
|
|
|
2647
2650
|
VocabularyName?: string;
|
|
2648
2651
|
|
|
2649
2652
|
Region?: TranscribeMedicalRegion | string;
|
|
2653
|
+
|
|
2654
|
+
ContentIdentificationType?: TranscribeMedicalContentIdentificationType | string;
|
|
2650
2655
|
}
|
|
2651
2656
|
export declare namespace EngineTranscribeMedicalSettings {
|
|
2652
2657
|
|
|
2653
2658
|
const filterSensitiveLog: (obj: EngineTranscribeMedicalSettings) => any;
|
|
2654
2659
|
}
|
|
2660
|
+
export declare enum TranscribeContentIdentificationType {
|
|
2661
|
+
PII = "PII"
|
|
2662
|
+
}
|
|
2663
|
+
export declare enum TranscribeContentRedactionType {
|
|
2664
|
+
PII = "PII"
|
|
2665
|
+
}
|
|
2655
2666
|
export declare enum TranscribeLanguageCode {
|
|
2656
2667
|
DE_DE = "de-DE",
|
|
2657
2668
|
EN_AU = "en-AU",
|
|
@@ -2666,6 +2677,11 @@ export declare enum TranscribeLanguageCode {
|
|
|
2666
2677
|
PT_BR = "pt-BR",
|
|
2667
2678
|
ZH_CN = "zh-CN"
|
|
2668
2679
|
}
|
|
2680
|
+
export declare enum TranscribePartialResultsStability {
|
|
2681
|
+
HIGH = "high",
|
|
2682
|
+
LOW = "low",
|
|
2683
|
+
MEDIUM = "medium"
|
|
2684
|
+
}
|
|
2669
2685
|
export declare enum TranscribeRegion {
|
|
2670
2686
|
AP_NORTHEAST_1 = "ap-northeast-1",
|
|
2671
2687
|
AP_NORTHEAST_2 = "ap-northeast-2",
|
|
@@ -2697,6 +2713,18 @@ export interface EngineTranscribeSettings {
|
|
|
2697
2713
|
VocabularyName?: string;
|
|
2698
2714
|
|
|
2699
2715
|
Region?: TranscribeRegion | string;
|
|
2716
|
+
|
|
2717
|
+
EnablePartialResultsStabilization?: boolean;
|
|
2718
|
+
|
|
2719
|
+
PartialResultsStability?: TranscribePartialResultsStability | string;
|
|
2720
|
+
|
|
2721
|
+
ContentIdentificationType?: TranscribeContentIdentificationType | string;
|
|
2722
|
+
|
|
2723
|
+
ContentRedactionType?: TranscribeContentRedactionType | string;
|
|
2724
|
+
|
|
2725
|
+
PiiEntityTypes?: string;
|
|
2726
|
+
|
|
2727
|
+
LanguageModelName?: string;
|
|
2700
2728
|
}
|
|
2701
2729
|
export declare namespace EngineTranscribeSettings {
|
|
2702
2730
|
|
|
@@ -3103,39 +3131,3 @@ export declare namespace RetentionSettings {
|
|
|
3103
3131
|
|
|
3104
3132
|
const filterSensitiveLog: (obj: RetentionSettings) => any;
|
|
3105
3133
|
}
|
|
3106
|
-
export interface GetRetentionSettingsResponse {
|
|
3107
|
-
|
|
3108
|
-
RetentionSettings?: RetentionSettings;
|
|
3109
|
-
|
|
3110
|
-
InitiateDeletionTimestamp?: Date;
|
|
3111
|
-
}
|
|
3112
|
-
export declare namespace GetRetentionSettingsResponse {
|
|
3113
|
-
|
|
3114
|
-
const filterSensitiveLog: (obj: GetRetentionSettingsResponse) => any;
|
|
3115
|
-
}
|
|
3116
|
-
export interface GetRoomRequest {
|
|
3117
|
-
|
|
3118
|
-
AccountId: string | undefined;
|
|
3119
|
-
|
|
3120
|
-
RoomId: string | undefined;
|
|
3121
|
-
}
|
|
3122
|
-
export declare namespace GetRoomRequest {
|
|
3123
|
-
|
|
3124
|
-
const filterSensitiveLog: (obj: GetRoomRequest) => any;
|
|
3125
|
-
}
|
|
3126
|
-
export interface GetRoomResponse {
|
|
3127
|
-
|
|
3128
|
-
Room?: Room;
|
|
3129
|
-
}
|
|
3130
|
-
export declare namespace GetRoomResponse {
|
|
3131
|
-
|
|
3132
|
-
const filterSensitiveLog: (obj: GetRoomResponse) => any;
|
|
3133
|
-
}
|
|
3134
|
-
export interface GetSipMediaApplicationRequest {
|
|
3135
|
-
|
|
3136
|
-
SipMediaApplicationId: string | undefined;
|
|
3137
|
-
}
|
|
3138
|
-
export declare namespace GetSipMediaApplicationRequest {
|
|
3139
|
-
|
|
3140
|
-
const filterSensitiveLog: (obj: GetSipMediaApplicationRequest) => any;
|
|
3141
|
-
}
|
|
@@ -1,4 +1,40 @@
|
|
|
1
1
|
import { Account, AccountSettings, AlexaForBusinessMetadata, AppInstanceAdminSummary, AppInstanceRetentionSettings, AppInstanceStreamingConfiguration, AppInstanceSummary, AppInstanceUserSummary, Attendee, Bot, BusinessCallingSettings, Capability, ChannelBanSummary, ChannelMembershipForAppInstanceUserSummary, ChannelMembershipSummary, ChannelMembershipType, ChannelMessagePersistenceType, ChannelMessageSummary, ChannelMessageType, ChannelMode, ChannelModeratedByAppInstanceUserSummary, ChannelModeratorSummary, ChannelPrivacy, ChannelSummary, Credential, EmailStatus, EmergencyCallingConfiguration, EngineTranscribeMedicalSettings, EngineTranscribeSettings, EventsConfiguration, InviteStatus, License, MediaCapturePipeline, Meeting, PhoneNumber, PhoneNumberAssociationName, PhoneNumberOrder, PhoneNumberProductType, PhoneNumberStatus, PhoneNumberType, ProxySession, ProxySessionStatus, RetentionSettings, Room, RoomMembership, RoomMembershipRole, SipMediaApplication, SipMediaApplicationCall, SipMediaApplicationEndpoint, SipRule, SipRuleTargetApplication, Tag, User, UserType, VoiceConnector, VoiceConnectorGroup, VoiceConnectorItem, VoiceConnectorSettings } from "./models_0";
|
|
2
|
+
export interface GetRetentionSettingsResponse {
|
|
3
|
+
|
|
4
|
+
RetentionSettings?: RetentionSettings;
|
|
5
|
+
|
|
6
|
+
InitiateDeletionTimestamp?: Date;
|
|
7
|
+
}
|
|
8
|
+
export declare namespace GetRetentionSettingsResponse {
|
|
9
|
+
|
|
10
|
+
const filterSensitiveLog: (obj: GetRetentionSettingsResponse) => any;
|
|
11
|
+
}
|
|
12
|
+
export interface GetRoomRequest {
|
|
13
|
+
|
|
14
|
+
AccountId: string | undefined;
|
|
15
|
+
|
|
16
|
+
RoomId: string | undefined;
|
|
17
|
+
}
|
|
18
|
+
export declare namespace GetRoomRequest {
|
|
19
|
+
|
|
20
|
+
const filterSensitiveLog: (obj: GetRoomRequest) => any;
|
|
21
|
+
}
|
|
22
|
+
export interface GetRoomResponse {
|
|
23
|
+
|
|
24
|
+
Room?: Room;
|
|
25
|
+
}
|
|
26
|
+
export declare namespace GetRoomResponse {
|
|
27
|
+
|
|
28
|
+
const filterSensitiveLog: (obj: GetRoomResponse) => any;
|
|
29
|
+
}
|
|
30
|
+
export interface GetSipMediaApplicationRequest {
|
|
31
|
+
|
|
32
|
+
SipMediaApplicationId: string | undefined;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace GetSipMediaApplicationRequest {
|
|
35
|
+
|
|
36
|
+
const filterSensitiveLog: (obj: GetSipMediaApplicationRequest) => any;
|
|
37
|
+
}
|
|
2
38
|
export interface GetSipMediaApplicationResponse {
|
|
3
39
|
|
|
4
40
|
SipMediaApplication?: SipMediaApplication;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.43.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.43.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.40.0",
|
|
26
26
|
"@aws-sdk/credential-provider-node": "3.41.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.40.0",
|