| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825 |
- // Code generated by smithy-go-codegen DO NOT EDIT.
- package organizations
- 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/organizations/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/endpoints/private/rulesfn"
- "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 = "organizations"
- }
- 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_ORGANIZATIONS")
- if g && !s {
- return
- }
- value, found, err := internalConfig.ResolveServiceBaseEndpoint(context.Background(), "Organizations", cfg.ConfigSources)
- if found && err == nil {
- o.BaseEndpoint = &value
- }
- }
- func bindRegion(region string) (*string, error) {
- if region == "" {
- return nil, nil
- }
- if !rulesfn.IsValidHostLabel(region, true) {
- return nil, fmt.Errorf("invalid input region %s", region)
- }
- return aws.String(endpoints.MapFIPSRegion(region)), nil
- }
- // 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
- }
- // 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")
- }
- 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)
- }
- 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
- 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 _PartitionResult.Name == "aws" {
- if _UseFIPS == false {
- if _UseDualStack == false {
- uriString := "https://organizations.us-east-1.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, "organizations")
- smithyhttp.SetSigV4ASigningName(&sp, "organizations")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- }
- }
- if _PartitionResult.Name == "aws" {
- if _UseFIPS == true {
- if _UseDualStack == false {
- uriString := "https://organizations-fips.us-east-1.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, "organizations")
- smithyhttp.SetSigV4ASigningName(&sp, "organizations")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- }
- }
- if _PartitionResult.Name == "aws-cn" {
- if _UseFIPS == false {
- if _UseDualStack == false {
- uriString := "https://organizations.cn-northwest-1.amazonaws.com.cn"
- 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, "organizations")
- smithyhttp.SetSigV4ASigningName(&sp, "organizations")
- smithyhttp.SetSigV4SigningRegion(&sp, "cn-northwest-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- }
- }
- if _PartitionResult.Name == "aws-us-gov" {
- if _UseFIPS == false {
- if _UseDualStack == false {
- uriString := "https://organizations.us-gov-west-1.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, "organizations")
- smithyhttp.SetSigV4ASigningName(&sp, "organizations")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-gov-west-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- }
- }
- if _PartitionResult.Name == "aws-us-gov" {
- if _UseFIPS == true {
- if _UseDualStack == false {
- uriString := "https://organizations.us-gov-west-1.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, "organizations")
- smithyhttp.SetSigV4ASigningName(&sp, "organizations")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-gov-west-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- }
- }
- if _PartitionResult.Name == "aws-iso" {
- if _UseFIPS == false {
- if _UseDualStack == false {
- uriString := "https://organizations.us-iso-east-1.c2s.ic.gov"
- 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, "organizations")
- smithyhttp.SetSigV4ASigningName(&sp, "organizations")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-iso-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- }
- }
- if _PartitionResult.Name == "aws-iso-b" {
- if _UseFIPS == false {
- if _UseDualStack == false {
- uriString := "https://organizations.us-isob-east-1.sc2s.sgov.gov"
- 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, "organizations")
- smithyhttp.SetSigV4ASigningName(&sp, "organizations")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-isob-east-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- }
- }
- if _PartitionResult.Name == "aws-iso-f" {
- if _UseFIPS == false {
- if _UseDualStack == false {
- uriString := "https://organizations.us-isof-south-1.csp.hci.ic.gov"
- 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, "organizations")
- smithyhttp.SetSigV4ASigningName(&sp, "organizations")
- smithyhttp.SetSigV4SigningRegion(&sp, "us-isof-south-1")
- return sp
- }(),
- },
- })
- return out
- }(),
- }, nil
- }
- }
- }
- if _UseFIPS == true {
- if _UseDualStack == true {
- if true == _PartitionResult.SupportsFIPS {
- if true == _PartitionResult.SupportsDualStack {
- uriString := func() string {
- var out strings.Builder
- out.WriteString("https://organizations-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 {
- uriString := func() string {
- var out strings.Builder
- out.WriteString("https://organizations-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://organizations.")
- 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")
- }
- uriString := func() string {
- var out strings.Builder
- out.WriteString("https://organizations.")
- 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, error) {
- params := &EndpointParameters{}
- region, err := bindRegion(options.Region)
- if err != nil {
- return nil, err
- }
- params.Region = 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, nil
- }
- 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, err := bindEndpointParams(ctx, getOperationInput(ctx), m.options)
- if err != nil {
- return out, metadata, fmt.Errorf("failed to bind endpoint params, %w", err)
- }
- 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)
- }
|