From ff2ebe8a4d96fcb91638d45c8ead4bfc533bf679 Mon Sep 17 00:00:00 2001 From: aws-sdk-go-automation <43143561+aws-sdk-go-automation@users.noreply.github.com> Date: Tue, 10 Jan 2023 11:22:46 -0800 Subject: [PATCH] Release v1.44.177 (2023-01-10) (#4686) Release v1.44.177 (2023-01-10) === ### Service Client Updates * `service/location`: Updates service API and documentation * `service/rds`: Updates service API, documentation, waiters, paginators, and examples * This release adds support for configuring allocated storage on the CreateDBInstanceReadReplica, RestoreDBInstanceFromDBSnapshot, and RestoreDBInstanceToPointInTime APIs. --- CHANGELOG.md | 8 + aws/endpoints/defaults.go | 13 +- aws/version.go | 2 +- models/apis/location/2020-11-19/api-2.json | 8 +- models/apis/location/2020-11-19/docs-2.json | 48 +- .../2020-11-19/endpoint-rule-set-1.json | 83 +-- .../location/2020-11-19/endpoint-tests-1.json | 394 +++---------- models/apis/rds/2014-10-31/api-2.json | 9 +- models/apis/rds/2014-10-31/docs-2.json | 9 +- .../apis/rds/2014-10-31/endpoint-tests-1.json | 550 +++++++++--------- models/endpoints/endpoints.json | 7 +- service/locationservice/api.go | 136 ++++- service/rds/api.go | 58 +- 13 files changed, 614 insertions(+), 711 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a31b56b2548..6ae7edec5c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +Release v1.44.177 (2023-01-10) +=== + +### Service Client Updates +* `service/location`: Updates service API and documentation +* `service/rds`: Updates service API, documentation, waiters, paginators, and examples + * This release adds support for configuring allocated storage on the CreateDBInstanceReadReplica, RestoreDBInstanceFromDBSnapshot, and RestoreDBInstanceToPointInTime APIs. + Release v1.44.176 (2023-01-09) === diff --git a/aws/endpoints/defaults.go b/aws/endpoints/defaults.go index a9b3025374d..52f5906d0c4 100644 --- a/aws/endpoints/defaults.go +++ b/aws/endpoints/defaults.go @@ -14003,11 +14003,6 @@ var awsPartition = partition{ }: endpoint{ Hostname: "kendra-ranking.ap-east-1.api.aws", }, - endpointKey{ - Region: "ap-northeast-1", - }: endpoint{ - Hostname: "kendra-ranking.ap-northeast-1.api.aws", - }, endpointKey{ Region: "ap-northeast-2", }: endpoint{ @@ -14018,11 +14013,6 @@ var awsPartition = partition{ }: endpoint{ Hostname: "kendra-ranking.ap-northeast-3.api.aws", }, - endpointKey{ - Region: "ap-south-1", - }: endpoint{ - Hostname: "kendra-ranking.ap-south-1.api.aws", - }, endpointKey{ Region: "ap-south-2", }: endpoint{ @@ -24801,6 +24791,9 @@ var awsPartition = partition{ }, "ssm-sap": service{ Endpoints: serviceEndpoints{ + endpointKey{ + Region: "ap-southeast-2", + }: endpoint{}, endpointKey{ Region: "us-east-1", }: endpoint{}, diff --git a/aws/version.go b/aws/version.go index cf47703c66a..942d9d1572e 100644 --- a/aws/version.go +++ b/aws/version.go @@ -5,4 +5,4 @@ package aws const SDKName = "aws-sdk-go" // SDKVersion is the version of this SDK -const SDKVersion = "1.44.176" +const SDKVersion = "1.44.177" diff --git a/models/apis/location/2020-11-19/api-2.json b/models/apis/location/2020-11-19/api-2.json index 0643877c4ce..1c79e8e0f3a 100644 --- a/models/apis/location/2020-11-19/api-2.json +++ b/models/apis/location/2020-11-19/api-2.json @@ -190,6 +190,7 @@ {"shape":"ConflictException"}, {"shape":"AccessDeniedException"}, {"shape":"ValidationException"}, + {"shape":"ServiceQuotaExceededException"}, {"shape":"ThrottlingException"} ], "endpoint":{"hostPrefix":"geofencing."}, @@ -209,6 +210,7 @@ {"shape":"ConflictException"}, {"shape":"AccessDeniedException"}, {"shape":"ValidationException"}, + {"shape":"ServiceQuotaExceededException"}, {"shape":"ThrottlingException"} ], "endpoint":{"hostPrefix":"maps."}, @@ -228,6 +230,7 @@ {"shape":"ConflictException"}, {"shape":"AccessDeniedException"}, {"shape":"ValidationException"}, + {"shape":"ServiceQuotaExceededException"}, {"shape":"ThrottlingException"} ], "endpoint":{"hostPrefix":"places."}, @@ -247,6 +250,7 @@ {"shape":"ConflictException"}, {"shape":"AccessDeniedException"}, {"shape":"ValidationException"}, + {"shape":"ServiceQuotaExceededException"}, {"shape":"ThrottlingException"} ], "endpoint":{"hostPrefix":"routes."}, @@ -3418,7 +3422,9 @@ "enum":[ "Car", "Truck", - "Walking" + "Walking", + "Bicycle", + "Motorcycle" ] }, "TruckDimensions":{ diff --git a/models/apis/location/2020-11-19/docs-2.json b/models/apis/location/2020-11-19/docs-2.json index 8f98168a760..24cecf5f70c 100644 --- a/models/apis/location/2020-11-19/docs-2.json +++ b/models/apis/location/2020-11-19/docs-2.json @@ -12,9 +12,9 @@ "CalculateRoute": "
Calculates a route given the following required parameters: DeparturePosition
and DestinationPosition
. Requires that you first create a route calculator resource.
By default, a request that doesn't specify a departure time uses the best time of day to travel with the best traffic conditions when calculating the route.
Additional options include:
Specifying a departure time using either DepartureTime
or DepartNow
. This calculates a route based on predictive traffic data at the given time.
You can't specify both DepartureTime
and DepartNow
in a single request. Specifying both parameters returns a validation error.
Specifying a travel mode using TravelMode sets the transportation mode used to calculate the routes. This also lets you specify additional route preferences in CarModeOptions
if traveling by Car
, or TruckModeOptions
if traveling by Truck
.
If you specify walking
for the travel mode and your data provider is Esri, the start and destination must be within 40km.
Calculates a route matrix given the following required parameters: DeparturePositions
and DestinationPositions
. CalculateRouteMatrix
calculates routes and returns the travel time and travel distance from each departure position to each destination position in the request. For example, given departure positions A and B, and destination positions X and Y, CalculateRouteMatrix
will return time and distance for routes from A to X, A to Y, B to X, and B to Y (in that order). The number of results returned (and routes calculated) will be the number of DeparturePositions
times the number of DestinationPositions
.
Your account is charged for each route calculated, not the number of requests.
Requires that you first create a route calculator resource.
By default, a request that doesn't specify a departure time uses the best time of day to travel with the best traffic conditions when calculating routes.
Additional options include:
Specifying a departure time using either DepartureTime
or DepartNow
. This calculates routes based on predictive traffic data at the given time.
You can't specify both DepartureTime
and DepartNow
in a single request. Specifying both parameters returns a validation error.
Specifying a travel mode using TravelMode sets the transportation mode used to calculate the routes. This also lets you specify additional route preferences in CarModeOptions
if traveling by Car
, or TruckModeOptions
if traveling by Truck
.
Creates a geofence collection, which manages and stores geofences.
", - "CreateMap": "Creates a map resource in your AWS account, which provides map tiles of different styles sourced from global location data providers.
If your application is tracking or routing assets you use in your business, such as delivery vehicles or employees, you may only use HERE as your geolocation provider. See section 82 of the AWS service terms for more details.
Creates a place index resource in your AWS account. Use a place index resource to geocode addresses and other text queries by using the SearchPlaceIndexForText
operation, and reverse geocode coordinates by using the SearchPlaceIndexForPosition
operation, and enable autosuggestions by using the SearchPlaceIndexForSuggestions
operation.
If your application is tracking or routing assets you use in your business, such as delivery vehicles or employees, you may only use HERE as your geolocation provider. See section 82 of the AWS service terms for more details.
Creates a route calculator resource in your AWS account.
You can send requests to a route calculator resource to estimate travel time, distance, and get directions. A route calculator sources traffic and road network data from your chosen data provider.
If your application is tracking or routing assets you use in your business, such as delivery vehicles or employees, you may only use HERE as your geolocation provider. See section 82 of the AWS service terms for more details.
Creates a map resource in your AWS account, which provides map tiles of different styles sourced from global location data providers.
If your application is tracking or routing assets you use in your business, such as delivery vehicles or employees, you must not use Esri as your geolocation provider. See section 82 of the AWS service terms for more details.
Creates a place index resource in your AWS account. Use a place index resource to geocode addresses and other text queries by using the SearchPlaceIndexForText
operation, and reverse geocode coordinates by using the SearchPlaceIndexForPosition
operation, and enable autosuggestions by using the SearchPlaceIndexForSuggestions
operation.
If your application is tracking or routing assets you use in your business, such as delivery vehicles or employees, you must not use Esri as your geolocation provider. See section 82 of the AWS service terms for more details.
Creates a route calculator resource in your AWS account.
You can send requests to a route calculator resource to estimate travel time, distance, and get directions. A route calculator sources traffic and road network data from your chosen data provider.
If your application is tracking or routing assets you use in your business, such as delivery vehicles or employees, you must not use Esri as your geolocation provider. See section 82 of the AWS service terms for more details.
Creates a tracker resource in your AWS account, which lets you retrieve current and historical location of devices.
", "DeleteGeofenceCollection": "Deletes a geofence collection from your AWS account.
This operation deletes the resource permanently. If the geofence collection is the target of a tracker resource, the devices will no longer be monitored.
Deletes a map resource from your AWS account.
This operation deletes the resource permanently. If the map is being used in an application, the map may not render.
Reverse geocodes a given coordinate and returns a legible address. Allows you to search for Places or points of interest near a given position.
", "SearchPlaceIndexForSuggestions": "Generates suggestions for addresses and points of interest based on partial or misspelled free-form text. This operation is also known as autocomplete, autosuggest, or fuzzy matching.
Optional parameters let you narrow your search results by bounding box or country, or bias your search toward a specific position on the globe.
You can search for suggested place names near a specified position by using BiasPosition
, or filter results within a bounding box by using FilterBBox
. These parameters are mutually exclusive; using both BiasPosition
and FilterBBox
in the same command returns an error.
Geocodes free-form text, such as an address, name, city, or region to allow you to search for Places or points of interest.
Optional parameters let you narrow your search results by bounding box or country, or bias your search toward a specific position on the globe.
You can search for places near a given position using BiasPosition
, or filter results within a bounding box using FilterBBox
. Providing both parameters simultaneously returns an error.
Search results are returned in order of highest to lowest relevance.
", - "TagResource": "Assigns one or more tags (key-value pairs) to the specified Amazon Location Service resource.
<p>Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values.</p> <p>You can use the <code>TagResource</code> operation with an Amazon Location Service resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the tags already associated with the resource. If you specify a tag key that's already associated with the resource, the new tag value that you specify replaces the previous value for that tag. </p> <p>You can associate up to 50 tags with a resource.</p>
",
+ "TagResource": "Assigns one or more tags (key-value pairs) to the specified Amazon Location Service resource.
Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values.
You can use the TagResource
operation with an Amazon Location Service resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the tags already associated with the resource. If you specify a tag key that's already associated with the resource, the new tag value that you specify replaces the previous value for that tag.
You can associate up to 50 tags with a resource.
", "UntagResource": "Removes one or more tags from the specified Amazon Location resource.
", "UpdateGeofenceCollection": "Updates the specified properties of a given geofence collection.
", "UpdateMap": "Updates the specified properties of a given map resource.
", @@ -1159,7 +1159,7 @@ "MapStyle": { "base": null, "refs": { - "MapConfiguration$Style": "Specifies the map style selected from an available data provider.
Valid Esri map styles:
VectorEsriDarkGrayCanvas
– The Esri Dark Gray Canvas map style. A vector basemap with a dark gray, neutral background with minimal colors, labels, and features that's designed to draw attention to your thematic content.
RasterEsriImagery
– The Esri Imagery map style. A raster basemap that provides one meter or better satellite and aerial imagery in many parts of the world and lower resolution satellite imagery worldwide.
VectorEsriLightGrayCanvas
– The Esri Light Gray Canvas map style, which provides a detailed vector basemap with a light gray, neutral background style with minimal colors, labels, and features that's designed to draw attention to your thematic content.
VectorEsriTopographic
– The Esri Light map style, which provides a detailed vector basemap with a classic Esri map style.
VectorEsriStreets
– The Esri World Streets map style, which provides a detailed vector basemap for the world symbolized with a classic Esri street map style. The vector tile layer is similar in content and style to the World Street Map raster map.
VectorEsriNavigation
– The Esri World Navigation map style, which provides a detailed basemap for the world symbolized with a custom navigation map style that's designed for use during the day in mobile devices.
Valid HERE Technologies map styles:
VectorHereContrast
– The HERE Contrast (Berlin) map style is a high contrast detailed base map of the world that blends 3D and 2D rendering.
The VectorHereContrast
style has been renamed from VectorHereBerlin
. VectorHereBerlin
has been deprecated, but will continue to work in applications that use it.
VectorHereExplore
– A default HERE map style containing a neutral, global map and its features including roads, buildings, landmarks, and water features. It also now includes a fully designed map of Japan.
VectorHereExploreTruck
– A global map containing truck restrictions and attributes (e.g. width / height / HAZMAT) symbolized with highlighted segments and icons on top of HERE Explore to support use cases within transport and logistics.
RasterHereExploreSatellite
– A global map containing high resolution satellite imagery.
HybridHereExploreSatellite
– A global map displaying the road network, street names, and city labels over satellite imagery. This style will automatically retrieve both raster and vector tiles, and your charges will be based on total tiles retrieved.
Hybrid styles use both vector and raster tiles when rendering the map that you see. This means that more tiles are retrieved than when using either vector or raster tiles alone. Your charges will include all tiles retrieved.
Valid Open Data (Preview) map styles:
VectorOpenDataStandardLight
– The Open Data Standard Light (preview) map style provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries.
Open Data maps is in preview. We may add, change, or remove features before announcing general availability. For more information, see Open Data is in preview release.
Specifies the map style selected from an available data provider.
Valid Esri map styles:
VectorEsriDarkGrayCanvas
– The Esri Dark Gray Canvas map style. A vector basemap with a dark gray, neutral background with minimal colors, labels, and features that's designed to draw attention to your thematic content.
RasterEsriImagery
– The Esri Imagery map style. A raster basemap that provides one meter or better satellite and aerial imagery in many parts of the world and lower resolution satellite imagery worldwide.
VectorEsriLightGrayCanvas
– The Esri Light Gray Canvas map style, which provides a detailed vector basemap with a light gray, neutral background style with minimal colors, labels, and features that's designed to draw attention to your thematic content.
VectorEsriTopographic
– The Esri Light map style, which provides a detailed vector basemap with a classic Esri map style.
VectorEsriStreets
– The Esri World Streets map style, which provides a detailed vector basemap for the world symbolized with a classic Esri street map style. The vector tile layer is similar in content and style to the World Street Map raster map.
VectorEsriNavigation
– The Esri World Navigation map style, which provides a detailed basemap for the world symbolized with a custom navigation map style that's designed for use during the day in mobile devices.
Valid HERE Technologies map styles:
VectorHereContrast
– The HERE Contrast (Berlin) map style is a high contrast detailed base map of the world that blends 3D and 2D rendering.
The VectorHereContrast
style has been renamed from VectorHereBerlin
. VectorHereBerlin
has been deprecated, but will continue to work in applications that use it.
VectorHereExplore
– A default HERE map style containing a neutral, global map and its features including roads, buildings, landmarks, and water features. It also now includes a fully designed map of Japan.
VectorHereExploreTruck
– A global map containing truck restrictions and attributes (e.g. width / height / HAZMAT) symbolized with highlighted segments and icons on top of HERE Explore to support use cases within transport and logistics.
RasterHereExploreSatellite
– A global map containing high resolution satellite imagery.
HybridHereExploreSatellite
– A global map displaying the road network, street names, and city labels over satellite imagery. This style will automatically retrieve both raster and vector tiles, and your charges will be based on total tiles retrieved.
Hybrid styles use both vector and raster tiles when rendering the map that you see. This means that more tiles are retrieved than when using either vector or raster tiles alone. Your charges will include all tiles retrieved.
Valid GrabMaps map styles:
VectorGrabStandardLight
– The Grab Standard Light map style provides a basemap with detailed land use coloring, area names, roads, landmarks, and points of interest covering Southeast Asia.
VectorGrabStandardDark
– The Grab Standard Dark map style provides a dark variation of the standard basemap covering Southeast Asia.
Grab provides maps only for countries in Southeast Asia, and is only available in the Asia Pacific (Singapore) Region (ap-southeast-1
). For more information, see GrabMaps countries and area covered.
Valid Open Data (Preview) map styles:
VectorOpenDataStandardLight
– The Open Data Standard Light (preview) map style provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries.
Open Data maps is in preview. We may add, change, or remove features before announcing general availability. For more information, see Open Data is in preview release.
The identifier of the place to find.
", - "SearchForPositionResult$PlaceId": "The unique identifier of the place. You can use this with the GetPlace
operation to find the place again later.
For SearchPlaceIndexForPosition
operations, the PlaceId
is returned only by place indexes that use HERE as a data provider.
The unique identifier of the place. You can use this with the GetPlace
operation to find the place again later.
For SearchPlaceIndexForSuggestions
operations, the PlaceId
is returned by place indexes that use HERE or Esri as data providers.
The unique identifier of the place. You can use this with the GetPlace
operation to find the place again later.
For SearchPlaceIndexForText
operations, the PlaceId
is returned only by place indexes that use HERE as a data provider.
The unique identifier of the place. You can use this with the GetPlace
operation to find the place again later.
For SearchPlaceIndexForPosition
operations, the PlaceId
is returned only by place indexes that use HERE or Grab as a data provider.
The unique identifier of the place. You can use this with the GetPlace
operation to find the place again later.
For SearchPlaceIndexForSuggestions
operations, the PlaceId
is returned by place indexes that use Esri, Grab, or HERE as data providers.
The unique identifier of the place. You can use this with the GetPlace
operation to find the place again later.
For SearchPlaceIndexForText
operations, the PlaceId
is returned only by place indexes that use HERE or Grab as a data provider.
The relative confidence in the match for a result among the results returned. For example, if more fields for an address match (including house number, street, city, country/region, and postal code), the relevance score is closer to 1.
Returned only when the partner selected is Esri.
" + "SearchForTextResult$Relevance": "The relative confidence in the match for a result among the results returned. For example, if more fields for an address match (including house number, street, city, country/region, and postal code), the relevance score is closer to 1.
Returned only when the partner selected is Esri or Grab.
" } }, "SearchPlaceIndexForPositionRequest": { @@ -1611,20 +1611,20 @@ "refs": { "AccessDeniedException$Message": null, "BatchItemError$Message": "A message with the reason for the batch request error.
", - "CalculateRouteMatrixSummary$DataSource": "The data provider of traffic and road network data used to calculate the routes. Indicates one of the available providers:
Esri
Here
For more information about data providers, see Amazon Location Service data providers.
", - "CalculateRouteSummary$DataSource": "The data provider of traffic and road network data used to calculate the route. Indicates one of the available providers:
Esri
Here
For more information about data providers, see Amazon Location Service data providers.
", + "CalculateRouteMatrixSummary$DataSource": "The data provider of traffic and road network data used to calculate the routes. Indicates one of the available providers:
Esri
Grab
Here
For more information about data providers, see Amazon Location Service data providers.
", + "CalculateRouteSummary$DataSource": "The data provider of traffic and road network data used to calculate the route. Indicates one of the available providers:
Esri
Grab
Here
For more information about data providers, see Amazon Location Service data providers.
", "ConflictException$Message": null, "CreateGeofenceCollectionRequest$PricingPlanDataSource": "This parameter is no longer used.
", - "CreatePlaceIndexRequest$DataSource": "Specifies the geospatial data provider for the new place index.
This field is case-sensitive. Enter the valid values as shown. For example, entering HERE
returns an error.
Valid values include:
Esri
– For additional information about Esri's coverage in your region of interest, see Esri details on geocoding coverage.
Here
– For additional information about HERE Technologies' coverage in your region of interest, see HERE details on goecoding coverage.
If you specify HERE Technologies (Here
) as the data provider, you may not store results for locations in Japan. For more information, see the AWS Service Terms for Amazon Location Service.
For additional information , see Data providers on the Amazon Location Service Developer Guide.
", - "CreateRouteCalculatorRequest$DataSource": "Specifies the data provider of traffic and road network data.
This field is case-sensitive. Enter the valid values as shown. For example, entering HERE
returns an error. Route calculators that use Esri as a data source only calculate routes that are shorter than 400 km.
Valid values include:
Esri
– For additional information about Esri's coverage in your region of interest, see Esri details on street networks and traffic coverage.
Here
– For additional information about HERE Technologies' coverage in your region of interest, see HERE car routing coverage and HERE truck routing coverage.
For additional information , see Data providers on the Amazon Location Service Developer Guide.
", + "CreatePlaceIndexRequest$DataSource": "Specifies the geospatial data provider for the new place index.
This field is case-sensitive. Enter the valid values as shown. For example, entering HERE
returns an error.
Valid values include:
Esri
– For additional information about Esri's coverage in your region of interest, see Esri details on geocoding coverage.
Grab
– Grab provides place index functionality for Southeast Asia. For additional information about GrabMaps' coverage, see GrabMaps countries and areas covered.
Here
– For additional information about HERE Technologies' coverage in your region of interest, see HERE details on goecoding coverage.
If you specify HERE Technologies (Here
) as the data provider, you may not store results for locations in Japan. For more information, see the AWS Service Terms for Amazon Location Service.
For additional information , see Data providers on the Amazon Location Service Developer Guide.
", + "CreateRouteCalculatorRequest$DataSource": "Specifies the data provider of traffic and road network data.
This field is case-sensitive. Enter the valid values as shown. For example, entering HERE
returns an error.
Valid values include:
Esri
– For additional information about Esri's coverage in your region of interest, see Esri details on street networks and traffic coverage.
Route calculators that use Esri as a data source only calculate routes that are shorter than 400 km.
Grab
– Grab provides routing functionality for Southeast Asia. For additional information about GrabMaps' coverage, see GrabMaps countries and areas covered.
Here
– For additional information about HERE Technologies' coverage in your region of interest, see HERE car routing coverage and HERE truck routing coverage.
For additional information , see Data providers on the Amazon Location Service Developer Guide.
", "CreateTrackerRequest$PricingPlanDataSource": "This parameter is no longer used.
", "DescribeGeofenceCollectionResponse$PricingPlanDataSource": "No longer used. Always returns an empty string.
", "DescribeMapResponse$DataSource": "Specifies the data provider for the associated map tiles.
", - "DescribePlaceIndexResponse$DataSource": "The data provider of geospatial data. Values can be one of the following:
Esri
Here
For more information about data providers, see Amazon Location Service data providers.
", - "DescribeRouteCalculatorResponse$DataSource": "The data provider of traffic and road network data. Indicates one of the available providers:
Esri
Here
For more information about data providers, see Amazon Location Service data providers.
", + "DescribePlaceIndexResponse$DataSource": "The data provider of geospatial data. Values can be one of the following:
Esri
Grab
Here
For more information about data providers, see Amazon Location Service data providers.
", + "DescribeRouteCalculatorResponse$DataSource": "The data provider of traffic and road network data. Indicates one of the available providers:
Esri
Grab
Here
For more information about data providers, see Amazon Location Service data providers.
", "DescribeTrackerResponse$PricingPlanDataSource": "No longer used. Always returns an empty string.
", "GetGeofenceResponse$Status": "Identifies the state of the geofence. A geofence will hold one of the following states:
ACTIVE
— The geofence has been indexed by the system.
PENDING
— The geofence is being processed by the system.
FAILED
— The geofence failed to be indexed by the system.
DELETED
— The geofence has been deleted from the system index.
DELETING
— The geofence is being deleted from the system index.
A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode
.
Valid fonts stacks for Esri styles:
VectorEsriDarkGrayCanvas – Ubuntu Medium Italic
| Ubuntu Medium
| Ubuntu Italic
| Ubuntu Regular
| Ubuntu Bold
VectorEsriLightGrayCanvas – Ubuntu Italic
| Ubuntu Regular
| Ubuntu Light
| Ubuntu Bold
VectorEsriTopographic – Noto Sans Italic
| Noto Sans Regular
| Noto Sans Bold
| Noto Serif Regular
| Roboto Condensed Light Italic
VectorEsriStreets – Arial Regular
| Arial Italic
| Arial Bold
VectorEsriNavigation – Arial Regular
| Arial Italic
| Arial Bold
Valid font stacks for HERE Technologies styles:
VectorHereContrast – Fira GO Regular
| Fira GO Bold
VectorHereExplore, VectorHereExploreTruck, HybridHereExploreSatellite – Fira GO Italic
| Fira GO Map
| Fira GO Map Bold
| Noto Sans CJK JP Bold
| Noto Sans CJK JP Light
| Noto Sans CJK JP Regular
Valid font stacks for Open Data (Preview) styles:
VectorOpenDataStandardLight – Amazon Ember Regular,Noto Sans Regular
| Amazon Ember Bold,Noto Sans Bold
| Amazon Ember Medium,Noto Sans Medium
| Amazon Ember Regular Italic,Noto Sans Italic
| Amazon Ember Condensed RC Regular,Noto Sans Regular
| Amazon Ember Condensed RC Bold,Noto Sans Bold
The fonts used by VectorOpenDataStandardLight
are combined fonts that use Amazon Ember
for most glyphs but Noto Sans
for glyphs unsupported by Amazon Ember
.
A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode
.
Valid fonts stacks for Esri styles:
VectorEsriDarkGrayCanvas – Ubuntu Medium Italic
| Ubuntu Medium
| Ubuntu Italic
| Ubuntu Regular
| Ubuntu Bold
VectorEsriLightGrayCanvas – Ubuntu Italic
| Ubuntu Regular
| Ubuntu Light
| Ubuntu Bold
VectorEsriTopographic – Noto Sans Italic
| Noto Sans Regular
| Noto Sans Bold
| Noto Serif Regular
| Roboto Condensed Light Italic
VectorEsriStreets – Arial Regular
| Arial Italic
| Arial Bold
VectorEsriNavigation – Arial Regular
| Arial Italic
| Arial Bold
Valid font stacks for HERE Technologies styles:
VectorHereContrast – Fira GO Regular
| Fira GO Bold
VectorHereExplore, VectorHereExploreTruck, HybridHereExploreSatellite – Fira GO Italic
| Fira GO Map
| Fira GO Map Bold
| Noto Sans CJK JP Bold
| Noto Sans CJK JP Light
| Noto Sans CJK JP Regular
Valid font stacks for GrabMaps styles:
VectorGrabStandardLight, VectorGrabStandardDark – Noto Sans Regular
| Noto Sans Medium
| Noto Sans Bold
Valid font stacks for Open Data (Preview) styles:
VectorOpenDataStandardLight – Amazon Ember Regular,Noto Sans Regular
| Amazon Ember Bold,Noto Sans Bold
| Amazon Ember Medium,Noto Sans Medium
| Amazon Ember Regular Italic,Noto Sans Italic
| Amazon Ember Condensed RC Regular,Noto Sans Regular
| Amazon Ember Condensed RC Bold,Noto Sans Bold
The fonts used by VectorOpenDataStandardLight
are combined fonts that use Amazon Ember
for most glyphs but Noto Sans
for glyphs unsupported by Amazon Ember
.
The map glyph content type. For example, application/octet-stream
.
The content type of the sprite sheet and offsets. For example, the sprite sheet content type is image/png
, and the sprite offset JSON document is application/json
.
The style descriptor's content type. For example, application/json
.
No longer used. Always returns an empty string.
", "ListGeofenceResponseEntry$Status": "Identifies the state of the geofence. A geofence will hold one of the following states:
ACTIVE
— The geofence has been indexed by the system.
PENDING
— The geofence is being processed by the system.
FAILED
— The geofence failed to be indexed by the system.
DELETED
— The geofence has been deleted from the system index.
DELETING
— The geofence is being deleted from the system index.
Specifies the data provider for the associated map tiles.
", - "ListPlaceIndexesResponseEntry$DataSource": "The data provider of geospatial data. Values can be one of the following:
Esri
Here
For more information about data providers, see Amazon Location Service data providers.
", - "ListRouteCalculatorsResponseEntry$DataSource": "The data provider of traffic and road network data. Indicates one of the available providers:
Esri
Here
For more information about data providers, see Amazon Location Service data providers.
", + "ListPlaceIndexesResponseEntry$DataSource": "The data provider of geospatial data. Values can be one of the following:
Esri
Grab
Here
For more information about data providers, see Amazon Location Service data providers.
", + "ListRouteCalculatorsResponseEntry$DataSource": "The data provider of traffic and road network data. Indicates one of the available providers:
Esri
Grab
Here
For more information about data providers, see Amazon Location Service data providers.
", "ListTrackersResponseEntry$PricingPlanDataSource": "No longer used. Always returns an empty string.
", "Place$AddressNumber": "The numerical portion of an address, such as a building number.
", "Place$Country": "A country/region specified using ISO 3166 3-digit country/region code. For example, CAN
.
A group of numbers and letters in a country-specific format, which accompanies the address for the purpose of identifying a location.
", "Place$Region": "A name for an area or geographical division, such as a province or state name. For example, British Columbia
.
The name for a street or a road to identify a location. For example, Main Street
.
A country, or an area that's part of a larger region. For example, Metro Vancouver
.
A county, or an area that's part of a larger region. For example, Metro Vancouver
.
For addresses with multiple units, the unit identifier. Can include numbers and letters, for example 3B
or Unit 123
.
Returned only for a place index that uses Esri as a data provider. Is not returned for SearchPlaceIndexForPosition
.
For addresses with a UnitNumber
, the type of unit. For example, Apartment
.
A message about the error that occurred for the route calculation.
", "SearchForSuggestionsResult$Text": "The text of the place suggestion, typically formatted as an address string.
", - "SearchPlaceIndexForPositionSummary$DataSource": "The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:
Esri
Here
For more information about data providers, see Amazon Location Service data providers.
", - "SearchPlaceIndexForSuggestionsSummary$DataSource": "The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:
Esri
Here
For more information about data providers, see Amazon Location Service data providers.
", - "SearchPlaceIndexForTextSummary$DataSource": "The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:
Esri
Here
For more information about data providers, see Amazon Location Service data providers.
", + "SearchPlaceIndexForPositionSummary$DataSource": "The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:
Esri
Grab
Here
For more information about data providers, see Amazon Location Service data providers.
", + "SearchPlaceIndexForSuggestionsSummary$DataSource": "The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:
Esri
Grab
Here
For more information about data providers, see Amazon Location Service data providers.
", + "SearchPlaceIndexForTextSummary$DataSource": "The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:
Esri
Grab
Here
For more information about data providers, see Amazon Location Service data providers.
", "ServiceQuotaExceededException$Message": "A message with the reason for the service quota exceeded exception error.
", "TagKeys$member": null, "ThrottlingException$Message": null, @@ -1801,8 +1801,8 @@ "TravelMode": { "base": null, "refs": { - "CalculateRouteMatrixRequest$TravelMode": "Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility.
The TravelMode
you specify also determines how you specify route preferences:
If traveling by Car
use the CarModeOptions
parameter.
If traveling by Truck
use the TruckModeOptions
parameter.
Default Value: Car
Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility. You can choose Car
, Truck
, or Walking
as options for the TravelMode
.
The TravelMode
you specify also determines how you specify route preferences:
If traveling by Car
use the CarModeOptions
parameter.
If traveling by Truck
use the TruckModeOptions
parameter.
Default Value: Car
Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility.
The TravelMode
you specify also determines how you specify route preferences:
If traveling by Car
use the CarModeOptions
parameter.
If traveling by Truck
use the TruckModeOptions
parameter.
Bicycle
or Motorcycle
are only valid when using Grab
as a data provider, and only within Southeast Asia.
Truck
is not available for Grab.
For more information about using Grab as a data provider, see GrabMaps in the Amazon Location Service Developer Guide.
Default Value: Car
Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility. You can choose Car
, Truck
, Walking
, Bicycle
or Motorcycle
as options for the TravelMode
.
Bicycle
and Motorcycle
are only valid when using Grab as a data provider, and only within Southeast Asia.
Truck
is not available for Grab.
For more details on the using Grab for routing, including areas of coverage, see GrabMaps in the Amazon Location Service Developer Guide.
The TravelMode
you specify also determines how you specify route preferences:
If traveling by Car
use the CarModeOptions
parameter.
If traveling by Truck
use the TruckModeOptions
parameter.
Default Value: Car
Amazon Relational Database Service (Amazon RDS) supports importing MySQL databases by using backup files. You can create a backup of your on-premises database, store it on Amazon Simple Storage Service (Amazon S3), and then restore the backup file onto a new Amazon RDS DB instance running MySQL. For more information, see Importing Data into an Amazon RDS MySQL DB Instance in the Amazon RDS User Guide.
This command doesn't apply to RDS Custom.
", "RestoreDBInstanceToPointInTime": "Restores a DB instance to an arbitrary point in time. You can restore to any point in time before the time identified by the LatestRestorableTime property. You can restore to a point up to the number of days specified by the BackupRetentionPeriod property.
The target database is created with most of the original configuration, but in a system-selected Availability Zone, with the default security group, the default subnet group, and the default DB parameter group. By default, the new DB instance is created as a single-AZ deployment except when the instance is a SQL Server instance that has an option group that is associated with mirroring; in this case, the instance becomes a mirrored deployment and not a single-AZ deployment.
This command doesn't apply to Aurora MySQL and Aurora PostgreSQL. For Aurora, use RestoreDBClusterToPointInTime
.
Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC security groups. Required parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId).
EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.
Starts a database activity stream to monitor activity on the database. For more information, see Database Activity Streams in the Amazon Aurora User Guide.
", + "StartActivityStream": "Starts a database activity stream to monitor activity on the database. For more information, see Monitoring Amazon Aurora with Database Activity Streams in the Amazon Aurora User Guide or Monitoring Amazon RDS with Database Activity Streams in the Amazon RDS User Guide.
", "StartDBCluster": "Starts an Amazon Aurora DB cluster that was stopped using the Amazon Web Services console, the stop-db-cluster CLI command, or the StopDBCluster action.
For more information, see Stopping and Starting an Aurora Cluster in the Amazon Aurora User Guide.
This action only applies to Aurora DB clusters.
Starts an Amazon RDS DB instance that was stopped using the Amazon Web Services console, the stop-db-instance CLI command, or the StopDBInstance action.
For more information, see Starting an Amazon RDS DB instance That Was Previously Stopped in the Amazon RDS User Guide.
This command doesn't apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL. For Aurora DB clusters, use StartDBCluster
instead.
Enables replication of automated backups to a different Amazon Web Services Region.
This command doesn't apply to RDS Custom.
For more information, see Replicating Automated Backups to Another Amazon Web Services Region in the Amazon RDS User Guide.
", "StartExportTask": "Starts an export of a snapshot to Amazon S3. The provided IAM role must have access to the S3 bucket.
This command doesn't apply to RDS Custom.
", - "StopActivityStream": "Stops a database activity stream that was started using the Amazon Web Services console, the start-activity-stream
CLI command, or the StartActivityStream
action.
For more information, see Database Activity Streams in the Amazon Aurora User Guide.
", + "StopActivityStream": "Stops a database activity stream that was started using the Amazon Web Services console, the start-activity-stream
CLI command, or the StartActivityStream
action.
For more information, see Monitoring Amazon Aurora with Database Activity Streams in the Amazon Aurora User Guide or Monitoring Amazon RDS with Database Activity Streams in the Amazon RDS User Guide.
", "StopDBCluster": "Stops an Amazon Aurora DB cluster. When you stop a DB cluster, Aurora retains the DB cluster's metadata, including its endpoints and DB parameter groups. Aurora also retains the transaction logs so you can do a point-in-time restore if necessary.
For more information, see Stopping and Starting an Aurora Cluster in the Amazon Aurora User Guide.
This action only applies to Aurora DB clusters.
Stops an Amazon RDS DB instance. When you stop a DB instance, Amazon RDS retains the DB instance's metadata, including its endpoint, DB parameter group, and option group membership. Amazon RDS also retains the transaction logs so you can do a point-in-time restore if necessary.
For more information, see Stopping an Amazon RDS DB Instance Temporarily in the Amazon RDS User Guide.
This command doesn't apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL. For Aurora clusters, use StopDBCluster
instead.
Stops automated backup replication for a DB instance.
This command doesn't apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL.
For more information, see Replicating Automated Backups to Another Amazon Web Services Region in the Amazon RDS User Guide.
", @@ -2642,6 +2642,7 @@ "CreateDBInstanceReadReplicaMessage$PerformanceInsightsRetentionPeriod": "The number of days to retain Performance Insights data. The default is 7 days. The following values are valid:
7
month * 31, where month is a number of months from 1-23
731
For example, the following values are valid:
93 (3 months * 31)
341 (11 months * 31)
589 (19 months * 31)
731
If you specify a retention period such as 94, which isn't a valid value, RDS issues an error.
This setting doesn't apply to RDS Custom.
", "CreateDBInstanceReadReplicaMessage$MaxAllocatedStorage": "The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.
For more information about this setting, including limitations that apply to it, see Managing capacity automatically with Amazon RDS storage autoscaling in the Amazon RDS User Guide.
", "CreateDBInstanceReadReplicaMessage$StorageThroughput": "Specifies the storage throughput value for the read replica.
This setting doesn't apply to RDS Custom or Amazon Aurora.
", + "CreateDBInstanceReadReplicaMessage$AllocatedStorage": "The amount of storage (in gibibytes) to allocate initially for the read replica. Follow the allocation rules specified in CreateDBInstance
.
Be sure to allocate enough memory for your read replica so that the create operation can succeed. You can also allocate additional memory for future growth.
The number of seconds that a connection to the proxy can be inactive before the proxy disconnects it. You can set this value higher or lower than the connection timeout limit for the associated database.
", "DBCluster$AllocatedStorage": "For all database engines except Amazon Aurora, AllocatedStorage
specifies the allocated storage size in gibibytes (GiB). For Aurora, AllocatedStorage
always returns 1, because Aurora DB cluster storage size isn't fixed, but instead automatically adjusts as needed.
Specifies the number of days for which automatic DB snapshots are retained.
", @@ -2739,7 +2740,8 @@ "RestoreDBInstanceFromDBSnapshotMessage$Port": "The port number on which the database accepts connections.
Default: The same port as the original DB instance
Constraints: Value must be 1150-65535
Specifies the amount of provisioned IOPS for the DB instance, expressed in I/O operations per second. If this parameter isn't specified, the IOPS value is taken from the backup. If this parameter is set to 0, the new instance is converted to a non-PIOPS instance. The conversion takes additional time, though your DB instance is available for connections before the conversion starts.
The provisioned IOPS value must follow the requirements for your database engine. For more information, see Amazon RDS Provisioned IOPS storage in the Amazon RDS User Guide.
Constraints: Must be an integer greater than 1000.
", "RestoreDBInstanceFromDBSnapshotMessage$StorageThroughput": "Specifies the storage throughput value for the DB instance.
This setting doesn't apply to RDS Custom or Amazon Aurora.
", - "RestoreDBInstanceFromS3Message$AllocatedStorage": "The amount of storage (in gigabytes) to allocate initially for the DB instance. Follow the allocation rules specified in CreateDBInstance
.
Be sure to allocate enough memory for your new DB instance so that the restore operation can succeed. You can also allocate additional memory for future growth.
The amount of storage (in gibibytes) to allocate initially for the DB instance. Follow the allocation rules specified in CreateDBInstance.
Be sure to allocate enough memory for your new DB instance so that the restore operation can succeed. You can also allocate additional memory for future growth.
The amount of storage (in gibibytes) to allocate initially for the DB instance. Follow the allocation rules specified in CreateDBInstance
.
Be sure to allocate enough memory for your new DB instance so that the restore operation can succeed. You can also allocate additional memory for future growth.
The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. For more information, see CreateDBInstance
.
The port number on which the database accepts connections.
Type: Integer
Valid Values: 1150
-65535
Default: 3306
The amount of Provisioned IOPS (input/output operations per second) to allocate initially for the DB instance. For information about valid IOPS values, see Amazon RDS Provisioned IOPS storage in the Amazon RDS User Guide.
", @@ -2751,6 +2753,7 @@ "RestoreDBInstanceToPointInTimeMessage$Iops": "The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB instance.
Constraints: Must be an integer greater than 1000.
SQL Server
Setting the IOPS value for the SQL Server database engine isn't supported.
", "RestoreDBInstanceToPointInTimeMessage$MaxAllocatedStorage": "The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance.
For more information about this setting, including limitations that apply to it, see Managing capacity automatically with Amazon RDS storage autoscaling in the Amazon RDS User Guide.
This setting doesn't apply to RDS Custom.
", "RestoreDBInstanceToPointInTimeMessage$StorageThroughput": "Specifies the storage throughput value for the DB instance.
This setting doesn't apply to RDS Custom or Amazon Aurora.
", + "RestoreDBInstanceToPointInTimeMessage$AllocatedStorage": "The amount of storage (in gibibytes) to allocate initially for the DB instance. Follow the allocation rules specified in CreateDBInstance
.
Be sure to allocate enough memory for your new DB instance so that the restore operation can succeed. You can also allocate additional memory for future growth.
The minimum capacity for an Aurora DB cluster in serverless
DB engine mode.
For Aurora MySQL, valid capacity values are 1
, 2
, 4
, 8
, 16
, 32
, 64
, 128
, and 256
.
For Aurora PostgreSQL, valid capacity values are 2
, 4
, 8
, 16
, 32
, 64
, 192
, and 384
.
The minimum capacity must be less than or equal to the maximum capacity.
", "ScalingConfiguration$MaxCapacity": "The maximum capacity for an Aurora DB cluster in serverless
DB engine mode.
For Aurora MySQL, valid capacity values are 1
, 2
, 4
, 8
, 16
, 32
, 64
, 128
, and 256
.
For Aurora PostgreSQL, valid capacity values are 2
, 4
, 8
, 16
, 32
, 64
, 192
, and 384
.
The maximum capacity must be greater than or equal to the minimum capacity.
", "ScalingConfiguration$SecondsUntilAutoPause": "The time, in seconds, before an Aurora DB cluster in serverless
mode is paused.
Specify a value between 300 and 86,400 seconds.
", diff --git a/models/apis/rds/2014-10-31/endpoint-tests-1.json b/models/apis/rds/2014-10-31/endpoint-tests-1.json index d64b18b64c4..8b105992113 100644 --- a/models/apis/rds/2014-10-31/endpoint-tests-1.json +++ b/models/apis/rds/2014-10-31/endpoint-tests-1.json @@ -9,8 +9,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-south-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-south-2" } }, { @@ -22,8 +22,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-south-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-south-2" } }, { @@ -35,8 +35,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-south-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-south-2" } }, { @@ -48,8 +48,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-south-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-south-2" } }, { @@ -61,8 +61,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-south-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-south-1" } }, { @@ -74,8 +74,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-south-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-south-1" } }, { @@ -87,8 +87,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-south-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-south-1" } }, { @@ -100,8 +100,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-south-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-south-1" } }, { @@ -113,8 +113,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-south-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-south-1" } }, { @@ -126,8 +126,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-south-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-south-1" } }, { @@ -139,8 +139,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-south-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-south-1" } }, { @@ -152,8 +152,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-south-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-south-1" } }, { @@ -165,8 +165,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-south-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-south-2" } }, { @@ -178,8 +178,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-south-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-south-2" } }, { @@ -191,8 +191,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-south-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-south-2" } }, { @@ -204,8 +204,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-south-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-south-2" } }, { @@ -217,8 +217,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-gov-east-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-gov-east-1" } }, { @@ -230,8 +230,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-gov-east-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-gov-east-1" } }, { @@ -243,8 +243,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-gov-east-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-gov-east-1" } }, { @@ -256,8 +256,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-gov-east-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-gov-east-1" } }, { @@ -269,8 +269,8 @@ }, "params": { "UseDualStack": true, - "Region": "me-central-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "me-central-1" } }, { @@ -282,8 +282,8 @@ }, "params": { "UseDualStack": false, - "Region": "me-central-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "me-central-1" } }, { @@ -295,8 +295,8 @@ }, "params": { "UseDualStack": true, - "Region": "me-central-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "me-central-1" } }, { @@ -308,8 +308,8 @@ }, "params": { "UseDualStack": false, - "Region": "me-central-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "me-central-1" } }, { @@ -321,8 +321,8 @@ }, "params": { "UseDualStack": true, - "Region": "ca-central-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "ca-central-1" } }, { @@ -334,8 +334,8 @@ }, "params": { "UseDualStack": false, - "Region": "ca-central-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "ca-central-1" } }, { @@ -347,8 +347,8 @@ }, "params": { "UseDualStack": true, - "Region": "ca-central-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "ca-central-1" } }, { @@ -360,8 +360,8 @@ }, "params": { "UseDualStack": false, - "Region": "ca-central-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "ca-central-1" } }, { @@ -373,8 +373,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-central-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-central-1" } }, { @@ -386,8 +386,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-central-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-central-1" } }, { @@ -399,8 +399,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-central-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-central-1" } }, { @@ -412,8 +412,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-central-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-central-1" } }, { @@ -423,8 +423,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-iso-west-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-iso-west-1" } }, { @@ -436,8 +436,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-iso-west-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-iso-west-1" } }, { @@ -447,8 +447,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-iso-west-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-iso-west-1" } }, { @@ -460,8 +460,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-iso-west-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-iso-west-1" } }, { @@ -473,8 +473,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-central-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-central-2" } }, { @@ -486,8 +486,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-central-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-central-2" } }, { @@ -499,8 +499,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-central-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-central-2" } }, { @@ -512,8 +512,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-central-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-central-2" } }, { @@ -525,8 +525,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-west-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-west-1" } }, { @@ -538,8 +538,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-west-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-west-1" } }, { @@ -551,8 +551,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-west-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-west-1" } }, { @@ -564,8 +564,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-west-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-west-1" } }, { @@ -577,8 +577,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-west-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-west-2" } }, { @@ -590,8 +590,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-west-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-west-2" } }, { @@ -603,8 +603,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-west-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-west-2" } }, { @@ -616,8 +616,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-west-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-west-2" } }, { @@ -629,8 +629,8 @@ }, "params": { "UseDualStack": true, - "Region": "af-south-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "af-south-1" } }, { @@ -642,8 +642,8 @@ }, "params": { "UseDualStack": false, - "Region": "af-south-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "af-south-1" } }, { @@ -655,8 +655,8 @@ }, "params": { "UseDualStack": true, - "Region": "af-south-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "af-south-1" } }, { @@ -668,8 +668,8 @@ }, "params": { "UseDualStack": false, - "Region": "af-south-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "af-south-1" } }, { @@ -681,8 +681,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-north-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-north-1" } }, { @@ -694,8 +694,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-north-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-north-1" } }, { @@ -707,8 +707,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-north-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-north-1" } }, { @@ -720,8 +720,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-north-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-north-1" } }, { @@ -733,8 +733,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-west-3", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-west-3" } }, { @@ -746,8 +746,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-west-3", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-west-3" } }, { @@ -759,8 +759,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-west-3", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-west-3" } }, { @@ -772,8 +772,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-west-3", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-west-3" } }, { @@ -785,8 +785,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-west-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-west-2" } }, { @@ -798,8 +798,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-west-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-west-2" } }, { @@ -811,8 +811,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-west-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-west-2" } }, { @@ -824,8 +824,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-west-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-west-2" } }, { @@ -837,8 +837,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-west-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-west-1" } }, { @@ -850,8 +850,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-west-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "eu-west-1" } }, { @@ -863,8 +863,8 @@ }, "params": { "UseDualStack": true, - "Region": "eu-west-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-west-1" } }, { @@ -876,8 +876,8 @@ }, "params": { "UseDualStack": false, - "Region": "eu-west-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "eu-west-1" } }, { @@ -889,8 +889,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-northeast-3", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-northeast-3" } }, { @@ -902,8 +902,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-northeast-3", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-northeast-3" } }, { @@ -915,8 +915,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-northeast-3", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-northeast-3" } }, { @@ -928,8 +928,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-northeast-3", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-northeast-3" } }, { @@ -941,8 +941,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-northeast-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-northeast-2" } }, { @@ -954,8 +954,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-northeast-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-northeast-2" } }, { @@ -967,8 +967,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-northeast-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-northeast-2" } }, { @@ -980,8 +980,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-northeast-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-northeast-2" } }, { @@ -993,8 +993,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-northeast-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-northeast-1" } }, { @@ -1006,8 +1006,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-northeast-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-northeast-1" } }, { @@ -1019,8 +1019,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-northeast-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-northeast-1" } }, { @@ -1032,8 +1032,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-northeast-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-northeast-1" } }, { @@ -1045,8 +1045,8 @@ }, "params": { "UseDualStack": true, - "Region": "me-south-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "me-south-1" } }, { @@ -1058,8 +1058,8 @@ }, "params": { "UseDualStack": false, - "Region": "me-south-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "me-south-1" } }, { @@ -1071,8 +1071,8 @@ }, "params": { "UseDualStack": true, - "Region": "me-south-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "me-south-1" } }, { @@ -1084,8 +1084,8 @@ }, "params": { "UseDualStack": false, - "Region": "me-south-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "me-south-1" } }, { @@ -1097,8 +1097,8 @@ }, "params": { "UseDualStack": true, - "Region": "sa-east-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "sa-east-1" } }, { @@ -1110,8 +1110,8 @@ }, "params": { "UseDualStack": false, - "Region": "sa-east-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "sa-east-1" } }, { @@ -1123,8 +1123,8 @@ }, "params": { "UseDualStack": true, - "Region": "sa-east-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "sa-east-1" } }, { @@ -1136,8 +1136,8 @@ }, "params": { "UseDualStack": false, - "Region": "sa-east-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "sa-east-1" } }, { @@ -1149,8 +1149,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-east-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-east-1" } }, { @@ -1162,8 +1162,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-east-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-east-1" } }, { @@ -1175,8 +1175,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-east-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-east-1" } }, { @@ -1188,8 +1188,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-east-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-east-1" } }, { @@ -1201,8 +1201,8 @@ }, "params": { "UseDualStack": true, - "Region": "cn-north-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "cn-north-1" } }, { @@ -1214,8 +1214,8 @@ }, "params": { "UseDualStack": false, - "Region": "cn-north-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "cn-north-1" } }, { @@ -1227,8 +1227,8 @@ }, "params": { "UseDualStack": true, - "Region": "cn-north-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "cn-north-1" } }, { @@ -1240,8 +1240,8 @@ }, "params": { "UseDualStack": false, - "Region": "cn-north-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "cn-north-1" } }, { @@ -1253,8 +1253,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-gov-west-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-gov-west-1" } }, { @@ -1266,8 +1266,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-gov-west-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-gov-west-1" } }, { @@ -1279,8 +1279,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-gov-west-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-gov-west-1" } }, { @@ -1292,8 +1292,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-gov-west-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-gov-west-1" } }, { @@ -1305,8 +1305,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-southeast-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-southeast-1" } }, { @@ -1318,8 +1318,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-southeast-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-southeast-1" } }, { @@ -1331,8 +1331,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-southeast-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-southeast-1" } }, { @@ -1344,8 +1344,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-southeast-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-southeast-1" } }, { @@ -1357,8 +1357,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-southeast-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-southeast-2" } }, { @@ -1370,8 +1370,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-southeast-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-southeast-2" } }, { @@ -1383,8 +1383,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-southeast-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-southeast-2" } }, { @@ -1396,8 +1396,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-southeast-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-southeast-2" } }, { @@ -1407,8 +1407,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-iso-east-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-iso-east-1" } }, { @@ -1420,8 +1420,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-iso-east-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-iso-east-1" } }, { @@ -1431,8 +1431,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-iso-east-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-iso-east-1" } }, { @@ -1444,8 +1444,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-iso-east-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-iso-east-1" } }, { @@ -1457,8 +1457,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-southeast-3", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-southeast-3" } }, { @@ -1470,8 +1470,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-southeast-3", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-southeast-3" } }, { @@ -1483,8 +1483,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-southeast-3", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-southeast-3" } }, { @@ -1496,8 +1496,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-southeast-3", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-southeast-3" } }, { @@ -1509,8 +1509,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-southeast-4", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-southeast-4" } }, { @@ -1522,8 +1522,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-southeast-4", - "UseFIPS": true + "UseFIPS": true, + "Region": "ap-southeast-4" } }, { @@ -1535,8 +1535,8 @@ }, "params": { "UseDualStack": true, - "Region": "ap-southeast-4", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-southeast-4" } }, { @@ -1548,8 +1548,8 @@ }, "params": { "UseDualStack": false, - "Region": "ap-southeast-4", - "UseFIPS": false + "UseFIPS": false, + "Region": "ap-southeast-4" } }, { @@ -1561,8 +1561,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-east-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-east-1" } }, { @@ -1574,8 +1574,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-east-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-east-1" } }, { @@ -1587,8 +1587,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-east-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-east-1" } }, { @@ -1600,8 +1600,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-east-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-east-1" } }, { @@ -1613,8 +1613,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-east-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-east-2" } }, { @@ -1626,8 +1626,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-east-2", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-east-2" } }, { @@ -1639,8 +1639,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-east-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-east-2" } }, { @@ -1652,8 +1652,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-east-2", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-east-2" } }, { @@ -1665,8 +1665,8 @@ }, "params": { "UseDualStack": true, - "Region": "cn-northwest-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "cn-northwest-1" } }, { @@ -1678,8 +1678,8 @@ }, "params": { "UseDualStack": false, - "Region": "cn-northwest-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "cn-northwest-1" } }, { @@ -1691,8 +1691,8 @@ }, "params": { "UseDualStack": true, - "Region": "cn-northwest-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "cn-northwest-1" } }, { @@ -1704,8 +1704,8 @@ }, "params": { "UseDualStack": false, - "Region": "cn-northwest-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "cn-northwest-1" } }, { @@ -1715,8 +1715,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-isob-east-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-isob-east-1" } }, { @@ -1728,8 +1728,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-isob-east-1", - "UseFIPS": true + "UseFIPS": true, + "Region": "us-isob-east-1" } }, { @@ -1739,8 +1739,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-isob-east-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-isob-east-1" } }, { @@ -1752,8 +1752,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-isob-east-1", - "UseFIPS": false + "UseFIPS": false, + "Region": "us-isob-east-1" } }, { @@ -1765,8 +1765,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-east-1", "UseFIPS": false, + "Region": "us-east-1", "Endpoint": "https://example.com" } }, @@ -1777,8 +1777,8 @@ }, "params": { "UseDualStack": false, - "Region": "us-east-1", "UseFIPS": true, + "Region": "us-east-1", "Endpoint": "https://example.com" } }, @@ -1789,8 +1789,8 @@ }, "params": { "UseDualStack": true, - "Region": "us-east-1", "UseFIPS": false, + "Region": "us-east-1", "Endpoint": "https://example.com" } } diff --git a/models/endpoints/endpoints.json b/models/endpoints/endpoints.json index b14945fe4cb..26893d78953 100644 --- a/models/endpoints/endpoints.json +++ b/models/endpoints/endpoints.json @@ -8151,18 +8151,12 @@ "ap-east-1" : { "hostname" : "kendra-ranking.ap-east-1.api.aws" }, - "ap-northeast-1" : { - "hostname" : "kendra-ranking.ap-northeast-1.api.aws" - }, "ap-northeast-2" : { "hostname" : "kendra-ranking.ap-northeast-2.api.aws" }, "ap-northeast-3" : { "hostname" : "kendra-ranking.ap-northeast-3.api.aws" }, - "ap-south-1" : { - "hostname" : "kendra-ranking.ap-south-1.api.aws" - }, "ap-south-2" : { "hostname" : "kendra-ranking.ap-south-2.api.aws" }, @@ -14403,6 +14397,7 @@ }, "ssm-sap" : { "endpoints" : { + "ap-southeast-2" : { }, "us-east-1" : { } } }, diff --git a/service/locationservice/api.go b/service/locationservice/api.go index 7eaebd3ae5e..518b36fe158 100644 --- a/service/locationservice/api.go +++ b/service/locationservice/api.go @@ -1051,6 +1051,11 @@ func (c *LocationService) CreateGeofenceCollectionRequest(input *CreateGeofenceC // - ValidationException // The input failed to meet the constraints specified by the AWS service. // +// - ServiceQuotaExceededException +// The operation was denied because the request would exceed the maximum quota +// (https://docs.aws.amazon.com/location/latest/developerguide/location-quotas.html) +// set for Amazon Location Service. +// // - ThrottlingException // The request was denied because of request throttling. // @@ -1125,7 +1130,7 @@ func (c *LocationService) CreateMapRequest(input *CreateMapInput) (req *request. // styles sourced from global location data providers. // // If your application is tracking or routing assets you use in your business, -// such as delivery vehicles or employees, you may only use HERE as your geolocation +// such as delivery vehicles or employees, you must not use Esri as your geolocation // provider. See section 82 of the AWS service terms (http://aws.amazon.com/service-terms) // for more details. // @@ -1152,6 +1157,11 @@ func (c *LocationService) CreateMapRequest(input *CreateMapInput) (req *request. // - ValidationException // The input failed to meet the constraints specified by the AWS service. // +// - ServiceQuotaExceededException +// The operation was denied because the request would exceed the maximum quota +// (https://docs.aws.amazon.com/location/latest/developerguide/location-quotas.html) +// set for Amazon Location Service. +// // - ThrottlingException // The request was denied because of request throttling. // @@ -1229,7 +1239,7 @@ func (c *LocationService) CreatePlaceIndexRequest(input *CreatePlaceIndexInput) // operation. // // If your application is tracking or routing assets you use in your business, -// such as delivery vehicles or employees, you may only use HERE as your geolocation +// such as delivery vehicles or employees, you must not use Esri as your geolocation // provider. See section 82 of the AWS service terms (http://aws.amazon.com/service-terms) // for more details. // @@ -1256,6 +1266,11 @@ func (c *LocationService) CreatePlaceIndexRequest(input *CreatePlaceIndexInput) // - ValidationException // The input failed to meet the constraints specified by the AWS service. // +// - ServiceQuotaExceededException +// The operation was denied because the request would exceed the maximum quota +// (https://docs.aws.amazon.com/location/latest/developerguide/location-quotas.html) +// set for Amazon Location Service. +// // - ThrottlingException // The request was denied because of request throttling. // @@ -1333,7 +1348,7 @@ func (c *LocationService) CreateRouteCalculatorRequest(input *CreateRouteCalcula // network data from your chosen data provider. // // If your application is tracking or routing assets you use in your business, -// such as delivery vehicles or employees, you may only use HERE as your geolocation +// such as delivery vehicles or employees, you must not use Esri as your geolocation // provider. See section 82 of the AWS service terms (http://aws.amazon.com/service-terms) // for more details. // @@ -1360,6 +1375,11 @@ func (c *LocationService) CreateRouteCalculatorRequest(input *CreateRouteCalcula // - ValidationException // The input failed to meet the constraints specified by the AWS service. // +// - ServiceQuotaExceededException +// The operation was denied because the request would exceed the maximum quota +// (https://docs.aws.amazon.com/location/latest/developerguide/location-quotas.html) +// set for Amazon Location Service. +// // - ThrottlingException // The request was denied because of request throttling. // @@ -5141,15 +5161,17 @@ func (c *LocationService) TagResourceRequest(input *TagResourceInput) (req *requ // Assigns one or more tags (key-value pairs) to the specified Amazon Location // Service resource. // -//Tags can help you organize and categorize your resources. You can also -// use them to scope user permissions, by granting a user permission to access -// or change only resources with certain tag values.
You can use the
-// TagResource
operation with an Amazon Location Service resource
-// that already has tags. If you specify a new tag key for the resource,
-// this tag is appended to the tags already associated with the resource.
-// If you specify a tag key that's already associated with the resource,
-// the new tag value that you specify replaces the previous value for that
-// tag.
You can associate up to 50 tags with a resource.
+// Tags can help you organize and categorize your resources. You can also use +// them to scope user permissions, by granting a user permission to access or +// change only resources with certain tag values. +// +// You can use the TagResource operation with an Amazon Location Service resource +// that already has tags. If you specify a new tag key for the resource, this +// tag is appended to the tags already associated with the resource. If you +// specify a tag key that's already associated with the resource, the new tag +// value that you specify replaces the previous value for that tag. +// +// You can associate up to 50 tags with a resource. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -7188,8 +7210,17 @@ type CalculateRouteInput struct { IncludeLegGeometry *bool `type:"boolean"` // Specifies the mode of transport when calculating a route. Used in estimating - // the speed of travel and road compatibility. You can choose Car, Truck, or - // Walking as options for the TravelMode. + // the speed of travel and road compatibility. You can choose Car, Truck, Walking, + // Bicycle or Motorcycle as options for the TravelMode. + // + // Bicycle and Motorcycle are only valid when using Grab as a data provider, + // and only within Southeast Asia. + // + // Truck is not available for Grab. + // + // For more details on the using Grab for routing, including areas of coverage, + // see GrabMaps (https://docs.aws.amazon.com/location/latest/developerguide/grab.html) + // in the Amazon Location Service Developer Guide. // // The TravelMode you specify also determines how you specify route preferences: // @@ -7426,6 +7457,14 @@ type CalculateRouteMatrixInput struct { // // * If traveling by Truck use the TruckModeOptions parameter. // + // Bicycle or Motorcycle are only valid when using Grab as a data provider, + // and only within Southeast Asia. + // + // Truck is not available for Grab. + // + // For more information about using Grab as a data provider, see GrabMaps (https://docs.aws.amazon.com/location/latest/developerguide/grab.html) + // in the Amazon Location Service Developer Guide. + // // Default Value: Car TravelMode *string `type:"string" enum:"TravelMode"` @@ -7617,6 +7656,8 @@ type CalculateRouteMatrixSummary struct { // // * Esri // + // * Grab + // // * Here // // For more information about data providers, see Amazon Location Service data @@ -7760,6 +7801,8 @@ type CalculateRouteSummary struct { // // * Esri // + // * Grab + // // * Here // // For more information about data providers, see Amazon Location Service data @@ -8458,6 +8501,10 @@ type CreatePlaceIndexInput struct { // coverage in your region of interest, see Esri details on geocoding coverage // (https://developers.arcgis.com/rest/geocode/api-reference/geocode-coverage.htm). // + // * Grab – Grab provides place index functionality for Southeast Asia. + // For additional information about GrabMaps (https://docs.aws.amazon.com/location/latest/developerguide/grab.html)' + // coverage, see GrabMaps countries and areas covered (https://docs.aws.amazon.com/location/latest/developerguide/grab.html#grab-coverage-area). + // // * Here – For additional information about HERE Technologies (https://docs.aws.amazon.com/location/latest/developerguide/HERE.html)' // coverage in your region of interest, see HERE details on goecoding coverage // (https://developer.here.com/documentation/geocoder/dev_guide/topics/coverage-geocoder.html). @@ -8671,14 +8718,19 @@ type CreateRouteCalculatorInput struct { // Specifies the data provider of traffic and road network data. // // This field is case-sensitive. Enter the valid values as shown. For example, - // entering HERE returns an error. Route calculators that use Esri as a data - // source only calculate routes that are shorter than 400 km. + // entering HERE returns an error. // // Valid values include: // // * Esri – For additional information about Esri (https://docs.aws.amazon.com/location/latest/developerguide/esri.html)'s // coverage in your region of interest, see Esri details on street networks // and traffic coverage (https://doc.arcgis.com/en/arcgis-online/reference/network-coverage.htm). + // Route calculators that use Esri as a data source only calculate routes + // that are shorter than 400 km. + // + // * Grab – Grab provides routing functionality for Southeast Asia. For + // additional information about GrabMaps (https://docs.aws.amazon.com/location/latest/developerguide/grab.html)' + // coverage, see GrabMaps countries and areas covered (https://docs.aws.amazon.com/location/latest/developerguide/grab.html#grab-coverage-area). // // * Here – For additional information about HERE Technologies (https://docs.aws.amazon.com/location/latest/developerguide/HERE.html)' // coverage in your region of interest, see HERE car routing coverage (https://developer.here.com/documentation/routing-api/dev_guide/topics/coverage/car-routing.html) @@ -9889,6 +9941,8 @@ type DescribePlaceIndexOutput struct { // // * Esri // + // * Grab + // // * Here // // For more information about data providers, see Amazon Location Service data @@ -10085,6 +10139,8 @@ type DescribeRouteCalculatorOutput struct { // // * Esri // + // * Grab + // // * Here // // For more information about data providers, see Amazon Location Service data @@ -11265,6 +11321,12 @@ type GetMapGlyphsInput struct { // – Fira GO Italic | Fira GO Map | Fira GO Map Bold | Noto Sans CJK JP // Bold | Noto Sans CJK JP Light | Noto Sans CJK JP Regular // + // Valid font stacks for GrabMaps (https://docs.aws.amazon.com/location/latest/developerguide/grab.html) + // styles: + // + // * VectorGrabStandardLight, VectorGrabStandardDark – Noto Sans Regular + // | Noto Sans Medium | Noto Sans Bold + // // Valid font stacks for Open Data (Preview) (https://docs.aws.amazon.com/location/latest/developerguide/open-data.html) // styles: // @@ -13031,6 +13093,8 @@ type ListPlaceIndexesResponseEntry struct { // // * Esri // + // * Grab + // // * Here // // For more information about data providers, see Amazon Location Service data @@ -13241,6 +13305,8 @@ type ListRouteCalculatorsResponseEntry struct { // // * Esri // + // * Grab + // // * Here // // For more information about data providers, see Amazon Location Service data @@ -13786,6 +13852,19 @@ type MapConfiguration struct { // more tiles are retrieved than when using either vector or raster tiles // alone. Your charges will include all tiles retrieved. // + // Valid GrabMaps map styles (https://docs.aws.amazon.com/location/latest/developerguide/grab.html): + // + // * VectorGrabStandardLight – The Grab Standard Light map style provides + // a basemap with detailed land use coloring, area names, roads, landmarks, + // and points of interest covering Southeast Asia. + // + // * VectorGrabStandardDark – The Grab Standard Dark map style provides + // a dark variation of the standard basemap covering Southeast Asia. + // + // Grab provides maps only for countries in Southeast Asia, and is only available + // in the Asia Pacific (Singapore) Region (ap-southeast-1). For more information, + // see GrabMaps countries and area covered (https://docs.aws.amazon.com/location/latest/developerguide/grab.html#grab-coverage-area). + // // Valid Open Data (Preview) map styles (https://docs.aws.amazon.com/location/latest/developerguide/open-data.html): // // * VectorOpenDataStandardLight – The Open Data Standard Light (preview) @@ -13893,8 +13972,7 @@ type Place struct { // Street. Street *string `type:"string"` - // A country, or an area that's part of a larger region. For example, Metro - // Vancouver. + // A county, or an area that's part of a larger region. For example, Metro Vancouver. SubRegion *string `type:"string"` // The time zone in which the Place is located. Returned only when using HERE @@ -14451,7 +14529,7 @@ type SearchForPositionResult struct { // to find the place again later. // // For SearchPlaceIndexForPosition operations, the PlaceId is returned only - // by place indexes that use HERE as a data provider. + // by place indexes that use HERE or Grab as a data provider. PlaceId *string `type:"string"` } @@ -14500,7 +14578,7 @@ type SearchForSuggestionsResult struct { // to find the place again later. // // For SearchPlaceIndexForSuggestions operations, the PlaceId is returned by - // place indexes that use HERE or Esri as data providers. + // place indexes that use Esri, Grab, or HERE as data providers. PlaceId *string `type:"string"` // The text of the place suggestion, typically formatted as an address string. @@ -14561,7 +14639,7 @@ type SearchForTextResult struct { // to find the place again later. // // For SearchPlaceIndexForText operations, the PlaceId is returned only by place - // indexes that use HERE as a data provider. + // indexes that use HERE or Grab as a data provider. PlaceId *string `type:"string"` // The relative confidence in the match for a result among the results returned. @@ -14569,7 +14647,7 @@ type SearchForTextResult struct { // street, city, country/region, and postal code), the relevance score is closer // to 1. // - // Returned only when the partner selected is Esri. + // Returned only when the partner selected is Esri or Grab. Relevance *float64 `type:"double"` } @@ -14789,6 +14867,8 @@ type SearchPlaceIndexForPositionSummary struct { // // * Esri // + // * Grab + // // * Here // // For more information about data providers, see Amazon Location Service data @@ -15116,6 +15196,8 @@ type SearchPlaceIndexForSuggestionsSummary struct { // // * Esri // + // * Grab + // // * Here // // For more information about data providers, see Amazon Location Service data @@ -15474,6 +15556,8 @@ type SearchPlaceIndexForTextSummary struct { // // * Esri // + // * Grab + // // * Here // // For more information about data providers, see Amazon Location Service data @@ -17161,6 +17245,12 @@ const ( // TravelModeWalking is a TravelMode enum value TravelModeWalking = "Walking" + + // TravelModeBicycle is a TravelMode enum value + TravelModeBicycle = "Bicycle" + + // TravelModeMotorcycle is a TravelMode enum value + TravelModeMotorcycle = "Motorcycle" ) // TravelMode_Values returns all elements of the TravelMode enum @@ -17169,6 +17259,8 @@ func TravelMode_Values() []string { TravelModeCar, TravelModeTruck, TravelModeWalking, + TravelModeBicycle, + TravelModeMotorcycle, } } diff --git a/service/rds/api.go b/service/rds/api.go index 9c3497010a0..724871c2020 100644 --- a/service/rds/api.go +++ b/service/rds/api.go @@ -14518,8 +14518,11 @@ func (c *RDS) StartActivityStreamRequest(input *StartActivityStreamInput) (req * // StartActivityStream API operation for Amazon Relational Database Service. // // Starts a database activity stream to monitor activity on the database. For -// more information, see Database Activity Streams (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html) -// in the Amazon Aurora User Guide. +// more information, see Monitoring Amazon Aurora with Database Activity Streams +// (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html) +// in the Amazon Aurora User Guide or Monitoring Amazon RDS with Database Activity +// Streams (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/DBActivityStreams.html) +// in the Amazon RDS User Guide. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -15045,8 +15048,11 @@ func (c *RDS) StopActivityStreamRequest(input *StopActivityStreamInput) (req *re // console, the start-activity-stream CLI command, or the StartActivityStream // action. // -// For more information, see Database Activity Streams (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html) -// in the Amazon Aurora User Guide. +// For more information, see Monitoring Amazon Aurora with Database Activity +// Streams (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html) +// in the Amazon Aurora User Guide or Monitoring Amazon RDS with Database Activity +// Streams (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/DBActivityStreams.html) +// in the Amazon RDS User Guide. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -22319,6 +22325,14 @@ func (s *CreateDBInstanceOutput) SetDBInstance(v *DBInstance) *CreateDBInstanceO type CreateDBInstanceReadReplicaInput struct { _ struct{} `type:"structure"` + // The amount of storage (in gibibytes) to allocate initially for the read replica. + // Follow the allocation rules specified in CreateDBInstance. + // + // Be sure to allocate enough memory for your read replica so that the create + // operation can succeed. You can also allocate additional memory for future + // growth. + AllocatedStorage *int64 `type:"integer"` + // A value that indicates whether minor engine upgrades are applied automatically // to the read replica during the maintenance window. // @@ -22835,6 +22849,12 @@ func (s *CreateDBInstanceReadReplicaInput) Validate() error { return nil } +// SetAllocatedStorage sets the AllocatedStorage field's value. +func (s *CreateDBInstanceReadReplicaInput) SetAllocatedStorage(v int64) *CreateDBInstanceReadReplicaInput { + s.AllocatedStorage = &v + return s +} + // SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value. func (s *CreateDBInstanceReadReplicaInput) SetAutoMinorVersionUpgrade(v bool) *CreateDBInstanceReadReplicaInput { s.AutoMinorVersionUpgrade = &v @@ -48744,6 +48764,14 @@ func (s *RestoreDBClusterToPointInTimeOutput) SetDBCluster(v *DBCluster) *Restor type RestoreDBInstanceFromDBSnapshotInput struct { _ struct{} `type:"structure"` + // The amount of storage (in gibibytes) to allocate initially for the DB instance. + // Follow the allocation rules specified in CreateDBInstance. + // + // Be sure to allocate enough memory for your new DB instance so that the restore + // operation can succeed. You can also allocate additional memory for future + // growth. + AllocatedStorage *int64 `type:"integer"` + // A value that indicates whether minor version upgrades are applied automatically // to the DB instance during the maintenance window. // @@ -49146,6 +49174,12 @@ func (s *RestoreDBInstanceFromDBSnapshotInput) Validate() error { return nil } +// SetAllocatedStorage sets the AllocatedStorage field's value. +func (s *RestoreDBInstanceFromDBSnapshotInput) SetAllocatedStorage(v int64) *RestoreDBInstanceFromDBSnapshotInput { + s.AllocatedStorage = &v + return s +} + // SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value. func (s *RestoreDBInstanceFromDBSnapshotInput) SetAutoMinorVersionUpgrade(v bool) *RestoreDBInstanceFromDBSnapshotInput { s.AutoMinorVersionUpgrade = &v @@ -49389,7 +49423,7 @@ func (s *RestoreDBInstanceFromDBSnapshotOutput) SetDBInstance(v *DBInstance) *Re type RestoreDBInstanceFromS3Input struct { _ struct{} `type:"structure"` - // The amount of storage (in gigabytes) to allocate initially for the DB instance. + // The amount of storage (in gibibytes) to allocate initially for the DB instance. // Follow the allocation rules specified in CreateDBInstance. // // Be sure to allocate enough memory for your new DB instance so that the restore @@ -50195,6 +50229,14 @@ func (s *RestoreDBInstanceFromS3Output) SetDBInstance(v *DBInstance) *RestoreDBI type RestoreDBInstanceToPointInTimeInput struct { _ struct{} `type:"structure"` + // The amount of storage (in gibibytes) to allocate initially for the DB instance. + // Follow the allocation rules specified in CreateDBInstance. + // + // Be sure to allocate enough memory for your new DB instance so that the restore + // operation can succeed. You can also allocate additional memory for future + // growth. + AllocatedStorage *int64 `type:"integer"` + // A value that indicates whether minor version upgrades are applied automatically // to the DB instance during the maintenance window. // @@ -50589,6 +50631,12 @@ func (s *RestoreDBInstanceToPointInTimeInput) Validate() error { return nil } +// SetAllocatedStorage sets the AllocatedStorage field's value. +func (s *RestoreDBInstanceToPointInTimeInput) SetAllocatedStorage(v int64) *RestoreDBInstanceToPointInTimeInput { + s.AllocatedStorage = &v + return s +} + // SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value. func (s *RestoreDBInstanceToPointInTimeInput) SetAutoMinorVersionUpgrade(v bool) *RestoreDBInstanceToPointInTimeInput { s.AutoMinorVersionUpgrade = &v