| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139 |
- // Code generated by smithy-go-codegen DO NOT EDIT.
- package sts
- import (
- "context"
- "errors"
- "fmt"
- "github.com/aws/aws-sdk-go-v2/aws"
- awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
- internalConfig "github.com/aws/aws-sdk-go-v2/internal/configsources"
- "github.com/aws/aws-sdk-go-v2/internal/endpoints"
- "github.com/aws/aws-sdk-go-v2/internal/endpoints/awsrulesfn"
- internalendpoints "github.com/aws/aws-sdk-go-v2/service/sts/internal/endpoints"
- smithy "github.com/aws/smithy-go"
- smithyauth "github.com/aws/smithy-go/auth"
- smithyendpoints "github.com/aws/smithy-go/endpoints"
- "github.com/aws/smithy-go/middleware"
- "github.com/aws/smithy-go/ptr"
- "github.com/aws/smithy-go/tracing"
- smithyhttp "github.com/aws/smithy-go/transport/http"
- "net/http"
- "net/url"
- "os"
- "strings"
- )
- // EndpointResolverOptions is the service endpoint resolver options
- type EndpointResolverOptions = internalendpoints.Options
- // EndpointResolver interface for resolving service endpoints.
- type EndpointResolver interface {
- ResolveEndpoint(region string, options EndpointResolverOptions) (aws.Endpoint, error)
- }
- var _ EndpointResolver = &internalendpoints.Resolver{}
- // NewDefaultEndpointResolver constructs a new service endpoint resolver
- func NewDefaultEndpointResolver() *internalendpoints.Resolver {
- return internalendpoints.New()
- }
- // EndpointResolverFunc is a helper utility that wraps a function so it satisfies
- // the EndpointResolver interface. This is useful when you want to add additional
- // endpoint resolving logic, or stub out specific endpoints with custom values.
- type EndpointResolverFunc func(region string, options EndpointResolverOptions) (aws.Endpoint, error)
- func (fn EndpointResolverFunc) ResolveEndpoint(region string, options EndpointResolverOptions) (endpoint aws.Endpoint, err error) {
- return fn(region, options)
- }
- // EndpointResolverFromURL returns an EndpointResolver configured using the
- // provided endpoint url. By default, the resolved endpoint resolver uses the
- // client region as signing region, and the endpoint source is set to
- // EndpointSourceCustom.You can provide functional options to configure endpoint
- // values for the resolved endpoint.
- func EndpointResolverFromURL(url string, optFns ...func(*aws.Endpoint)) EndpointResolver {
- e := aws.Endpoint{URL: url, Source: aws.EndpointSourceCustom}
- for _, fn := range optFns {
- fn(&e)
- }
- return EndpointResolverFunc(
- func(region string, options EndpointResolverOptions) (aws.Endpoint, error) {
- if len(e.SigningRegion) == 0 {
- e.SigningRegion = region
- }
- return e, nil
- },
- )
- }
- type ResolveEndpoint struct {
- Resolver EndpointResolver
- Options EndpointResolverOptions
- }
- func (*ResolveEndpoint) ID() string {
- return "ResolveEndpoint"
- }
- func (m *ResolveEndpoint) HandleSerialize(ctx context.Context, in middleware.SerializeInput, next middleware.SerializeHandler) (
- out middleware.SerializeOutput, metadata middleware.Metadata, err error,
- ) {
- if !awsmiddleware.GetRequiresLegacyEndpoints(ctx) {
- return next.HandleSerialize(ctx, in)
- }
- req, ok := in.Request.(*smithyhttp.Request)
- if !ok {
- return out, metadata, fmt.Errorf("unknown transport type %T", in.Request)
- }
- if m.Resolver == nil {
- return out, metadata, fmt.Errorf("expected endpoint resolver to not be nil")
- }
- eo := m.Options
- eo.Logger = middleware.GetLogger(ctx)
- var endpoint aws.Endpoint
- endpoint, err = m.Resolver.ResolveEndpoint(awsmiddleware.GetRegion(ctx), eo)
- if err != nil {
- nf := (&aws.EndpointNotFoundError{})
- if errors.As(err, &nf) {
- ctx = awsmiddleware.SetRequiresLegacyEndpoints(ctx, false)
- return next.HandleSerialize(ctx, in)
- }
- return out, metadata, fmt.Errorf("failed to resolve service endpoint, %w", err)
- }
- req.URL, err = url.Parse(endpoint.URL)
- if err != nil {
- return out, metadata, fmt.Errorf("failed to parse endpoint URL: %w", err)
- }
- if len(awsmiddleware.GetSigningName(ctx)) == 0 {
- signingName := endpoint.SigningName
- if len(signingName) == 0 {
- signingName = "sts"
- }
- ctx = awsmiddleware.SetSigningName(ctx, signingName)
- }
- ctx = awsmiddleware.SetEndpointSource(ctx, endpoint.Source)
- ctx = smithyhttp.SetHostnameImmutable(ctx, endpoint.HostnameImmutable)
- ctx = awsmiddleware.SetSigningRegion(ctx, endpoint.SigningRegion)
- ctx = awsmiddleware.SetPartitionID(ctx, endpoint.PartitionID)
- return next.HandleSerialize(ctx, in)
- }
- func addResolveEndpointMiddleware(stack *middleware.Stack, o Options) error {
- return stack.Serialize.Insert(&ResolveEndpoint{
- Resolver: o.EndpointResolver,
- Options: o.EndpointOptions,
- }, "OperationSerializer", middleware.Before)
- }
- func removeResolveEndpointMiddleware(stack *middleware.Stack) error {
- _, err := stack.Serialize.Remove((&ResolveEndpoint{}).ID())
- return err
- }
- type wrappedEndpointResolver struct {
- awsResolver aws.EndpointResolverWithOptions
- }
- func (w *wrappedEndpointResolver) ResolveEndpoint(region string, options EndpointResolverOptions) (endpoint aws.Endpoint, err error) {
- return w.awsResolver.ResolveEndpoint(ServiceID, region, options)
- }
- type awsEndpointResolverAdaptor func(service, region string) (aws.Endpoint, error)
- func (a awsEndpointResolverAdaptor) ResolveEndpoint(service, region string, options ...interface{}) (aws.Endpoint, error) {
- return a(service, region)
- }
- var _ aws.EndpointResolverWithOptions = awsEndpointResolverAdaptor(nil)
- // withEndpointResolver returns an aws.EndpointResolverWithOptions that first delegates endpoint resolution to the awsResolver.
- // If awsResolver returns aws.EndpointNotFoundError error, the v1 resolver middleware will swallow the error,
- // and set an appropriate context flag such that fallback will occur when EndpointResolverV2 is invoked
- // via its middleware.
- //
- // If another error (besides aws.EndpointNotFoundError) is returned, then that error will be propagated.
- func withEndpointResolver(awsResolver aws.EndpointResolver, awsResolverWithOptions aws.EndpointResolverWithOptions) EndpointResolver {
- var resolver aws.EndpointResolverWithOptions
- if awsResolverWithOptions != nil {
- resolver = awsResolverWithOptions
- } else if awsResolver != nil {
- resolver = awsEndpointResolverAdaptor(awsResolver.ResolveEndpoint)
- }
- return &wrappedEndpointResolver{
- awsResolver: resolver,
- }
- }
- func finalizeClientEndpointResolverOptions(options *Options) {
- options.EndpointOptions.LogDeprecated = options.ClientLogMode.IsDeprecatedUsage()
- if len(options.EndpointOptions.ResolvedRegion) == 0 {
- const fipsInfix = "-fips-"
- const fipsPrefix = "fips-"
- const fipsSuffix = "-fips"
- if strings.Contains(options.Region, fipsInfix) ||
- strings.Contains(options.Region, fipsPrefix) ||
- strings.Contains(options.Region, fipsSuffix) {
- options.EndpointOptions.ResolvedRegion = strings.ReplaceAll(strings.ReplaceAll(strings.ReplaceAll(
- options.Region, fipsInfix, "-"), fipsPrefix, ""), fipsSuffix, "")
- options.EndpointOptions.UseFIPSEndpoint = aws.FIPSEndpointStateEnabled
- }
- }
- }
- func resolveEndpointResolverV2(options *Options) {
- if options.EndpointResolverV2 == nil {
- options.EndpointResolverV2 = NewDefaultEndpointResolverV2()
- }
- }
- func resolveBaseEndpoint(cfg aws.Config, o *Options) {
- if cfg.BaseEndpoint != nil {
- o.BaseEndpoint = cfg.BaseEndpoint
- }
- _, g := os.LookupEnv("AWS_ENDPOINT_URL")
- _, s := os.LookupEnv("AWS_ENDPOINT_URL_STS")
- if g && !s {
- return
- }
- value, found, err := internalConfig.ResolveServiceBaseEndpoint(context.Background(), "STS", cfg.ConfigSources)
- if found && err == nil {
- o.BaseEndpoint = &value
- }
- }
- func bindRegion(region string) *string {
- if region == "" {
- return nil
- }
- return aws.String(endpoints.MapFIPSRegion(region))
- }
- // EndpointParameters provides the parameters that influence how endpoints are
- // resolved.
- type EndpointParameters struct {
- // The AWS region used to dispatch the request.
- //
- // Parameter is
- // required.
- //
- // AWS::Region
- Region *string
- // When true, use the dual-stack endpoint. If the configured endpoint does not
- // support dual-stack, dispatching the request MAY return an error.
- //
- // Defaults to
- // false if no value is provided.
- //
- // AWS::UseDualStack
- UseDualStack *bool
- // When true, send this request to the FIPS-compliant regional endpoint. If the
- // configured endpoint does not have a FIPS compliant endpoint, dispatching the
- // request will return an error.
- //
- // Defaults to false if no value is
- // provided.
- //
- // AWS::UseFIPS
- UseFIPS *bool
- // Override the endpoint used to send this request
- //
- // Parameter is
- // required.
- //
- // SDK::Endpoint
- Endpoint *string
- // Whether the global endpoint should be used, rather then the regional endpoint
- // for us-east-1.
- //
- // Defaults to false if no value is
- // provided.
- //
- // AWS::STS::UseGlobalEndpoint
- UseGlobalEndpoint *bool
- }
- // ValidateRequired validates required parameters are set.
- func (p EndpointParameters) ValidateRequired() error {
- if p.UseDualStack == nil {
- return fmt.Errorf("parameter UseDualStack is required")
- }
- if p.UseFIPS == nil {
- return fmt.Errorf("parameter UseFIPS is required")
- }
- if p.UseGlobalEndpoint == nil {
- return fmt.Errorf("parameter UseGlobalEndpoint is required")
- }
- return nil
- }
- // WithDefaults returns a shallow copy of EndpointParameterswith default values
- // applied to members where applicable.
- func (p EndpointParameters) WithDefaults() EndpointParameters {
- if p.UseDualStack == nil {
- p.UseDualStack = ptr.Bool(false)
- }
- if p.UseFIPS == nil {
- p.UseFIPS = ptr.Bool(false)
- }
- if p.UseGlobalEndpoint == nil {
- p.UseGlobalEndpoint = ptr.Bool(false)
- }
- return p
- }
- type stringSlice []string
- func (s stringSlice) Get(i int) *string {
- if i < 0 || i >= len(s) {
- return nil
- }
- v := s[i]
- return &v
- }
- // EndpointResolverV2 provides the interface for resolving service endpoints.
- type EndpointResolverV2 interface {
- // ResolveEndpoint attempts to resolve the endpoint with the provided options,
- // returning the endpoint if found. Otherwise an error is returned.
- ResolveEndpoint(ctx context.Context, params EndpointParameters) (
- smithyendpoints.Endpoint, error,
- )
- }
- // resolver provides the implementation for resolving endpoints.
- type resolver struct{}
- func NewDefaultEndpointResolverV2() EndpointResolverV2 {
- return &resolver{}
- }
- // ResolveEndpoint attempts to resolve the endpoint with the provided options,
- // returning the endpoint if found. Otherwise an error is returned.
- func (r *resolver) ResolveEndpoint(
- ctx context.Context, params EndpointParameters,
- ) (
- endpoint smithyendpoints.Endpoint, err error,
- ) {
- params = params.WithDefaults()
- if err = params.ValidateRequired(); err != nil {
- return endpoint, fmt.Errorf("endpoint parameters are not valid, %w", err)
- }
- _UseDualStack := *params.UseDualStack
- _ = _UseDualStack
- _UseFIPS := *params.UseFIPS
- _ = _UseFIPS
- _UseGlobalEndpoint := *params.UseGlobalEndpoint
- _ = _UseGlobalEndpoint
- if _UseGlobalEndpoint == true {
- if !(params.Endpoint != nil) {
- if exprVal := params.Region; exprVal != nil {
- _Region := *exprVal
- _ = _Region
- if exprVal := awsrulesfn.GetPartition(_Region); exprVal != nil {
- _PartitionResult := *exprVal
- _ = _PartitionResult
- if _UseFIPS == false {
- if _UseDualStack == false {
- if _Region == "ap-northeast-1" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "ap-south-1" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "ap-southeast-1" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "ap-southeast-2" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "aws-global" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "ca-central-1" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "eu-central-1" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "eu-north-1" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "eu-west-1" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "eu-west-2" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "eu-west-3" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "sa-east-1" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "us-east-1" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "us-east-2" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "us-west-1" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- if _Region == "us-west-2" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- uriString := func() string {
- var out strings.Builder
- out.WriteString("https://sts.")
- out.WriteString(_Region)
- out.WriteString(".")
- out.WriteString(_PartitionResult.DnsSuffix)
- return out.String()
- }()
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, _Region)
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- }
- }
- }
- }
- }
- if exprVal := params.Endpoint; exprVal != nil {
- _Endpoint := *exprVal
- _ = _Endpoint
- if _UseFIPS == true {
- return endpoint, fmt.Errorf("endpoint rule error, %s", "Invalid Configuration: FIPS and custom endpoint are not supported")
- }
- if _UseDualStack == true {
- return endpoint, fmt.Errorf("endpoint rule error, %s", "Invalid Configuration: Dualstack and custom endpoint are not supported")
- }
- uriString := _Endpoint
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- }, nil
- }
- if exprVal := params.Region; exprVal != nil {
- _Region := *exprVal
- _ = _Region
- if exprVal := awsrulesfn.GetPartition(_Region); exprVal != nil {
- _PartitionResult := *exprVal
- _ = _PartitionResult
- if _UseFIPS == true {
- if _UseDualStack == true {
- if true == _PartitionResult.SupportsFIPS {
- if true == _PartitionResult.SupportsDualStack {
- uriString := func() string {
- var out strings.Builder
- out.WriteString("https://sts-fips.")
- out.WriteString(_Region)
- out.WriteString(".")
- out.WriteString(_PartitionResult.DualStackDnsSuffix)
- return out.String()
- }()
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- }, nil
- }
- }
- return endpoint, fmt.Errorf("endpoint rule error, %s", "FIPS and DualStack are enabled, but this partition does not support one or both")
- }
- }
- if _UseFIPS == true {
- if _PartitionResult.SupportsFIPS == true {
- if _PartitionResult.Name == "aws-us-gov" {
- uriString := func() string {
- var out strings.Builder
- out.WriteString("https://sts.")
- out.WriteString(_Region)
- out.WriteString(".amazonaws.com")
- return out.String()
- }()
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- }, nil
- }
- uriString := func() string {
- var out strings.Builder
- out.WriteString("https://sts-fips.")
- out.WriteString(_Region)
- out.WriteString(".")
- out.WriteString(_PartitionResult.DnsSuffix)
- return out.String()
- }()
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- }, nil
- }
- return endpoint, fmt.Errorf("endpoint rule error, %s", "FIPS is enabled but this partition does not support FIPS")
- }
- if _UseDualStack == true {
- if true == _PartitionResult.SupportsDualStack {
- uriString := func() string {
- var out strings.Builder
- out.WriteString("https://sts.")
- out.WriteString(_Region)
- out.WriteString(".")
- out.WriteString(_PartitionResult.DualStackDnsSuffix)
- return out.String()
- }()
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- }, nil
- }
- return endpoint, fmt.Errorf("endpoint rule error, %s", "DualStack is enabled but this partition does not support DualStack")
- }
- if _Region == "aws-global" {
- uriString := "https://sts.amazonaws.com"
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- Properties: func() smithy.Properties {
- var out smithy.Properties
- smithyauth.SetAuthOptions(&out, []*smithyauth.Option{
- {
- SchemeID: "aws.auth#sigv4",
- SignerProperties: func() smithy.Properties {
- var sp smithy.Properties
- smithyhttp.SetSigV4SigningName(&sp, "sts")
- smithyhttp.SetSigV4ASigningName(&sp, "sts")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- uriString := func() string {
- var out strings.Builder
- out.WriteString("https://sts.")
- out.WriteString(_Region)
- out.WriteString(".")
- out.WriteString(_PartitionResult.DnsSuffix)
- return out.String()
- }()
- uri, err := url.Parse(uriString)
- if err != nil {
- return endpoint, fmt.Errorf("Failed to parse uri: %s", uriString)
- }
- return smithyendpoints.Endpoint{
- URI: *uri,
- Headers: http.Header{},
- }, nil
- }
- return endpoint, fmt.Errorf("Endpoint resolution failed. Invalid operation or environment input.")
- }
- return endpoint, fmt.Errorf("endpoint rule error, %s", "Invalid Configuration: Missing Region")
- }
- type endpointParamsBinder interface {
- bindEndpointParams(*EndpointParameters)
- }
- func bindEndpointParams(ctx context.Context, input interface{}, options Options) *EndpointParameters {
- params := &EndpointParameters{}
- params.Region = bindRegion(options.Region)
- params.UseDualStack = aws.Bool(options.EndpointOptions.UseDualStackEndpoint == aws.DualStackEndpointStateEnabled)
- params.UseFIPS = aws.Bool(options.EndpointOptions.UseFIPSEndpoint == aws.FIPSEndpointStateEnabled)
- params.Endpoint = options.BaseEndpoint
- if b, ok := input.(endpointParamsBinder); ok {
- b.bindEndpointParams(params)
- }
- return params
- }
- type resolveEndpointV2Middleware struct {
- options Options
- }
- func (*resolveEndpointV2Middleware) ID() string {
- return "ResolveEndpointV2"
- }
- func (m *resolveEndpointV2Middleware) HandleFinalize(ctx context.Context, in middleware.FinalizeInput, next middleware.FinalizeHandler) (
- out middleware.FinalizeOutput, metadata middleware.Metadata, err error,
- ) {
- _, span := tracing.StartSpan(ctx, "ResolveEndpoint")
- defer span.End()
- if awsmiddleware.GetRequiresLegacyEndpoints(ctx) {
- return next.HandleFinalize(ctx, in)
- }
- req, ok := in.Request.(*smithyhttp.Request)
- if !ok {
- return out, metadata, fmt.Errorf("unknown transport type %T", in.Request)
- }
- if m.options.EndpointResolverV2 == nil {
- return out, metadata, fmt.Errorf("expected endpoint resolver to not be nil")
- }
- params := bindEndpointParams(ctx, getOperationInput(ctx), m.options)
- endpt, err := timeOperationMetric(ctx, "client.call.resolve_endpoint_duration",
- func() (smithyendpoints.Endpoint, error) {
- return m.options.EndpointResolverV2.ResolveEndpoint(ctx, *params)
- })
- if err != nil {
- return out, metadata, fmt.Errorf("failed to resolve service endpoint, %w", err)
- }
- span.SetProperty("client.call.resolved_endpoint", endpt.URI.String())
- if endpt.URI.RawPath == "" && req.URL.RawPath != "" {
- endpt.URI.RawPath = endpt.URI.Path
- }
- req.URL.Scheme = endpt.URI.Scheme
- req.URL.Host = endpt.URI.Host
- req.URL.Path = smithyhttp.JoinPath(endpt.URI.Path, req.URL.Path)
- req.URL.RawPath = smithyhttp.JoinPath(endpt.URI.RawPath, req.URL.RawPath)
- for k := range endpt.Headers {
- req.Header.Set(k, endpt.Headers.Get(k))
- }
- rscheme := getResolvedAuthScheme(ctx)
- if rscheme == nil {
- return out, metadata, fmt.Errorf("no resolved auth scheme")
- }
- opts, _ := smithyauth.GetAuthOptions(&endpt.Properties)
- for _, o := range opts {
- rscheme.SignerProperties.SetAll(&o.SignerProperties)
- }
- span.End()
- return next.HandleFinalize(ctx, in)
- }
|