aws-sdk-chime 1.67.0 → 1.68.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chime/client.rb +80 -2
- data/lib/aws-sdk-chime/client_api.rb +60 -0
- data/lib/aws-sdk-chime/types.rb +193 -3
- data/lib/aws-sdk-chime.rb +1 -1
- 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: 6c3bed7f84d504cc53ae7e74a8ec261538129167d321200586cfdbc8f65e106f
|
4
|
+
data.tar.gz: bb776a14427dcf1c93f6bee716b79eddfcc2f813aec08bfefbc5283f531adb7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45520c7117de5f8cdedcc6f2a1b3af21b070f0195ad3e126c795435bfe63531aba97cbfb2243b286531b81798888bc16766031994fa28f909f4f783974faa8ab
|
7
|
+
data.tar.gz: f571fc3c7c715304c4c9db22e9a2b1789b6486084de9d07418d8c123b42aeb8eb07e7a817be08231911551a4fda2978e8d61bd19185690f226ecdd5e02afe099
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.68.0 (2022-07-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Chime VoiceConnector will now support ValidateE911Address which will allow customers to prevalidate their addresses included in their SIP invites for emergency calling
|
8
|
+
|
4
9
|
1.67.0 (2022-03-11)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.68.0
|
data/lib/aws-sdk-chime/client.rb
CHANGED
@@ -6776,7 +6776,7 @@ module Aws::Chime
|
|
6776
6776
|
|
6777
6777
|
# Adds a streaming configuration for the specified Amazon Chime Voice
|
6778
6778
|
# Connector. The streaming configuration specifies whether media
|
6779
|
-
# streaming is enabled for sending to
|
6779
|
+
# streaming is enabled for sending to Kinesis. It also sets the
|
6780
6780
|
# retention period, in hours, for the Amazon Kinesis data.
|
6781
6781
|
#
|
6782
6782
|
# @option params [required, String] :voice_connector_id
|
@@ -8492,6 +8492,84 @@ module Aws::Chime
|
|
8492
8492
|
req.send_request(options)
|
8493
8493
|
end
|
8494
8494
|
|
8495
|
+
# Validates an address to be used for 911 calls made with Amazon Chime
|
8496
|
+
# Voice Connectors. You can use validated addresses in a Presence
|
8497
|
+
# Information Data Format Location Object file that you include in SIP
|
8498
|
+
# requests. That helps ensure that addresses are routed to the
|
8499
|
+
# appropriate Public Safety Answering Point.
|
8500
|
+
#
|
8501
|
+
# @option params [required, String] :aws_account_id
|
8502
|
+
# The AWS account ID.
|
8503
|
+
#
|
8504
|
+
# @option params [required, String] :street_number
|
8505
|
+
# The address street number, such as `200` or `2121`.
|
8506
|
+
#
|
8507
|
+
# @option params [required, String] :street_info
|
8508
|
+
# The address street information, such as `8th Avenue`.
|
8509
|
+
#
|
8510
|
+
# @option params [required, String] :city
|
8511
|
+
# The address city, such as `Portland`.
|
8512
|
+
#
|
8513
|
+
# @option params [required, String] :state
|
8514
|
+
# The address state, such as `ME`.
|
8515
|
+
#
|
8516
|
+
# @option params [required, String] :country
|
8517
|
+
# The address country, such as `US`.
|
8518
|
+
#
|
8519
|
+
# @option params [required, String] :postal_code
|
8520
|
+
# The address postal code, such as `04352`.
|
8521
|
+
#
|
8522
|
+
# @return [Types::ValidateE911AddressResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8523
|
+
#
|
8524
|
+
# * {Types::ValidateE911AddressResponse#validation_result #validation_result} => Integer
|
8525
|
+
# * {Types::ValidateE911AddressResponse#address_external_id #address_external_id} => String
|
8526
|
+
# * {Types::ValidateE911AddressResponse#address #address} => Types::Address
|
8527
|
+
# * {Types::ValidateE911AddressResponse#candidate_address_list #candidate_address_list} => Array<Types::CandidateAddress>
|
8528
|
+
#
|
8529
|
+
# @example Request syntax with placeholder values
|
8530
|
+
#
|
8531
|
+
# resp = client.validate_e911_address({
|
8532
|
+
# aws_account_id: "NonEmptyString", # required
|
8533
|
+
# street_number: "SensitiveNonEmptyString", # required
|
8534
|
+
# street_info: "SensitiveNonEmptyString", # required
|
8535
|
+
# city: "SensitiveNonEmptyString", # required
|
8536
|
+
# state: "SensitiveNonEmptyString", # required
|
8537
|
+
# country: "SensitiveNonEmptyString", # required
|
8538
|
+
# postal_code: "SensitiveNonEmptyString", # required
|
8539
|
+
# })
|
8540
|
+
#
|
8541
|
+
# @example Response structure
|
8542
|
+
#
|
8543
|
+
# resp.validation_result #=> Integer
|
8544
|
+
# resp.address_external_id #=> String
|
8545
|
+
# resp.address.street_name #=> String
|
8546
|
+
# resp.address.street_suffix #=> String
|
8547
|
+
# resp.address.post_directional #=> String
|
8548
|
+
# resp.address.pre_directional #=> String
|
8549
|
+
# resp.address.street_number #=> String
|
8550
|
+
# resp.address.city #=> String
|
8551
|
+
# resp.address.state #=> String
|
8552
|
+
# resp.address.postal_code #=> String
|
8553
|
+
# resp.address.postal_code_plus_4 #=> String
|
8554
|
+
# resp.address.country #=> String
|
8555
|
+
# resp.candidate_address_list #=> Array
|
8556
|
+
# resp.candidate_address_list[0].street_info #=> String
|
8557
|
+
# resp.candidate_address_list[0].street_number #=> String
|
8558
|
+
# resp.candidate_address_list[0].city #=> String
|
8559
|
+
# resp.candidate_address_list[0].state #=> String
|
8560
|
+
# resp.candidate_address_list[0].postal_code #=> String
|
8561
|
+
# resp.candidate_address_list[0].postal_code_plus_4 #=> String
|
8562
|
+
# resp.candidate_address_list[0].country #=> String
|
8563
|
+
#
|
8564
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ValidateE911Address AWS API Documentation
|
8565
|
+
#
|
8566
|
+
# @overload validate_e911_address(params = {})
|
8567
|
+
# @param [Hash] params ({})
|
8568
|
+
def validate_e911_address(params = {}, options = {})
|
8569
|
+
req = build_request(:validate_e911_address, params)
|
8570
|
+
req.send_request(options)
|
8571
|
+
end
|
8572
|
+
|
8495
8573
|
# @!endgroup
|
8496
8574
|
|
8497
8575
|
# @param params ({})
|
@@ -8505,7 +8583,7 @@ module Aws::Chime
|
|
8505
8583
|
params: params,
|
8506
8584
|
config: config)
|
8507
8585
|
context[:gem_name] = 'aws-sdk-chime'
|
8508
|
-
context[:gem_version] = '1.
|
8586
|
+
context[:gem_version] = '1.68.0'
|
8509
8587
|
Seahorse::Client::Request.new(handlers, context)
|
8510
8588
|
end
|
8511
8589
|
|
@@ -20,6 +20,7 @@ module Aws::Chime
|
|
20
20
|
AccountSettings = Shapes::StructureShape.new(name: 'AccountSettings')
|
21
21
|
AccountStatus = Shapes::StringShape.new(name: 'AccountStatus')
|
22
22
|
AccountType = Shapes::StringShape.new(name: 'AccountType')
|
23
|
+
Address = Shapes::StructureShape.new(name: 'Address')
|
23
24
|
AlexaForBusinessMetadata = Shapes::StructureShape.new(name: 'AlexaForBusinessMetadata')
|
24
25
|
Alpha2CountryCode = Shapes::StringShape.new(name: 'Alpha2CountryCode')
|
25
26
|
AppInstance = Shapes::StructureShape.new(name: 'AppInstance')
|
@@ -85,6 +86,8 @@ module Aws::Chime
|
|
85
86
|
CallingNameStatus = Shapes::StringShape.new(name: 'CallingNameStatus')
|
86
87
|
CallingRegion = Shapes::StringShape.new(name: 'CallingRegion')
|
87
88
|
CallingRegionList = Shapes::ListShape.new(name: 'CallingRegionList')
|
89
|
+
CandidateAddress = Shapes::StructureShape.new(name: 'CandidateAddress')
|
90
|
+
CandidateAddressList = Shapes::ListShape.new(name: 'CandidateAddressList')
|
88
91
|
Capability = Shapes::StringShape.new(name: 'Capability')
|
89
92
|
CapabilityList = Shapes::ListShape.new(name: 'CapabilityList')
|
90
93
|
Channel = Shapes::StructureShape.new(name: 'Channel')
|
@@ -514,6 +517,7 @@ module Aws::Chime
|
|
514
517
|
SelectedVideoStreams = Shapes::StructureShape.new(name: 'SelectedVideoStreams')
|
515
518
|
SendChannelMessageRequest = Shapes::StructureShape.new(name: 'SendChannelMessageRequest')
|
516
519
|
SendChannelMessageResponse = Shapes::StructureShape.new(name: 'SendChannelMessageResponse')
|
520
|
+
SensitiveNonEmptyString = Shapes::StringShape.new(name: 'SensitiveNonEmptyString')
|
517
521
|
SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
|
518
522
|
SensitiveStringList = Shapes::ListShape.new(name: 'SensitiveStringList')
|
519
523
|
ServiceFailureException = Shapes::StructureShape.new(name: 'ServiceFailureException')
|
@@ -635,6 +639,9 @@ module Aws::Chime
|
|
635
639
|
UserName = Shapes::StringShape.new(name: 'UserName')
|
636
640
|
UserSettings = Shapes::StructureShape.new(name: 'UserSettings')
|
637
641
|
UserType = Shapes::StringShape.new(name: 'UserType')
|
642
|
+
ValidateE911AddressRequest = Shapes::StructureShape.new(name: 'ValidateE911AddressRequest')
|
643
|
+
ValidateE911AddressResponse = Shapes::StructureShape.new(name: 'ValidateE911AddressResponse')
|
644
|
+
ValidationResult = Shapes::IntegerShape.new(name: 'ValidationResult')
|
638
645
|
VideoArtifactsConfiguration = Shapes::StructureShape.new(name: 'VideoArtifactsConfiguration')
|
639
646
|
VideoMuxType = Shapes::StringShape.new(name: 'VideoMuxType')
|
640
647
|
VoiceConnector = Shapes::StructureShape.new(name: 'VoiceConnector')
|
@@ -670,6 +677,18 @@ module Aws::Chime
|
|
670
677
|
AccountSettings.add_member(:enable_dial_out, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableDialOut"))
|
671
678
|
AccountSettings.struct_class = Types::AccountSettings
|
672
679
|
|
680
|
+
Address.add_member(:street_name, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "streetName"))
|
681
|
+
Address.add_member(:street_suffix, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "streetSuffix"))
|
682
|
+
Address.add_member(:post_directional, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "postDirectional"))
|
683
|
+
Address.add_member(:pre_directional, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "preDirectional"))
|
684
|
+
Address.add_member(:street_number, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "streetNumber"))
|
685
|
+
Address.add_member(:city, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "city"))
|
686
|
+
Address.add_member(:state, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "state"))
|
687
|
+
Address.add_member(:postal_code, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "postalCode"))
|
688
|
+
Address.add_member(:postal_code_plus_4, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "postalCodePlus4"))
|
689
|
+
Address.add_member(:country, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "country"))
|
690
|
+
Address.struct_class = Types::Address
|
691
|
+
|
673
692
|
AlexaForBusinessMetadata.add_member(:is_alexa_for_business_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsAlexaForBusinessEnabled"))
|
674
693
|
AlexaForBusinessMetadata.add_member(:alexa_for_business_room_arn, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "AlexaForBusinessRoomArn"))
|
675
694
|
AlexaForBusinessMetadata.struct_class = Types::AlexaForBusinessMetadata
|
@@ -871,6 +890,17 @@ module Aws::Chime
|
|
871
890
|
|
872
891
|
CallingRegionList.member = Shapes::ShapeRef.new(shape: CallingRegion)
|
873
892
|
|
893
|
+
CandidateAddress.add_member(:street_info, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "streetInfo"))
|
894
|
+
CandidateAddress.add_member(:street_number, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "streetNumber"))
|
895
|
+
CandidateAddress.add_member(:city, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "city"))
|
896
|
+
CandidateAddress.add_member(:state, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "state"))
|
897
|
+
CandidateAddress.add_member(:postal_code, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "postalCode"))
|
898
|
+
CandidateAddress.add_member(:postal_code_plus_4, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "postalCodePlus4"))
|
899
|
+
CandidateAddress.add_member(:country, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, location_name: "country"))
|
900
|
+
CandidateAddress.struct_class = Types::CandidateAddress
|
901
|
+
|
902
|
+
CandidateAddressList.member = Shapes::ShapeRef.new(shape: CandidateAddress)
|
903
|
+
|
874
904
|
CapabilityList.member = Shapes::ShapeRef.new(shape: Capability)
|
875
905
|
|
876
906
|
Channel.add_member(:name, Shapes::ShapeRef.new(shape: NonEmptyResourceName, location_name: "Name"))
|
@@ -2711,6 +2741,21 @@ module Aws::Chime
|
|
2711
2741
|
UserSettings.add_member(:telephony, Shapes::ShapeRef.new(shape: TelephonySettings, required: true, location_name: "Telephony"))
|
2712
2742
|
UserSettings.struct_class = Types::UserSettings
|
2713
2743
|
|
2744
|
+
ValidateE911AddressRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "AwsAccountId"))
|
2745
|
+
ValidateE911AddressRequest.add_member(:street_number, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "StreetNumber"))
|
2746
|
+
ValidateE911AddressRequest.add_member(:street_info, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "StreetInfo"))
|
2747
|
+
ValidateE911AddressRequest.add_member(:city, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "City"))
|
2748
|
+
ValidateE911AddressRequest.add_member(:state, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "State"))
|
2749
|
+
ValidateE911AddressRequest.add_member(:country, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "Country"))
|
2750
|
+
ValidateE911AddressRequest.add_member(:postal_code, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "PostalCode"))
|
2751
|
+
ValidateE911AddressRequest.struct_class = Types::ValidateE911AddressRequest
|
2752
|
+
|
2753
|
+
ValidateE911AddressResponse.add_member(:validation_result, Shapes::ShapeRef.new(shape: ValidationResult, location_name: "ValidationResult"))
|
2754
|
+
ValidateE911AddressResponse.add_member(:address_external_id, Shapes::ShapeRef.new(shape: String, location_name: "AddressExternalId"))
|
2755
|
+
ValidateE911AddressResponse.add_member(:address, Shapes::ShapeRef.new(shape: Address, location_name: "Address"))
|
2756
|
+
ValidateE911AddressResponse.add_member(:candidate_address_list, Shapes::ShapeRef.new(shape: CandidateAddressList, location_name: "CandidateAddressList"))
|
2757
|
+
ValidateE911AddressResponse.struct_class = Types::ValidateE911AddressResponse
|
2758
|
+
|
2714
2759
|
VideoArtifactsConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: ArtifactsState, required: true, location_name: "State"))
|
2715
2760
|
VideoArtifactsConfiguration.add_member(:mux_type, Shapes::ShapeRef.new(shape: VideoMuxType, location_name: "MuxType"))
|
2716
2761
|
VideoArtifactsConfiguration.struct_class = Types::VideoArtifactsConfiguration
|
@@ -5912,6 +5957,21 @@ module Aws::Chime
|
|
5912
5957
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
5913
5958
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
5914
5959
|
end)
|
5960
|
+
|
5961
|
+
api.add_operation(:validate_e911_address, Seahorse::Model::Operation.new.tap do |o|
|
5962
|
+
o.name = "ValidateE911Address"
|
5963
|
+
o.http_method = "POST"
|
5964
|
+
o.http_request_uri = "/emergency-calling/address"
|
5965
|
+
o.input = Shapes::ShapeRef.new(shape: ValidateE911AddressRequest)
|
5966
|
+
o.output = Shapes::ShapeRef.new(shape: ValidateE911AddressResponse)
|
5967
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
5968
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5969
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
5970
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
5971
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
5972
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
5973
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
5974
|
+
end)
|
5915
5975
|
end
|
5916
5976
|
|
5917
5977
|
end
|
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -130,6 +130,66 @@ module Aws::Chime
|
|
130
130
|
include Aws::Structure
|
131
131
|
end
|
132
132
|
|
133
|
+
# A validated address.
|
134
|
+
#
|
135
|
+
# @!attribute [rw] street_name
|
136
|
+
# The address street, such as `8th Avenue`.
|
137
|
+
# @return [String]
|
138
|
+
#
|
139
|
+
# @!attribute [rw] street_suffix
|
140
|
+
# The address suffix, such as the `N` in `8th Avenue N`.
|
141
|
+
# @return [String]
|
142
|
+
#
|
143
|
+
# @!attribute [rw] post_directional
|
144
|
+
# An address suffix location, such as the `S. Unit A` in `Central Park
|
145
|
+
# S. Unit A`.
|
146
|
+
# @return [String]
|
147
|
+
#
|
148
|
+
# @!attribute [rw] pre_directional
|
149
|
+
# An address prefix location, such as the `N` in `N. Third St.`.
|
150
|
+
# @return [String]
|
151
|
+
#
|
152
|
+
# @!attribute [rw] street_number
|
153
|
+
# The numeric portion of an address.
|
154
|
+
# @return [String]
|
155
|
+
#
|
156
|
+
# @!attribute [rw] city
|
157
|
+
# The city of an address.
|
158
|
+
# @return [String]
|
159
|
+
#
|
160
|
+
# @!attribute [rw] state
|
161
|
+
# The state of an address.
|
162
|
+
# @return [String]
|
163
|
+
#
|
164
|
+
# @!attribute [rw] postal_code
|
165
|
+
# The postal code of an address.
|
166
|
+
# @return [String]
|
167
|
+
#
|
168
|
+
# @!attribute [rw] postal_code_plus_4
|
169
|
+
# The Zip + 4 or postal code + 4 of an address.
|
170
|
+
# @return [String]
|
171
|
+
#
|
172
|
+
# @!attribute [rw] country
|
173
|
+
# The country of an address.
|
174
|
+
# @return [String]
|
175
|
+
#
|
176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/Address AWS API Documentation
|
177
|
+
#
|
178
|
+
class Address < Struct.new(
|
179
|
+
:street_name,
|
180
|
+
:street_suffix,
|
181
|
+
:post_directional,
|
182
|
+
:pre_directional,
|
183
|
+
:street_number,
|
184
|
+
:city,
|
185
|
+
:state,
|
186
|
+
:postal_code,
|
187
|
+
:postal_code_plus_4,
|
188
|
+
:country)
|
189
|
+
SENSITIVE = [:street_name, :street_suffix, :post_directional, :pre_directional, :street_number, :city, :state, :postal_code, :postal_code_plus_4, :country]
|
190
|
+
include Aws::Structure
|
191
|
+
end
|
192
|
+
|
133
193
|
# The Alexa for Business metadata associated with an Amazon Chime user,
|
134
194
|
# used to integrate Alexa for Business with a device.
|
135
195
|
#
|
@@ -1156,6 +1216,50 @@ module Aws::Chime
|
|
1156
1216
|
include Aws::Structure
|
1157
1217
|
end
|
1158
1218
|
|
1219
|
+
# A suggested address.
|
1220
|
+
#
|
1221
|
+
# @!attribute [rw] street_info
|
1222
|
+
# The street information of a candidate address
|
1223
|
+
# @return [String]
|
1224
|
+
#
|
1225
|
+
# @!attribute [rw] street_number
|
1226
|
+
# The numeric portion of a candidate address.
|
1227
|
+
# @return [String]
|
1228
|
+
#
|
1229
|
+
# @!attribute [rw] city
|
1230
|
+
# The city of a candidate address.
|
1231
|
+
# @return [String]
|
1232
|
+
#
|
1233
|
+
# @!attribute [rw] state
|
1234
|
+
# The state of a candidate address.
|
1235
|
+
# @return [String]
|
1236
|
+
#
|
1237
|
+
# @!attribute [rw] postal_code
|
1238
|
+
# The postal code of a candidate address.
|
1239
|
+
# @return [String]
|
1240
|
+
#
|
1241
|
+
# @!attribute [rw] postal_code_plus_4
|
1242
|
+
# The Zip + 4 or postal code + 4 of a candidate address.
|
1243
|
+
# @return [String]
|
1244
|
+
#
|
1245
|
+
# @!attribute [rw] country
|
1246
|
+
# The country of a candidate address.
|
1247
|
+
# @return [String]
|
1248
|
+
#
|
1249
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CandidateAddress AWS API Documentation
|
1250
|
+
#
|
1251
|
+
class CandidateAddress < Struct.new(
|
1252
|
+
:street_info,
|
1253
|
+
:street_number,
|
1254
|
+
:city,
|
1255
|
+
:state,
|
1256
|
+
:postal_code,
|
1257
|
+
:postal_code_plus_4,
|
1258
|
+
:country)
|
1259
|
+
SENSITIVE = [:street_info, :street_number, :city, :state, :postal_code, :postal_code_plus_4, :country]
|
1260
|
+
include Aws::Structure
|
1261
|
+
end
|
1262
|
+
|
1159
1263
|
# The details of a channel.
|
1160
1264
|
#
|
1161
1265
|
# @!attribute [rw] name
|
@@ -7196,12 +7300,13 @@ module Aws::Chime
|
|
7196
7300
|
# }
|
7197
7301
|
#
|
7198
7302
|
# @!attribute [rw] enable_sip_logs
|
7199
|
-
#
|
7303
|
+
# When true, enables SIP message logs for sending to Amazon CloudWatch
|
7304
|
+
# Logs.
|
7200
7305
|
# @return [Boolean]
|
7201
7306
|
#
|
7202
7307
|
# @!attribute [rw] enable_media_metric_logs
|
7203
|
-
# Boolean that enables logging of
|
7204
|
-
#
|
7308
|
+
# Boolean that enables the logging of Voice Connector metrics to
|
7309
|
+
# Cloudwatch.
|
7205
7310
|
# @return [Boolean]
|
7206
7311
|
#
|
7207
7312
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/LoggingConfiguration AWS API Documentation
|
@@ -11056,6 +11161,91 @@ module Aws::Chime
|
|
11056
11161
|
include Aws::Structure
|
11057
11162
|
end
|
11058
11163
|
|
11164
|
+
# @note When making an API call, you may pass ValidateE911AddressRequest
|
11165
|
+
# data as a hash:
|
11166
|
+
#
|
11167
|
+
# {
|
11168
|
+
# aws_account_id: "NonEmptyString", # required
|
11169
|
+
# street_number: "SensitiveNonEmptyString", # required
|
11170
|
+
# street_info: "SensitiveNonEmptyString", # required
|
11171
|
+
# city: "SensitiveNonEmptyString", # required
|
11172
|
+
# state: "SensitiveNonEmptyString", # required
|
11173
|
+
# country: "SensitiveNonEmptyString", # required
|
11174
|
+
# postal_code: "SensitiveNonEmptyString", # required
|
11175
|
+
# }
|
11176
|
+
#
|
11177
|
+
# @!attribute [rw] aws_account_id
|
11178
|
+
# The AWS account ID.
|
11179
|
+
# @return [String]
|
11180
|
+
#
|
11181
|
+
# @!attribute [rw] street_number
|
11182
|
+
# The address street number, such as `200` or `2121`.
|
11183
|
+
# @return [String]
|
11184
|
+
#
|
11185
|
+
# @!attribute [rw] street_info
|
11186
|
+
# The address street information, such as `8th Avenue`.
|
11187
|
+
# @return [String]
|
11188
|
+
#
|
11189
|
+
# @!attribute [rw] city
|
11190
|
+
# The address city, such as `Portland`.
|
11191
|
+
# @return [String]
|
11192
|
+
#
|
11193
|
+
# @!attribute [rw] state
|
11194
|
+
# The address state, such as `ME`.
|
11195
|
+
# @return [String]
|
11196
|
+
#
|
11197
|
+
# @!attribute [rw] country
|
11198
|
+
# The address country, such as `US`.
|
11199
|
+
# @return [String]
|
11200
|
+
#
|
11201
|
+
# @!attribute [rw] postal_code
|
11202
|
+
# The address postal code, such as `04352`.
|
11203
|
+
# @return [String]
|
11204
|
+
#
|
11205
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ValidateE911AddressRequest AWS API Documentation
|
11206
|
+
#
|
11207
|
+
class ValidateE911AddressRequest < Struct.new(
|
11208
|
+
:aws_account_id,
|
11209
|
+
:street_number,
|
11210
|
+
:street_info,
|
11211
|
+
:city,
|
11212
|
+
:state,
|
11213
|
+
:country,
|
11214
|
+
:postal_code)
|
11215
|
+
SENSITIVE = [:street_number, :street_info, :city, :state, :country, :postal_code]
|
11216
|
+
include Aws::Structure
|
11217
|
+
end
|
11218
|
+
|
11219
|
+
# @!attribute [rw] validation_result
|
11220
|
+
# Number indicating the result of address validation. `0` means the
|
11221
|
+
# address was perfect as is and successfully validated. `1` means the
|
11222
|
+
# address was corrected. `2` means the address sent was not close
|
11223
|
+
# enough and was not validated.
|
11224
|
+
# @return [Integer]
|
11225
|
+
#
|
11226
|
+
# @!attribute [rw] address_external_id
|
11227
|
+
# The ID that represents the address.
|
11228
|
+
# @return [String]
|
11229
|
+
#
|
11230
|
+
# @!attribute [rw] address
|
11231
|
+
# The validated address.
|
11232
|
+
# @return [Types::Address]
|
11233
|
+
#
|
11234
|
+
# @!attribute [rw] candidate_address_list
|
11235
|
+
# The list of address suggestions.
|
11236
|
+
# @return [Array<Types::CandidateAddress>]
|
11237
|
+
#
|
11238
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ValidateE911AddressResponse AWS API Documentation
|
11239
|
+
#
|
11240
|
+
class ValidateE911AddressResponse < Struct.new(
|
11241
|
+
:validation_result,
|
11242
|
+
:address_external_id,
|
11243
|
+
:address,
|
11244
|
+
:candidate_address_list)
|
11245
|
+
SENSITIVE = []
|
11246
|
+
include Aws::Structure
|
11247
|
+
end
|
11248
|
+
|
11059
11249
|
# The video artifact configuration object.
|
11060
11250
|
#
|
11061
11251
|
# @note When making an API call, you may pass VideoArtifactsConfiguration
|
data/lib/aws-sdk-chime.rb
CHANGED
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.68.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: 2022-
|
11
|
+
date: 2022-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|