Class: Aws::GeoRoutes::Types::LocalizedString
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::LocalizedString
- Defined in:
- gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb
Overview
The localized string.
Constant Summary collapse
- SENSITIVE =
[:value]
Instance Attribute Summary collapse
-
#language ⇒ String
A list of BCP 47 compliant language codes for the results to be rendered in.
-
#value ⇒ String
The value of the localized string.
Instance Attribute Details
#language ⇒ String
A list of BCP 47 compliant language codes for the results to be rendered in. The request uses the regional default as the fallback if the requested language can't be provided.
1952 1953 1954 1955 1956 1957 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 1952 class LocalizedString < Struct.new( :language, :value) SENSITIVE = [:value] include Aws::Structure end |
#value ⇒ String
The value of the localized string.
1952 1953 1954 1955 1956 1957 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 1952 class LocalizedString < Struct.new( :language, :value) SENSITIVE = [:value] include Aws::Structure end |