aws-sdk-chime 1.29.1 → 1.30.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.
- checksums.yaml +4 -4
- data/lib/aws-sdk-chime.rb +1 -1
- data/lib/aws-sdk-chime/client.rb +123 -9
- data/lib/aws-sdk-chime/client_api.rb +34 -0
- data/lib/aws-sdk-chime/types.rb +116 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f226b7c38a902a3a1c379f40e2284c17419e5fd714e645c4b56b231b152b47b7
|
4
|
+
data.tar.gz: '08b0817f9d56273edd549d6df8634208fa82b8bc06c577baaddd955bc195d9c8'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38e68ff614aa292b5f49dc16f9b75339ccf35f45fea9290d8a6a6fd5664e0dd9dc686329346c099cb1dbba8f1418853f78835d685f6fe60e2c62966a7814b820
|
7
|
+
data.tar.gz: bb52e6557a15a669c2ea30794f8e9c68206311c476ebe2a232d2bca59135a8bc2bdc9101ed05ab483c7c1d7f53863ffbedf1d527d13e922204b59fd35578e16d
|
data/lib/aws-sdk-chime.rb
CHANGED
data/lib/aws-sdk-chime/client.rb
CHANGED
@@ -933,13 +933,15 @@ module Aws::Chime
|
|
933
933
|
end
|
934
934
|
|
935
935
|
# Creates a new Amazon Chime SDK meeting in the specified media Region
|
936
|
-
# with no initial attendees. For more information about
|
937
|
-
#
|
938
|
-
# Developer Guide*.
|
936
|
+
# with no initial attendees. For more information about specifying media
|
937
|
+
# Regions, see [Amazon Chime SDK Media Regions][1] in the *Amazon Chime
|
938
|
+
# Developer Guide*. For more information about the Amazon Chime SDK, see
|
939
|
+
# [Using the Amazon Chime SDK][2] in the *Amazon Chime Developer Guide*.
|
939
940
|
#
|
940
941
|
#
|
941
942
|
#
|
942
|
-
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-
|
943
|
+
# [1]: https://docs.aws.amazon.com/chime/latest/dg/chime-sdk-meetings-regions.html
|
944
|
+
# [2]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
943
945
|
#
|
944
946
|
# @option params [required, String] :client_request_token
|
945
947
|
# The unique identifier for the client request. Use a different token
|
@@ -955,10 +957,12 @@ module Aws::Chime
|
|
955
957
|
# Reserved.
|
956
958
|
#
|
957
959
|
# @option params [String] :media_region
|
958
|
-
# The Region in which to create the meeting.
|
959
|
-
#
|
960
|
-
#
|
961
|
-
# `
|
960
|
+
# The Region in which to create the meeting. Default: `us-east-1`.
|
961
|
+
#
|
962
|
+
# Available values: `ap-northeast-1`, `ap-southeast-1`,
|
963
|
+
# `ap-southeast-2`, `ca-central-1`, `eu-central-1`, `eu-north-1`,
|
964
|
+
# `eu-west-1`, `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`,
|
965
|
+
# `us-east-2`, `us-west-1`, `us-west-2`.
|
962
966
|
#
|
963
967
|
# @option params [Array<Types::Tag>] :tags
|
964
968
|
# The tag key-value pairs.
|
@@ -1012,6 +1016,116 @@ module Aws::Chime
|
|
1012
1016
|
req.send_request(options)
|
1013
1017
|
end
|
1014
1018
|
|
1019
|
+
# Creates a new Amazon Chime SDK meeting in the specified media Region,
|
1020
|
+
# with attendees. For more information about specifying media Regions,
|
1021
|
+
# see [Amazon Chime SDK Media Regions][1] in the *Amazon Chime Developer
|
1022
|
+
# Guide*. For more information about the Amazon Chime SDK, see [Using
|
1023
|
+
# the Amazon Chime SDK][2] in the *Amazon Chime Developer Guide*.
|
1024
|
+
#
|
1025
|
+
#
|
1026
|
+
#
|
1027
|
+
# [1]: https://docs.aws.amazon.com/chime/latest/dg/chime-sdk-meetings-regions.html
|
1028
|
+
# [2]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
1029
|
+
#
|
1030
|
+
# @option params [required, String] :client_request_token
|
1031
|
+
# The unique identifier for the client request. Use a different token
|
1032
|
+
# for different meetings.
|
1033
|
+
#
|
1034
|
+
# **A suitable default value is auto-generated.** You should normally
|
1035
|
+
# not need to pass this option.**
|
1036
|
+
#
|
1037
|
+
# @option params [String] :external_meeting_id
|
1038
|
+
# The external meeting ID.
|
1039
|
+
#
|
1040
|
+
# @option params [String] :meeting_host_id
|
1041
|
+
# Reserved.
|
1042
|
+
#
|
1043
|
+
# @option params [String] :media_region
|
1044
|
+
# The Region in which to create the meeting. Default: `us-east-1`.
|
1045
|
+
#
|
1046
|
+
# Available values: `ap-northeast-1`, `ap-southeast-1`,
|
1047
|
+
# `ap-southeast-2`, `ca-central-1`, `eu-central-1`, `eu-north-1`,
|
1048
|
+
# `eu-west-1`, `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`,
|
1049
|
+
# `us-east-2`, `us-west-1`, `us-west-2`.
|
1050
|
+
#
|
1051
|
+
# @option params [Array<Types::Tag>] :tags
|
1052
|
+
# The tag key-value pairs.
|
1053
|
+
#
|
1054
|
+
# @option params [Types::MeetingNotificationConfiguration] :notifications_configuration
|
1055
|
+
# The configuration for resource targets to receive notifications when
|
1056
|
+
# Amazon Chime SDK meeting and attendee events occur. The Amazon Chime
|
1057
|
+
# SDK supports resource targets located in the US East (N. Virginia) AWS
|
1058
|
+
# Region (`us-east-1`).
|
1059
|
+
#
|
1060
|
+
# @option params [Array<Types::CreateAttendeeRequestItem>] :attendees
|
1061
|
+
# The request containing the attendees to create.
|
1062
|
+
#
|
1063
|
+
# @return [Types::CreateMeetingWithAttendeesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1064
|
+
#
|
1065
|
+
# * {Types::CreateMeetingWithAttendeesResponse#meeting #meeting} => Types::Meeting
|
1066
|
+
# * {Types::CreateMeetingWithAttendeesResponse#attendees #attendees} => Array<Types::Attendee>
|
1067
|
+
# * {Types::CreateMeetingWithAttendeesResponse#errors #errors} => Array<Types::CreateAttendeeError>
|
1068
|
+
#
|
1069
|
+
# @example Request syntax with placeholder values
|
1070
|
+
#
|
1071
|
+
# resp = client.create_meeting_with_attendees({
|
1072
|
+
# client_request_token: "ClientRequestToken", # required
|
1073
|
+
# external_meeting_id: "ExternalMeetingIdType",
|
1074
|
+
# meeting_host_id: "ExternalUserIdType",
|
1075
|
+
# media_region: "String",
|
1076
|
+
# tags: [
|
1077
|
+
# {
|
1078
|
+
# key: "TagKey", # required
|
1079
|
+
# value: "TagValue", # required
|
1080
|
+
# },
|
1081
|
+
# ],
|
1082
|
+
# notifications_configuration: {
|
1083
|
+
# sns_topic_arn: "Arn",
|
1084
|
+
# sqs_queue_arn: "Arn",
|
1085
|
+
# },
|
1086
|
+
# attendees: [
|
1087
|
+
# {
|
1088
|
+
# external_user_id: "ExternalUserIdType", # required
|
1089
|
+
# tags: [
|
1090
|
+
# {
|
1091
|
+
# key: "TagKey", # required
|
1092
|
+
# value: "TagValue", # required
|
1093
|
+
# },
|
1094
|
+
# ],
|
1095
|
+
# },
|
1096
|
+
# ],
|
1097
|
+
# })
|
1098
|
+
#
|
1099
|
+
# @example Response structure
|
1100
|
+
#
|
1101
|
+
# resp.meeting.meeting_id #=> String
|
1102
|
+
# resp.meeting.external_meeting_id #=> String
|
1103
|
+
# resp.meeting.media_placement.audio_host_url #=> String
|
1104
|
+
# resp.meeting.media_placement.audio_fallback_url #=> String
|
1105
|
+
# resp.meeting.media_placement.screen_data_url #=> String
|
1106
|
+
# resp.meeting.media_placement.screen_sharing_url #=> String
|
1107
|
+
# resp.meeting.media_placement.screen_viewing_url #=> String
|
1108
|
+
# resp.meeting.media_placement.signaling_url #=> String
|
1109
|
+
# resp.meeting.media_placement.turn_control_url #=> String
|
1110
|
+
# resp.meeting.media_region #=> String
|
1111
|
+
# resp.attendees #=> Array
|
1112
|
+
# resp.attendees[0].external_user_id #=> String
|
1113
|
+
# resp.attendees[0].attendee_id #=> String
|
1114
|
+
# resp.attendees[0].join_token #=> String
|
1115
|
+
# resp.errors #=> Array
|
1116
|
+
# resp.errors[0].external_user_id #=> String
|
1117
|
+
# resp.errors[0].error_code #=> String
|
1118
|
+
# resp.errors[0].error_message #=> String
|
1119
|
+
#
|
1120
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMeetingWithAttendees AWS API Documentation
|
1121
|
+
#
|
1122
|
+
# @overload create_meeting_with_attendees(params = {})
|
1123
|
+
# @param [Hash] params ({})
|
1124
|
+
def create_meeting_with_attendees(params = {}, options = {})
|
1125
|
+
req = build_request(:create_meeting_with_attendees, params)
|
1126
|
+
req.send_request(options)
|
1127
|
+
end
|
1128
|
+
|
1015
1129
|
# Creates an order for phone numbers to be provisioned. Choose from
|
1016
1130
|
# Amazon Chime Business Calling and Amazon Chime Voice Connector product
|
1017
1131
|
# types. For toll-free numbers, you must use the Amazon Chime Voice
|
@@ -4985,7 +5099,7 @@ module Aws::Chime
|
|
4985
5099
|
params: params,
|
4986
5100
|
config: config)
|
4987
5101
|
context[:gem_name] = 'aws-sdk-chime'
|
4988
|
-
context[:gem_version] = '1.
|
5102
|
+
context[:gem_version] = '1.30.0'
|
4989
5103
|
Seahorse::Client::Request.new(handlers, context)
|
4990
5104
|
end
|
4991
5105
|
|
@@ -76,6 +76,9 @@ module Aws::Chime
|
|
76
76
|
CreateBotResponse = Shapes::StructureShape.new(name: 'CreateBotResponse')
|
77
77
|
CreateMeetingRequest = Shapes::StructureShape.new(name: 'CreateMeetingRequest')
|
78
78
|
CreateMeetingResponse = Shapes::StructureShape.new(name: 'CreateMeetingResponse')
|
79
|
+
CreateMeetingWithAttendeesRequest = Shapes::StructureShape.new(name: 'CreateMeetingWithAttendeesRequest')
|
80
|
+
CreateMeetingWithAttendeesRequestItemList = Shapes::ListShape.new(name: 'CreateMeetingWithAttendeesRequestItemList')
|
81
|
+
CreateMeetingWithAttendeesResponse = Shapes::StructureShape.new(name: 'CreateMeetingWithAttendeesResponse')
|
79
82
|
CreatePhoneNumberOrderRequest = Shapes::StructureShape.new(name: 'CreatePhoneNumberOrderRequest')
|
80
83
|
CreatePhoneNumberOrderResponse = Shapes::StructureShape.new(name: 'CreatePhoneNumberOrderResponse')
|
81
84
|
CreateProxySessionRequest = Shapes::StructureShape.new(name: 'CreateProxySessionRequest')
|
@@ -581,6 +584,22 @@ module Aws::Chime
|
|
581
584
|
CreateMeetingResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
|
582
585
|
CreateMeetingResponse.struct_class = Types::CreateMeetingResponse
|
583
586
|
|
587
|
+
CreateMeetingWithAttendeesRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
588
|
+
CreateMeetingWithAttendeesRequest.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingIdType, location_name: "ExternalMeetingId"))
|
589
|
+
CreateMeetingWithAttendeesRequest.add_member(:meeting_host_id, Shapes::ShapeRef.new(shape: ExternalUserIdType, location_name: "MeetingHostId"))
|
590
|
+
CreateMeetingWithAttendeesRequest.add_member(:media_region, Shapes::ShapeRef.new(shape: String, location_name: "MediaRegion"))
|
591
|
+
CreateMeetingWithAttendeesRequest.add_member(:tags, Shapes::ShapeRef.new(shape: MeetingTagList, location_name: "Tags"))
|
592
|
+
CreateMeetingWithAttendeesRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: MeetingNotificationConfiguration, location_name: "NotificationsConfiguration"))
|
593
|
+
CreateMeetingWithAttendeesRequest.add_member(:attendees, Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesRequestItemList, location_name: "Attendees"))
|
594
|
+
CreateMeetingWithAttendeesRequest.struct_class = Types::CreateMeetingWithAttendeesRequest
|
595
|
+
|
596
|
+
CreateMeetingWithAttendeesRequestItemList.member = Shapes::ShapeRef.new(shape: CreateAttendeeRequestItem)
|
597
|
+
|
598
|
+
CreateMeetingWithAttendeesResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
|
599
|
+
CreateMeetingWithAttendeesResponse.add_member(:attendees, Shapes::ShapeRef.new(shape: AttendeeList, location_name: "Attendees"))
|
600
|
+
CreateMeetingWithAttendeesResponse.add_member(:errors, Shapes::ShapeRef.new(shape: BatchCreateAttendeeErrorList, location_name: "Errors"))
|
601
|
+
CreateMeetingWithAttendeesResponse.struct_class = Types::CreateMeetingWithAttendeesResponse
|
602
|
+
|
584
603
|
CreatePhoneNumberOrderRequest.add_member(:product_type, Shapes::ShapeRef.new(shape: PhoneNumberProductType, required: true, location_name: "ProductType"))
|
585
604
|
CreatePhoneNumberOrderRequest.add_member(:e164_phone_numbers, Shapes::ShapeRef.new(shape: E164PhoneNumberList, required: true, location_name: "E164PhoneNumbers"))
|
586
605
|
CreatePhoneNumberOrderRequest.struct_class = Types::CreatePhoneNumberOrderRequest
|
@@ -1838,6 +1857,21 @@ module Aws::Chime
|
|
1838
1857
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
1839
1858
|
end)
|
1840
1859
|
|
1860
|
+
api.add_operation(:create_meeting_with_attendees, Seahorse::Model::Operation.new.tap do |o|
|
1861
|
+
o.name = "CreateMeetingWithAttendees"
|
1862
|
+
o.http_method = "POST"
|
1863
|
+
o.http_request_uri = "/meetings?operation=create-attendees"
|
1864
|
+
o.input = Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesRequest)
|
1865
|
+
o.output = Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesResponse)
|
1866
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1867
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1868
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
1869
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
1870
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
1871
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1872
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
1873
|
+
end)
|
1874
|
+
|
1841
1875
|
api.add_operation(:create_phone_number_order, Seahorse::Model::Operation.new.tap do |o|
|
1842
1876
|
o.name = "CreatePhoneNumberOrder"
|
1843
1877
|
o.http_method = "POST"
|
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -971,11 +971,12 @@ module Aws::Chime
|
|
971
971
|
# @return [String]
|
972
972
|
#
|
973
973
|
# @!attribute [rw] media_region
|
974
|
-
# The Region in which to create the meeting.
|
975
|
-
#
|
976
|
-
#
|
977
|
-
# `
|
978
|
-
# `
|
974
|
+
# The Region in which to create the meeting. Default: `us-east-1`.
|
975
|
+
#
|
976
|
+
# Available values: `ap-northeast-1`, `ap-southeast-1`,
|
977
|
+
# `ap-southeast-2`, `ca-central-1`, `eu-central-1`, `eu-north-1`,
|
978
|
+
# `eu-west-1`, `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`,
|
979
|
+
# `us-east-2`, `us-west-1`, `us-west-2`.
|
979
980
|
# @return [String]
|
980
981
|
#
|
981
982
|
# @!attribute [rw] tags
|
@@ -1011,6 +1012,113 @@ module Aws::Chime
|
|
1011
1012
|
include Aws::Structure
|
1012
1013
|
end
|
1013
1014
|
|
1015
|
+
# @note When making an API call, you may pass CreateMeetingWithAttendeesRequest
|
1016
|
+
# data as a hash:
|
1017
|
+
#
|
1018
|
+
# {
|
1019
|
+
# client_request_token: "ClientRequestToken", # required
|
1020
|
+
# external_meeting_id: "ExternalMeetingIdType",
|
1021
|
+
# meeting_host_id: "ExternalUserIdType",
|
1022
|
+
# media_region: "String",
|
1023
|
+
# tags: [
|
1024
|
+
# {
|
1025
|
+
# key: "TagKey", # required
|
1026
|
+
# value: "TagValue", # required
|
1027
|
+
# },
|
1028
|
+
# ],
|
1029
|
+
# notifications_configuration: {
|
1030
|
+
# sns_topic_arn: "Arn",
|
1031
|
+
# sqs_queue_arn: "Arn",
|
1032
|
+
# },
|
1033
|
+
# attendees: [
|
1034
|
+
# {
|
1035
|
+
# external_user_id: "ExternalUserIdType", # required
|
1036
|
+
# tags: [
|
1037
|
+
# {
|
1038
|
+
# key: "TagKey", # required
|
1039
|
+
# value: "TagValue", # required
|
1040
|
+
# },
|
1041
|
+
# ],
|
1042
|
+
# },
|
1043
|
+
# ],
|
1044
|
+
# }
|
1045
|
+
#
|
1046
|
+
# @!attribute [rw] client_request_token
|
1047
|
+
# The unique identifier for the client request. Use a different token
|
1048
|
+
# for different meetings.
|
1049
|
+
#
|
1050
|
+
# **A suitable default value is auto-generated.** You should normally
|
1051
|
+
# not need to pass this option.
|
1052
|
+
# @return [String]
|
1053
|
+
#
|
1054
|
+
# @!attribute [rw] external_meeting_id
|
1055
|
+
# The external meeting ID.
|
1056
|
+
# @return [String]
|
1057
|
+
#
|
1058
|
+
# @!attribute [rw] meeting_host_id
|
1059
|
+
# Reserved.
|
1060
|
+
# @return [String]
|
1061
|
+
#
|
1062
|
+
# @!attribute [rw] media_region
|
1063
|
+
# The Region in which to create the meeting. Default: `us-east-1`.
|
1064
|
+
#
|
1065
|
+
# Available values: `ap-northeast-1`, `ap-southeast-1`,
|
1066
|
+
# `ap-southeast-2`, `ca-central-1`, `eu-central-1`, `eu-north-1`,
|
1067
|
+
# `eu-west-1`, `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`,
|
1068
|
+
# `us-east-2`, `us-west-1`, `us-west-2`.
|
1069
|
+
# @return [String]
|
1070
|
+
#
|
1071
|
+
# @!attribute [rw] tags
|
1072
|
+
# The tag key-value pairs.
|
1073
|
+
# @return [Array<Types::Tag>]
|
1074
|
+
#
|
1075
|
+
# @!attribute [rw] notifications_configuration
|
1076
|
+
# The configuration for resource targets to receive notifications when
|
1077
|
+
# Amazon Chime SDK meeting and attendee events occur. The Amazon Chime
|
1078
|
+
# SDK supports resource targets located in the US East (N. Virginia)
|
1079
|
+
# AWS Region (`us-east-1`).
|
1080
|
+
# @return [Types::MeetingNotificationConfiguration]
|
1081
|
+
#
|
1082
|
+
# @!attribute [rw] attendees
|
1083
|
+
# The request containing the attendees to create.
|
1084
|
+
# @return [Array<Types::CreateAttendeeRequestItem>]
|
1085
|
+
#
|
1086
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMeetingWithAttendeesRequest AWS API Documentation
|
1087
|
+
#
|
1088
|
+
class CreateMeetingWithAttendeesRequest < Struct.new(
|
1089
|
+
:client_request_token,
|
1090
|
+
:external_meeting_id,
|
1091
|
+
:meeting_host_id,
|
1092
|
+
:media_region,
|
1093
|
+
:tags,
|
1094
|
+
:notifications_configuration,
|
1095
|
+
:attendees)
|
1096
|
+
include Aws::Structure
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
# @!attribute [rw] meeting
|
1100
|
+
# A meeting created using the Amazon Chime SDK.
|
1101
|
+
# @return [Types::Meeting]
|
1102
|
+
#
|
1103
|
+
# @!attribute [rw] attendees
|
1104
|
+
# The attendee information, including attendees IDs and join tokens.
|
1105
|
+
# @return [Array<Types::Attendee>]
|
1106
|
+
#
|
1107
|
+
# @!attribute [rw] errors
|
1108
|
+
# If the action fails for one or more of the attendees in the request,
|
1109
|
+
# a list of the attendees is returned, along with error codes and
|
1110
|
+
# error messages.
|
1111
|
+
# @return [Array<Types::CreateAttendeeError>]
|
1112
|
+
#
|
1113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMeetingWithAttendeesResponse AWS API Documentation
|
1114
|
+
#
|
1115
|
+
class CreateMeetingWithAttendeesResponse < Struct.new(
|
1116
|
+
:meeting,
|
1117
|
+
:attendees,
|
1118
|
+
:errors)
|
1119
|
+
include Aws::Structure
|
1120
|
+
end
|
1121
|
+
|
1014
1122
|
# @note When making an API call, you may pass CreatePhoneNumberOrderRequest
|
1015
1123
|
# data as a hash:
|
1016
1124
|
#
|
@@ -3482,7 +3590,9 @@ module Aws::Chime
|
|
3482
3590
|
end
|
3483
3591
|
|
3484
3592
|
# The configuration for resource targets to receive notifications when
|
3485
|
-
# Amazon Chime SDK meeting and attendee events occur.
|
3593
|
+
# Amazon Chime SDK meeting and attendee events occur. The Amazon Chime
|
3594
|
+
# SDK supports resource targets located in the US East (N. Virginia) AWS
|
3595
|
+
# Region (`us-east-1`).
|
3486
3596
|
#
|
3487
3597
|
# @note When making an API call, you may pass MeetingNotificationConfiguration
|
3488
3598
|
# data as a hash:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-chime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|