Skip to content

Commit 5ceabb7

Browse files
author
Tianyi Wang
committed
merge from main
1 parent b0e0b9f commit 5ceabb7

File tree

421 files changed

+16284
-3519
lines changed

Some content is hidden

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

421 files changed

+16284
-3519
lines changed

codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/customization/AwsEndpointBuiltins.java

+31
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@
55
import software.amazon.smithy.go.codegen.GoDelegator;
66
import software.amazon.smithy.go.codegen.GoSettings;
77
import software.amazon.smithy.go.codegen.GoWriter;
8+
import software.amazon.smithy.go.codegen.SmithyGoTypes;
89
import software.amazon.smithy.go.codegen.integration.GoIntegration;
910
import software.amazon.smithy.go.codegen.integration.RuntimeClientPlugin;
1011
import software.amazon.smithy.model.Model;
12+
import software.amazon.smithy.rulesengine.traits.EndpointRuleSetTrait;
1113
import software.amazon.smithy.utils.ListUtils;
14+
import software.amazon.smithy.utils.MapUtils;
1215

1316
import java.util.List;
1417

@@ -36,6 +39,8 @@ public class AwsEndpointBuiltins implements GoIntegration {
3639
goTemplate("$T(options.UseARNRegion)", SdkGoTypes.Aws.Bool);
3740
private static final GoWriter.Writable BindAwsS3DisableMultiRegionAccessPoints =
3841
goTemplate("$T(options.DisableMultiRegionAccessPoints)", SdkGoTypes.Aws.Bool);
42+
private static final GoWriter.Writable BindAccountID =
43+
goTemplate("resolveAccountID(getIdentity(ctx), options.AccountIDEndpointMode)");
3944

4045
@Override
4146
public List<RuntimeClientPlugin> getClientPlugins() {
@@ -49,12 +54,38 @@ public List<RuntimeClientPlugin> getClientPlugins() {
4954
.addEndpointBuiltinBinding("AWS::S3::UseArnRegion", BindAwsS3UseArnRegion)
5055
.addEndpointBuiltinBinding("AWS::S3::DisableMultiRegionAccessPoints", BindAwsS3DisableMultiRegionAccessPoints)
5156
.addEndpointBuiltinBinding("AWS::S3Control::UseArnRegion", BindAwsS3UseArnRegion)
57+
.addEndpointBuiltinBinding("AWS::Auth::AccountId", BindAccountID)
5258
.build());
5359
}
5460

5561
@Override
5662
public void writeAdditionalFiles(GoSettings settings, Model model, SymbolProvider symbolProvider, GoDelegator goDelegator) {
5763
goDelegator.useFileWriter("endpoints.go", settings.getModuleName(), builtinBindingSource());
64+
if (!settings.getService(model).hasTrait(EndpointRuleSetTrait.class)) {
65+
return;
66+
}
67+
goDelegator.useShapeWriter(settings.getService(model), goTemplate("""
68+
func resolveAccountID(identity $auth:T, mode $accountIDEndpointMode:T) *string {
69+
if mode == $aidModeDisabled:T {
70+
return nil
71+
}
72+
73+
if ca, ok := identity.(*$credentialsAdapter:T); ok && ca.Credentials.AccountID != "" {
74+
return $string:T(ca.Credentials.AccountID)
75+
}
76+
77+
return nil
78+
}
79+
""",
80+
MapUtils.of(
81+
"auth", SmithyGoTypes.Auth.Identity,
82+
"accountIDEndpointMode", SdkGoTypes.Aws.AccountIDEndpointMode,
83+
"aidModeUnset", SdkGoTypes.Aws.AccountIDEndpointModeUnset,
84+
"aidModeDisabled", SdkGoTypes.Aws.AccountIDEndpointModeDisabled,
85+
"credentialsAdapter", SdkGoTypes.Internal.Auth.Smithy.CredentialsAdapter,
86+
"string", SdkGoTypes.Aws.String
87+
)
88+
));
5889
}
5990

6091
private GoWriter.Writable builtinBindingSource() {

codegen/smithy-aws-go-codegen/src/main/resources/META-INF/services/software.amazon.smithy.go.codegen.integration.GoIntegration

+2-1
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,5 @@ software.amazon.smithy.aws.go.codegen.customization.CloudFrontKVSSigV4a
7676
software.amazon.smithy.aws.go.codegen.customization.BackfillProtocolTestServiceTrait
7777
software.amazon.smithy.go.codegen.integration.MiddlewareStackSnapshotTests
7878
software.amazon.smithy.aws.go.codegen.customization.s3.S3ExpiresShapeCustomization
79-
software.amazon.smithy.aws.go.codegen.ClockSkewGenerator
79+
software.amazon.smithy.aws.go.codegen.ClockSkewGenerator
80+
software.amazon.smithy.aws.go.codegen.customization.AccountIDEndpointRouting

feature/dynamodbstreams/attributevalue/go_module_metadata.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protocoltest/awsrestjson/auth.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protocoltest/ec2query/auth.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protocoltest/jsonrpc10/auth.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protocoltest/query/auth.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protocoltest/restxml/auth.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protocoltest/restxmlwithnamespace/api_client.go

+10-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protocoltest/restxmlwithnamespace/auth.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protocoltest/smithyrpcv2cbor/api_client.go

+9-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protocoltest/smithyrpcv2cbor/auth.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protocoltest/smithyrpcv2cbor/options.go

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

service/accessanalyzer/api_client.go

+42-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)