-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
55 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"id": "873fb1ab-bfbb-4110-89cd-bf7ac352bc86", | ||
"type": "feature", | ||
"description": "⚠️ **IMPORTANT**: Enable account ID based endpoint routing for services that use it", | ||
"description": "⚠️ **IMPORTANT**: Enable account ID based endpoint routing for services that support it", | ||
"requiresMinorVersionBump": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
...aws-kotlin-codegen/src/main/kotlin/aws/sdk/kotlin/codegen/protocols/endpoints/Builtins.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package aws.sdk.kotlin.codegen.protocols.endpoints | ||
|
||
object AwsBuiltins { | ||
const val ACCOUNT_ID = "AWS::Auth::AccountId" | ||
const val REGION = "AWS::Region" | ||
const val USE_FIPS = "AWS::UseFIPS" | ||
const val USE_DUAL_STACK = "AWS::UseDualStack" | ||
const val SDK_ENDPOINT = "SDK::Endpoint" | ||
const val S3_ACCELERATE = "AWS::S3::Accelerate" | ||
const val S3_FORCE_PATH_STYLE = "AWS::S3::ForcePathStyle" | ||
const val S3_DISABLE_MRAP = "AWS::S3::DisableMultiRegionAccessPoints" | ||
const val S3_USE_ARN_REGION = "AWS::S3::UseArnRegion" | ||
const val S3_CONTROL_USE_ARN_REGION = "AWS::S3Control::UseArnRegion" | ||
const val S3_USE_GLOBAL_ENDPOINT = "AWS::S3::UseGlobalEndpoint" | ||
const val STS_USE_GLOBAL_ENDPOINT = "AWS::STS::UseGlobalEndpoint" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters