Class: Aws::Chime::Types::PutVoiceConnectorEmergencyCallingConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::PutVoiceConnectorEmergencyCallingConfigurationRequest
- Defined in:
- gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb
Overview
Note:
When making an API call, you may pass PutVoiceConnectorEmergencyCallingConfigurationRequest data as a hash:
{
voice_connector_id: "NonEmptyString", # required
emergency_calling_configuration: { # required
dnis: [
{
emergency_phone_number: "E164PhoneNumber", # required
test_phone_number: "E164PhoneNumber",
calling_country: "Alpha2CountryCode", # required
},
],
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#emergency_calling_configuration ⇒ Types::EmergencyCallingConfiguration
The emergency calling configuration details.
-
#voice_connector_id ⇒ String
The Amazon Chime Voice Connector ID.
Instance Attribute Details
#emergency_calling_configuration ⇒ Types::EmergencyCallingConfiguration
The emergency calling configuration details.
8268 8269 8270 8271 8272 8273 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 8268 class PutVoiceConnectorEmergencyCallingConfigurationRequest < Struct.new( :voice_connector_id, :emergency_calling_configuration) SENSITIVE = [] include Aws::Structure end |
#voice_connector_id ⇒ String
The Amazon Chime Voice Connector ID.
8268 8269 8270 8271 8272 8273 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 8268 class PutVoiceConnectorEmergencyCallingConfigurationRequest < Struct.new( :voice_connector_id, :emergency_calling_configuration) SENSITIVE = [] include Aws::Structure end |