Class: Aws::ChimeSDKVoice::Types::ValidateE911AddressResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKVoice::Types::ValidateE911AddressResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-chimesdkvoice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#address ⇒ Types::Address
The validated address.
-
#address_external_id ⇒ String
The ID that represents the address.
-
#candidate_address_list ⇒ Array<Types::CandidateAddress>
The list of address suggestions..
-
#validation_result ⇒ Integer
Number indicating the result of address validation.
Instance Attribute Details
#address ⇒ Types::Address
The validated address.
4033 4034 4035 4036 4037 4038 4039 4040 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 4033 class ValidateE911AddressResponse < Struct.new( :validation_result, :address_external_id, :address, :candidate_address_list) SENSITIVE = [] include Aws::Structure end |
#address_external_id ⇒ String
The ID that represents the address.
4033 4034 4035 4036 4037 4038 4039 4040 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 4033 class ValidateE911AddressResponse < Struct.new( :validation_result, :address_external_id, :address, :candidate_address_list) SENSITIVE = [] include Aws::Structure end |
#candidate_address_list ⇒ Array<Types::CandidateAddress>
The list of address suggestions..
4033 4034 4035 4036 4037 4038 4039 4040 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 4033 class ValidateE911AddressResponse < Struct.new( :validation_result, :address_external_id, :address, :candidate_address_list) SENSITIVE = [] include Aws::Structure end |
#validation_result ⇒ Integer
Number indicating the result of address validation.
Each possible result is defined as follows:
-
β0` - Address validation succeeded.
-
β1` - Address validation succeeded. The address was a close enough match and has been corrected as part of the address object.
-
β2` - Address validation failed. You should re-submit the validation request with candidates from the `CandidateAddressList` result, if itβs a close match.
4033 4034 4035 4036 4037 4038 4039 4040 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 4033 class ValidateE911AddressResponse < Struct.new( :validation_result, :address_external_id, :address, :candidate_address_list) SENSITIVE = [] include Aws::Structure end |