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.
3905 3906 3907 3908 3909 3910 3911 3912 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 3905 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.
3905 3906 3907 3908 3909 3910 3911 3912 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 3905 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..
3905 3906 3907 3908 3909 3910 3911 3912 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 3905 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.
3905 3906 3907 3908 3909 3910 3911 3912 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 3905 class ValidateE911AddressResponse < Struct.new( :validation_result, :address_external_id, :address, :candidate_address_list) SENSITIVE = [] include Aws::Structure end |