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.
4046 4047 4048 4049 4050 4051 4052 4053 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 4046 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.
4046 4047 4048 4049 4050 4051 4052 4053 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 4046 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..
4046 4047 4048 4049 4050 4051 4052 4053 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 4046 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.
4046 4047 4048 4049 4050 4051 4052 4053 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 4046 class ValidateE911AddressResponse < Struct.new( :validation_result, :address_external_id, :address, :candidate_address_list) SENSITIVE = [] include Aws::Structure end |