Skip to content

Commit 50bf029

Browse files
Update SDK models
1 parent 83f79dc commit 50bf029

File tree

184 files changed

+1908
-1425
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+1908
-1425
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[workspace]
22
resolver = "2"
33
exclude = [
4-
"tests/telemetry",
54
"tests/no-default-features",
6-
"tests/webassembly"
5+
"tests/webassembly",
6+
"tests/telemetry"
77
]
88
members = [
99
"sdk/accessanalyzer",

aws-models/geo-places.json

Lines changed: 122 additions & 90 deletions
Large diffs are not rendered by default.

aws-models/pinpoint-sms-voice-v2.json

Lines changed: 110 additions & 69 deletions
Large diffs are not rendered by default.

aws-models/s3.json

Lines changed: 152 additions & 117 deletions
Large diffs are not rendered by default.

aws-models/sdk-endpoints.json

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10055,18 +10055,6 @@
1005510055
}
1005610056
}
1005710057
},
10058-
"elastictranscoder" : {
10059-
"endpoints" : {
10060-
"ap-northeast-1" : { },
10061-
"ap-south-1" : { },
10062-
"ap-southeast-1" : { },
10063-
"ap-southeast-2" : { },
10064-
"eu-west-1" : { },
10065-
"us-east-1" : { },
10066-
"us-west-1" : { },
10067-
"us-west-2" : { }
10068-
}
10069-
},
1007010058
"email" : {
1007110059
"endpoints" : {
1007210060
"af-south-1" : { },
@@ -13915,6 +13903,7 @@
1391513903
"ap-southeast-3" : { },
1391613904
"ap-southeast-4" : { },
1391713905
"ap-southeast-5" : { },
13906+
"ap-southeast-6" : { },
1391813907
"ap-southeast-7" : { },
1391913908
"ca-central-1" : {
1392013909
"variants" : [ {

sdk/geoplaces/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
22
[package]
33
name = "aws-sdk-geoplaces"
4-
version = "1.45.0"
4+
version = "1.46.0"
55
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Russell Cohen <rcoh@amazon.com>"]
66
description = "AWS SDK for Amazon Location Service Places V2"
77
edition = "2021"

sdk/geoplaces/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ your project, add the following to your **Cargo.toml** file:
2525
```toml
2626
[dependencies]
2727
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
28-
aws-sdk-geoplaces = "1.45.0"
28+
aws-sdk-geoplaces = "1.46.0"
2929
tokio = { version = "1", features = ["full"] }
3030
```
3131

sdk/geoplaces/src/client/autocomplete.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ impl super::Client {
44
///
55
/// - The fluent builder is configurable:
66
/// - [`query_text(impl Into<String>)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::query_text) / [`set_query_text(Option<String>)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::set_query_text):<br>required: **true**<br><p>The free-form text query to match addresses against. This is usually a partially typed address from an end user in an address box or form.</p><note> <p>The fields <code>QueryText</code>, and <code>QueryID</code> are mutually exclusive.</p> </note><br>
7-
/// - [`max_results(i32)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::set_max_results):<br>required: **false**<br><p>An optional limit for the number of results returned in a single call.</p><br>
8-
/// - [`bias_position(f64)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::bias_position) / [`set_bias_position(Option<Vec::<f64>>)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::set_bias_position):<br>required: **false**<br><p>The position in longitude and latitude that the results should be close to. Typically, place results returned are ranked higher the closer they are to this position. Stored in <code>\[lng, lat\]</code> and in the WSG84 format.</p><note> <p>The fields <code>BiasPosition</code>, <code>FilterBoundingBox</code>, and <code>FilterCircle</code> are mutually exclusive.</p> </note><br>
7+
/// - [`max_results(i32)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::set_max_results):<br>required: **false**<br><p>An optional limit for the number of results returned in a single call.</p> <p>Default value: 5</p><br>
8+
/// - [`bias_position(f64)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::bias_position) / [`set_bias_position(Option<Vec::<f64>>)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::set_bias_position):<br>required: **false**<br><p>The position in longitude and latitude that the results should be close to. Typically, place results returned are ranked higher the closer they are to this position. Stored in <code>\[lng, lat\]</code> and in the WGS 84 format.</p><note> <p>The fields <code>BiasPosition</code>, <code>FilterBoundingBox</code>, and <code>FilterCircle</code> are mutually exclusive.</p> </note><br>
99
/// - [`filter(AutocompleteFilter)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::filter) / [`set_filter(Option<AutocompleteFilter>)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::set_filter):<br>required: **false**<br><p>A structure which contains a set of inclusion/exclusion properties that results must possess in order to be returned as a result.</p><br>
1010
/// - [`postal_code_mode(PostalCodeMode)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::postal_code_mode) / [`set_postal_code_mode(Option<PostalCodeMode>)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::set_postal_code_mode):<br>required: **false**<br><p>The <code>PostalCodeMode</code> affects how postal code results are returned. If a postal code spans multiple localities and this value is empty, partial district or locality information may be returned under a single postal code result entry. If it's populated with the value <code>EnumerateSpannedLocalities</code>, all cities in that postal code are returned.</p><br>
1111
/// - [`additional_features(AutocompleteAdditionalFeature)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::additional_features) / [`set_additional_features(Option<Vec::<AutocompleteAdditionalFeature>>)`](crate::operation::autocomplete::builders::AutocompleteFluentBuilder::set_additional_features):<br>required: **false**<br><p>A list of optional additional parameters that can be requested for each result.</p><br>

sdk/geoplaces/src/client/geocode.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ impl super::Client {
33
/// Constructs a fluent builder for the [`Geocode`](crate::operation::geocode::builders::GeocodeFluentBuilder) operation.
44
///
55
/// - The fluent builder is configurable:
6-
/// - [`query_text(impl Into<String>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::query_text) / [`set_query_text(Option<String>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::set_query_text):<br>required: **false**<br><p>The free-form text query to match addresses against. This is usually a partially typed address from an end user in an address box or form.</p><note> <p>The fields <code>QueryText</code>, and <code>QueryID</code> are mutually exclusive.</p> </note><br>
6+
/// - [`query_text(impl Into<String>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::query_text) / [`set_query_text(Option<String>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::set_query_text):<br>required: **false**<br><p>The free-form text query to match addresses against. This is usually a partially typed address from an end user in an address box or form.</p><br>
77
/// - [`query_components(GeocodeQueryComponents)`](crate::operation::geocode::builders::GeocodeFluentBuilder::query_components) / [`set_query_components(Option<GeocodeQueryComponents>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::set_query_components):<br>required: **false**<br><p>A structured free text query allows you to search for places by the name or text representation of specific properties of the place.</p><br>
8-
/// - [`max_results(i32)`](crate::operation::geocode::builders::GeocodeFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::set_max_results):<br>required: **false**<br><p>An optional limit for the number of results returned in a single call.</p><br>
9-
/// - [`bias_position(f64)`](crate::operation::geocode::builders::GeocodeFluentBuilder::bias_position) / [`set_bias_position(Option<Vec::<f64>>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::set_bias_position):<br>required: **false**<br><p>The position, in longitude and latitude, that the results should be close to. Typically, place results returned are ranked higher the closer they are to this position. Stored in <code>\[lng, lat\]</code> and in the WSG84 format.</p><note> <p>The fields <code>BiasPosition</code>, <code>FilterBoundingBox</code>, and <code>FilterCircle</code> are mutually exclusive.</p> </note><br>
8+
/// - [`max_results(i32)`](crate::operation::geocode::builders::GeocodeFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::set_max_results):<br>required: **false**<br><p>An optional limit for the number of results returned in a single call.</p> <p>Default value: 20</p><br>
9+
/// - [`bias_position(f64)`](crate::operation::geocode::builders::GeocodeFluentBuilder::bias_position) / [`set_bias_position(Option<Vec::<f64>>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::set_bias_position):<br>required: **false**<br><p>The position, in longitude and latitude, that the results should be close to. Typically, place results returned are ranked higher the closer they are to this position. Stored in <code>\[lng, lat\]</code> and in the WGS 84 format.</p><br>
1010
/// - [`filter(GeocodeFilter)`](crate::operation::geocode::builders::GeocodeFluentBuilder::filter) / [`set_filter(Option<GeocodeFilter>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::set_filter):<br>required: **false**<br><p>A structure which contains a set of inclusion/exclusion properties that results must possess in order to be returned as a result.</p><br>
1111
/// - [`additional_features(GeocodeAdditionalFeature)`](crate::operation::geocode::builders::GeocodeFluentBuilder::additional_features) / [`set_additional_features(Option<Vec::<GeocodeAdditionalFeature>>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::set_additional_features):<br>required: **false**<br><p>A list of optional additional parameters, such as time zone, that can be requested for each result.</p><br>
1212
/// - [`language(impl Into<String>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::language) / [`set_language(Option<String>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::set_language):<br>required: **false**<br><p>A list of <a href="https://en.wikipedia.org/wiki/IETF_language_tag">BCP 47</a> compliant language codes for the results to be rendered in. If there is no data for the result in the requested language, data will be returned in the default language for the entry.</p><br>
1313
/// - [`political_view(impl Into<String>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::political_view) / [`set_political_view(Option<String>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::set_political_view):<br>required: **false**<br><p>The alpha-2 or alpha-3 character code for the political view of a country. The political view applies to the results of the request to represent unresolved territorial claims through the point of view of the specified country.</p><br>
1414
/// - [`intended_use(GeocodeIntendedUse)`](crate::operation::geocode::builders::GeocodeFluentBuilder::intended_use) / [`set_intended_use(Option<GeocodeIntendedUse>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::set_intended_use):<br>required: **false**<br><p>Indicates if the results will be stored. Defaults to <code>SingleUse</code>, if left empty.</p><note> <p>Storing the response of an Geocode query is required to comply with service terms, but charged at a higher cost per request. Please review the <a href="https://aws.amazon.com/location/sla/">user agreement</a> and <a href="https://aws.amazon.com/location/pricing/">service pricing structure</a> to determine the correct setting for your use case.</p> </note><br>
1515
/// - [`key(impl Into<String>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::key) / [`set_key(Option<String>)`](crate::operation::geocode::builders::GeocodeFluentBuilder::set_key):<br>required: **false**<br><p>Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request.</p><br>
1616
/// - On success, responds with [`GeocodeOutput`](crate::operation::geocode::GeocodeOutput) with field(s):
17-
/// - [`pricing_bucket(String)`](crate::operation::geocode::GeocodeOutput::pricing_bucket): <p>The pricing bucket for which the query is charged at.</p> <p>For more information on pricing, please visit <a href="https://aws.amazon.com/location/pricing/">Amazon Location Service Pricing</a>.</p>
17+
/// - [`pricing_bucket(String)`](crate::operation::geocode::GeocodeOutput::pricing_bucket): <p>The pricing bucket for which the query is charged at, or the maximum pricing bucket when the query is charged per item within the query.</p> <p>For more information on pricing, please visit <a href="https://aws.amazon.com/location/pricing/">Amazon Location Service Pricing</a>.</p>
1818
/// - [`result_items(Option<Vec::<GeocodeResultItem>>)`](crate::operation::geocode::GeocodeOutput::result_items): <p>List of places or results returned for a query.</p>
1919
/// - On failure, responds with [`SdkError<GeocodeError>`](crate::operation::geocode::GeocodeError)
2020
pub fn geocode(&self) -> crate::operation::geocode::builders::GeocodeFluentBuilder {

sdk/geoplaces/src/client/get_place.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@ impl super::Client {
1717
/// - [`address(Option<Address>)`](crate::operation::get_place::GetPlaceOutput::address): <p>The place's address.</p>
1818
/// - [`address_number_corrected(Option<bool>)`](crate::operation::get_place::GetPlaceOutput::address_number_corrected): <p>Boolean indicating if the address provided has been corrected.</p>
1919
/// - [`postal_code_details(Option<Vec::<PostalCodeDetails>>)`](crate::operation::get_place::GetPlaceOutput::postal_code_details): <p>Contains details about the postal code of the place/result.</p>
20-
/// - [`position(Option<Vec::<f64>>)`](crate::operation::get_place::GetPlaceOutput::position): <p>The position, in longitude and latitude.</p>
20+
/// - [`position(Option<Vec::<f64>>)`](crate::operation::get_place::GetPlaceOutput::position): <p>The position in World Geodetic System (WGS 84) format: \[longitude, latitude\].</p>
2121
/// - [`map_view(Option<Vec::<f64>>)`](crate::operation::get_place::GetPlaceOutput::map_view): <p>The bounding box enclosing the geometric shape (area or line) that an individual result covers.</p> <p>The bounding box formed is defined as a set of four coordinates: <code>\[{westward lng}, {southern lat}, {eastward lng}, {northern lat}\]</code></p>
2222
/// - [`categories(Option<Vec::<Category>>)`](crate::operation::get_place::GetPlaceOutput::categories): <p>Categories of results that results must belong to.</p>
2323
/// - [`food_types(Option<Vec::<FoodType>>)`](crate::operation::get_place::GetPlaceOutput::food_types): <p>List of food types offered by this result.</p>
2424
/// - [`business_chains(Option<Vec::<BusinessChain>>)`](crate::operation::get_place::GetPlaceOutput::business_chains): <p>The Business Chains associated with the place.</p>
2525
/// - [`contacts(Option<Contacts>)`](crate::operation::get_place::GetPlaceOutput::contacts): <p>List of potential contact methods for the result/place.</p>
2626
/// - [`opening_hours(Option<Vec::<OpeningHours>>)`](crate::operation::get_place::GetPlaceOutput::opening_hours): <p>List of opening hours objects.</p>
27-
/// - [`access_points(Option<Vec::<AccessPoint>>)`](crate::operation::get_place::GetPlaceOutput::access_points): <p>Position of the access point in <code>(lng,lat)</code>.</p>
27+
/// - [`access_points(Option<Vec::<AccessPoint>>)`](crate::operation::get_place::GetPlaceOutput::access_points): <p>Position of the access point in World Geodetic System (WGS 84) format: \[longitude, latitude\].</p>
2828
/// - [`access_restrictions(Option<Vec::<AccessRestriction>>)`](crate::operation::get_place::GetPlaceOutput::access_restrictions): <p>Indicates known access restrictions on a vehicle access point. The index correlates to an access point and indicates if access through this point has some form of restriction.</p>
2929
/// - [`time_zone(Option<TimeZone>)`](crate::operation::get_place::GetPlaceOutput::time_zone): <p>The time zone in which the place is located.</p>
3030
/// - [`political_view(Option<String>)`](crate::operation::get_place::GetPlaceOutput::political_view): <p>The alpha-2 or alpha-3 character code for the political view of a country. The political view applies to the results of the request to represent unresolved territorial claims through the point of view of the specified country.</p>
3131
/// - [`phonemes(Option<PhonemeDetails>)`](crate::operation::get_place::GetPlaceOutput::phonemes): <p>How the various components of the result's address are pronounced in various languages.</p>
3232
/// - [`main_address(Option<RelatedPlace>)`](crate::operation::get_place::GetPlaceOutput::main_address): <p>The main address corresponding to a place of type Secondary Address.</p>
33-
/// - [`secondary_addresses(Option<Vec::<RelatedPlace>>)`](crate::operation::get_place::GetPlaceOutput::secondary_addresses): <p>All secondary addresses that are associated with a main address. A secondary address is one that includes secondary designators, such as a Suite or Unit Number, Building, or Floor information.</p>
33+
/// - [`secondary_addresses(Option<Vec::<RelatedPlace>>)`](crate::operation::get_place::GetPlaceOutput::secondary_addresses): <p>All secondary addresses that are associated with a main address. A secondary address is one that includes secondary designators, such as a Suite or Unit Number, Building, or Floor information.</p><note> <p>Coverage for this functionality is available in the following countries: AUS, CAN, NZL, USA, PRI.</p> </note>
3434
/// - On failure, responds with [`SdkError<GetPlaceError>`](crate::operation::get_place::GetPlaceError)
3535
pub fn get_place(&self) -> crate::operation::get_place::builders::GetPlaceFluentBuilder {
3636
crate::operation::get_place::builders::GetPlaceFluentBuilder::new(self.handle.clone())

0 commit comments

Comments
 (0)