diff --git a/aws/config.go b/aws/config.go index 4262cd658c8..df2abb58cd6 100644 --- a/aws/config.go +++ b/aws/config.go @@ -115,7 +115,7 @@ type Config struct { DefaultsMode DefaultsMode // The RuntimeEnvironment configuration, only populated if the DefaultsMode - // is set to AutoDefaultsMode and is initialized by + // is set to DefaultsModeAuto and is initialized by // `config.LoadDefaultConfig`. You should not populate this structure // programmatically, or rely on the values here within your applications. RuntimeEnvironment RuntimeEnvironment diff --git a/aws/defaults/auto.go b/aws/defaults/auto.go index 9f23a2d8e3d..fd408e51860 100644 --- a/aws/defaults/auto.go +++ b/aws/defaults/auto.go @@ -11,7 +11,7 @@ var getGOOS = func() string { } // ResolveDefaultsModeAuto is used to determine the effective aws.DefaultsMode when the mode -// is set to aws.AutoDefaultsMode. +// is set to aws.DefaultsModeAuto. func ResolveDefaultsModeAuto(region string, environment aws.RuntimeEnvironment) aws.DefaultsMode { goos := getGOOS() if goos == "android" || goos == "ios" { diff --git a/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/AddAwsConfigFields.java b/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/AddAwsConfigFields.java index 6d2d4e43d4f..06992b4cc72 100644 --- a/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/AddAwsConfigFields.java +++ b/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/AddAwsConfigFields.java @@ -88,7 +88,7 @@ public class AddAwsConfigFields implements GoIntegration { .type(getAwsCoreSymbol("RuntimeEnvironment")) .documentation(""" The RuntimeEnvironment configuration, only populated if the DefaultsMode is set to - AutoDefaultsMode and is initialized using `config.LoadDefaultConfig`. You should not + DefaultsModeAuto and is initialized using `config.LoadDefaultConfig`. You should not populate this structure programmatically, or rely on the values here within your applications. """) diff --git a/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/ClientResolvedDefaultsMode.java b/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/ClientResolvedDefaultsMode.java index 5b3fbfcc7d6..61131e7f43f 100644 --- a/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/ClientResolvedDefaultsMode.java +++ b/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/ClientResolvedDefaultsMode.java @@ -43,7 +43,7 @@ public class ClientResolvedDefaultsMode implements GoIntegration { .build()) .documentation(""" The initial DefaultsMode used when the client options were constructed. If the - DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved value + DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved value was at that point in time. Currently does not support per operation call overrides, may in the future. diff --git a/config/config.go b/config/config.go index 5dd25a16310..79f067017e2 100644 --- a/config/config.go +++ b/config/config.go @@ -56,7 +56,7 @@ var defaultAWSConfigResolvers = []awsConfigResolver{ resolveAPIOptions, // Resolves the DefaultsMode that should be used by SDK clients. If this - // mode is set to AutoDefaultsMode. + // mode is set to DefaultsModeAuto. // // Comes after HTTPClient and CustomCABundle to ensure the HTTP client is // configured if provided before invoking IMDS if mode is auto. Comes diff --git a/config/defaultsmode.go b/config/defaultsmode.go index dc94acd30a1..20b66367ffd 100644 --- a/config/defaultsmode.go +++ b/config/defaultsmode.go @@ -18,7 +18,7 @@ type DefaultsModeOptions struct { Mode aws.DefaultsMode // The EC2 Instance Metadata Client that should be used when performing environment - // discovery when aws.AutoDefaultsMode is set. + // discovery when aws.DefaultsModeAuto is set. // // If not specified the SDK will construct a client if the instance metadata service has not been disabled by // the AWS_EC2_METADATA_DISABLED environment variable. diff --git a/config/load_options.go b/config/load_options.go index a1561dfbc60..22e6019fbd0 100644 --- a/config/load_options.go +++ b/config/load_options.go @@ -911,7 +911,7 @@ func (o LoadOptions) GetUseFIPSEndpoint(ctx context.Context) (value aws.FIPSEndp // WithDefaultsMode sets the SDK defaults configuration mode to the value provided. // // Zero or more functional options can be provided to provide configuration options for performing -// environment discovery when using aws.AutoDefaultsMode. +// environment discovery when using aws.DefaultsModeAuto. func WithDefaultsMode(mode aws.DefaultsMode, optFns ...func(options *DefaultsModeOptions)) LoadOptionsFunc { do := DefaultsModeOptions{ Mode: mode, diff --git a/internal/protocoltest/awsrestjson/api_client.go b/internal/protocoltest/awsrestjson/api_client.go index 8ad9faea22a..3054ef4ef8d 100644 --- a/internal/protocoltest/awsrestjson/api_client.go +++ b/internal/protocoltest/awsrestjson/api_client.go @@ -112,13 +112,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/internal/protocoltest/ec2query/api_client.go b/internal/protocoltest/ec2query/api_client.go index 604b1ce5299..9ecd396150a 100644 --- a/internal/protocoltest/ec2query/api_client.go +++ b/internal/protocoltest/ec2query/api_client.go @@ -112,13 +112,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/internal/protocoltest/jsonrpc/api_client.go b/internal/protocoltest/jsonrpc/api_client.go index 920313b7baf..0d68d0ca43e 100644 --- a/internal/protocoltest/jsonrpc/api_client.go +++ b/internal/protocoltest/jsonrpc/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/internal/protocoltest/jsonrpc10/api_client.go b/internal/protocoltest/jsonrpc10/api_client.go index 448a73bfaf2..c5fa1379e89 100644 --- a/internal/protocoltest/jsonrpc10/api_client.go +++ b/internal/protocoltest/jsonrpc10/api_client.go @@ -104,13 +104,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/internal/protocoltest/query/api_client.go b/internal/protocoltest/query/api_client.go index 7935443ed81..3221675fb66 100644 --- a/internal/protocoltest/query/api_client.go +++ b/internal/protocoltest/query/api_client.go @@ -112,13 +112,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/internal/protocoltest/restxml/api_client.go b/internal/protocoltest/restxml/api_client.go index 00b61969aeb..95d8d8f549c 100644 --- a/internal/protocoltest/restxml/api_client.go +++ b/internal/protocoltest/restxml/api_client.go @@ -112,13 +112,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/internal/protocoltest/restxmlwithnamespace/api_client.go b/internal/protocoltest/restxmlwithnamespace/api_client.go index d5d8496450b..4136adf6e12 100644 --- a/internal/protocoltest/restxmlwithnamespace/api_client.go +++ b/internal/protocoltest/restxmlwithnamespace/api_client.go @@ -104,13 +104,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/accessanalyzer/api_client.go b/service/accessanalyzer/api_client.go index 847ed177fc6..41f8de64372 100644 --- a/service/accessanalyzer/api_client.go +++ b/service/accessanalyzer/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/account/api_client.go b/service/account/api_client.go index 140decc72d0..7dfa4c3d694 100644 --- a/service/account/api_client.go +++ b/service/account/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/acm/api_client.go b/service/acm/api_client.go index fbd15426348..1564f356048 100644 --- a/service/acm/api_client.go +++ b/service/acm/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/acmpca/api_client.go b/service/acmpca/api_client.go index 7aa442fc925..096a0d808f3 100644 --- a/service/acmpca/api_client.go +++ b/service/acmpca/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/alexaforbusiness/api_client.go b/service/alexaforbusiness/api_client.go index ff323dbe764..bb65eb53aa1 100644 --- a/service/alexaforbusiness/api_client.go +++ b/service/alexaforbusiness/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/amp/api_client.go b/service/amp/api_client.go index 2ce123bb56f..6c8ebcec886 100644 --- a/service/amp/api_client.go +++ b/service/amp/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/amplify/api_client.go b/service/amplify/api_client.go index 75c50204f50..195d622663e 100644 --- a/service/amplify/api_client.go +++ b/service/amplify/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/amplifybackend/api_client.go b/service/amplifybackend/api_client.go index d405b710129..e2b97c91198 100644 --- a/service/amplifybackend/api_client.go +++ b/service/amplifybackend/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/amplifyuibuilder/api_client.go b/service/amplifyuibuilder/api_client.go index 05dd0593b02..cbf0e7062b0 100644 --- a/service/amplifyuibuilder/api_client.go +++ b/service/amplifyuibuilder/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/apigateway/api_client.go b/service/apigateway/api_client.go index dc1545b468f..63f7168f1bc 100644 --- a/service/apigateway/api_client.go +++ b/service/apigateway/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/apigatewaymanagementapi/api_client.go b/service/apigatewaymanagementapi/api_client.go index 72d0b7653ff..a055adb2d81 100644 --- a/service/apigatewaymanagementapi/api_client.go +++ b/service/apigatewaymanagementapi/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/apigatewayv2/api_client.go b/service/apigatewayv2/api_client.go index eb251d99389..133be3f143d 100644 --- a/service/apigatewayv2/api_client.go +++ b/service/apigatewayv2/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/appconfig/api_client.go b/service/appconfig/api_client.go index eb1de017483..e3720796277 100644 --- a/service/appconfig/api_client.go +++ b/service/appconfig/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/appconfigdata/api_client.go b/service/appconfigdata/api_client.go index 46fe43146b2..f419aec2854 100644 --- a/service/appconfigdata/api_client.go +++ b/service/appconfigdata/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/appflow/api_client.go b/service/appflow/api_client.go index d0c00432fde..a54401a9091 100644 --- a/service/appflow/api_client.go +++ b/service/appflow/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/appintegrations/api_client.go b/service/appintegrations/api_client.go index 3be39ea8728..70df3ef366d 100644 --- a/service/appintegrations/api_client.go +++ b/service/appintegrations/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/applicationautoscaling/api_client.go b/service/applicationautoscaling/api_client.go index 826933ef8cb..407b7b07f44 100644 --- a/service/applicationautoscaling/api_client.go +++ b/service/applicationautoscaling/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/applicationcostprofiler/api_client.go b/service/applicationcostprofiler/api_client.go index 1ff134c64af..df0107aadd3 100644 --- a/service/applicationcostprofiler/api_client.go +++ b/service/applicationcostprofiler/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/applicationdiscoveryservice/api_client.go b/service/applicationdiscoveryservice/api_client.go index 6c6698584ca..280a1755d09 100644 --- a/service/applicationdiscoveryservice/api_client.go +++ b/service/applicationdiscoveryservice/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/applicationinsights/api_client.go b/service/applicationinsights/api_client.go index 056ffe5b9c1..733e3e503e0 100644 --- a/service/applicationinsights/api_client.go +++ b/service/applicationinsights/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/appmesh/api_client.go b/service/appmesh/api_client.go index 210a6f181de..7259c80c59d 100644 --- a/service/appmesh/api_client.go +++ b/service/appmesh/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/apprunner/api_client.go b/service/apprunner/api_client.go index baf5546143a..8fdfd5491bb 100644 --- a/service/apprunner/api_client.go +++ b/service/apprunner/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/appstream/api_client.go b/service/appstream/api_client.go index 0630807bb69..f5cc8317f00 100644 --- a/service/appstream/api_client.go +++ b/service/appstream/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/appsync/api_client.go b/service/appsync/api_client.go index b103a6e13b2..f665f07a2d2 100644 --- a/service/appsync/api_client.go +++ b/service/appsync/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/athena/api_client.go b/service/athena/api_client.go index 739a193898f..b8472da98ec 100644 --- a/service/athena/api_client.go +++ b/service/athena/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/auditmanager/api_client.go b/service/auditmanager/api_client.go index 2adb0612aa9..75c1cb78ef8 100644 --- a/service/auditmanager/api_client.go +++ b/service/auditmanager/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/autoscaling/api_client.go b/service/autoscaling/api_client.go index b8414d6efd1..cd7db1d2232 100644 --- a/service/autoscaling/api_client.go +++ b/service/autoscaling/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/autoscalingplans/api_client.go b/service/autoscalingplans/api_client.go index 9489ae0faae..35c03bf38f7 100644 --- a/service/autoscalingplans/api_client.go +++ b/service/autoscalingplans/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/backup/api_client.go b/service/backup/api_client.go index 802f4266f16..ccb350ed164 100644 --- a/service/backup/api_client.go +++ b/service/backup/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/backupgateway/api_client.go b/service/backupgateway/api_client.go index c08d8e965b6..b64df79be1f 100644 --- a/service/backupgateway/api_client.go +++ b/service/backupgateway/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/batch/api_client.go b/service/batch/api_client.go index 6c7fa3f136c..545f5ae7f72 100644 --- a/service/batch/api_client.go +++ b/service/batch/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/braket/api_client.go b/service/braket/api_client.go index cee0111c2af..da9a3856ccc 100644 --- a/service/braket/api_client.go +++ b/service/braket/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/budgets/api_client.go b/service/budgets/api_client.go index a5b161313d2..ffe1dd0a7ef 100644 --- a/service/budgets/api_client.go +++ b/service/budgets/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/chime/api_client.go b/service/chime/api_client.go index ec86037690e..f3495e4b25e 100644 --- a/service/chime/api_client.go +++ b/service/chime/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/chimesdkidentity/api_client.go b/service/chimesdkidentity/api_client.go index 42e3a19469a..203c89bb7b4 100644 --- a/service/chimesdkidentity/api_client.go +++ b/service/chimesdkidentity/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/chimesdkmeetings/api_client.go b/service/chimesdkmeetings/api_client.go index 80d5c882a35..693bc0e63f6 100644 --- a/service/chimesdkmeetings/api_client.go +++ b/service/chimesdkmeetings/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/chimesdkmessaging/api_client.go b/service/chimesdkmessaging/api_client.go index bba2913337c..f54182817b5 100644 --- a/service/chimesdkmessaging/api_client.go +++ b/service/chimesdkmessaging/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cloud9/api_client.go b/service/cloud9/api_client.go index 0fcb072b624..9ffdb657d6c 100644 --- a/service/cloud9/api_client.go +++ b/service/cloud9/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cloudcontrol/api_client.go b/service/cloudcontrol/api_client.go index 04158ae6ade..e58bc927ebe 100644 --- a/service/cloudcontrol/api_client.go +++ b/service/cloudcontrol/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/clouddirectory/api_client.go b/service/clouddirectory/api_client.go index ac0a16f9f7d..536d00a6a98 100644 --- a/service/clouddirectory/api_client.go +++ b/service/clouddirectory/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cloudformation/api_client.go b/service/cloudformation/api_client.go index 8756089800c..8df00879dbb 100644 --- a/service/cloudformation/api_client.go +++ b/service/cloudformation/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cloudfront/api_client.go b/service/cloudfront/api_client.go index 06ac2a44010..b5d3e14d705 100644 --- a/service/cloudfront/api_client.go +++ b/service/cloudfront/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cloudhsm/api_client.go b/service/cloudhsm/api_client.go index 2960b3573ce..ee061094c80 100644 --- a/service/cloudhsm/api_client.go +++ b/service/cloudhsm/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cloudhsmv2/api_client.go b/service/cloudhsmv2/api_client.go index fcc066db927..c503c45d645 100644 --- a/service/cloudhsmv2/api_client.go +++ b/service/cloudhsmv2/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cloudsearch/api_client.go b/service/cloudsearch/api_client.go index be553d7f92c..9050d1b44b2 100644 --- a/service/cloudsearch/api_client.go +++ b/service/cloudsearch/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cloudsearchdomain/api_client.go b/service/cloudsearchdomain/api_client.go index 1fe96368b42..354348d009f 100644 --- a/service/cloudsearchdomain/api_client.go +++ b/service/cloudsearchdomain/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cloudtrail/api_client.go b/service/cloudtrail/api_client.go index 974e0f47751..7ac64b43324 100644 --- a/service/cloudtrail/api_client.go +++ b/service/cloudtrail/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cloudwatch/api_client.go b/service/cloudwatch/api_client.go index b3baa46f18f..30c5e274c50 100644 --- a/service/cloudwatch/api_client.go +++ b/service/cloudwatch/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cloudwatchevents/api_client.go b/service/cloudwatchevents/api_client.go index 7f131a52258..ffbea67852a 100644 --- a/service/cloudwatchevents/api_client.go +++ b/service/cloudwatchevents/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cloudwatchlogs/api_client.go b/service/cloudwatchlogs/api_client.go index 07aeb9b17e8..cae2522fccb 100644 --- a/service/cloudwatchlogs/api_client.go +++ b/service/cloudwatchlogs/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/codeartifact/api_client.go b/service/codeartifact/api_client.go index 08a6a5cb11f..949ceb198da 100644 --- a/service/codeartifact/api_client.go +++ b/service/codeartifact/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/codebuild/api_client.go b/service/codebuild/api_client.go index d625d4f36d5..0867e200d1e 100644 --- a/service/codebuild/api_client.go +++ b/service/codebuild/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/codecommit/api_client.go b/service/codecommit/api_client.go index 3d2de028ee6..2bff089046a 100644 --- a/service/codecommit/api_client.go +++ b/service/codecommit/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/codedeploy/api_client.go b/service/codedeploy/api_client.go index 58057308a12..5b974534ec7 100644 --- a/service/codedeploy/api_client.go +++ b/service/codedeploy/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/codeguruprofiler/api_client.go b/service/codeguruprofiler/api_client.go index c29fd234807..07d86e4cf07 100644 --- a/service/codeguruprofiler/api_client.go +++ b/service/codeguruprofiler/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/codegurureviewer/api_client.go b/service/codegurureviewer/api_client.go index 373b9ca4a27..72f6660a88a 100644 --- a/service/codegurureviewer/api_client.go +++ b/service/codegurureviewer/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/codepipeline/api_client.go b/service/codepipeline/api_client.go index 1c7b694d0d5..58962219ee9 100644 --- a/service/codepipeline/api_client.go +++ b/service/codepipeline/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/codestar/api_client.go b/service/codestar/api_client.go index f461a27687a..00ee1a415b7 100644 --- a/service/codestar/api_client.go +++ b/service/codestar/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/codestarconnections/api_client.go b/service/codestarconnections/api_client.go index 6c42e2c5821..a615bf9eac6 100644 --- a/service/codestarconnections/api_client.go +++ b/service/codestarconnections/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/codestarnotifications/api_client.go b/service/codestarnotifications/api_client.go index a5e30ab4a6f..ca5401298cd 100644 --- a/service/codestarnotifications/api_client.go +++ b/service/codestarnotifications/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cognitoidentity/api_client.go b/service/cognitoidentity/api_client.go index 6dd11462d39..942f855781f 100644 --- a/service/cognitoidentity/api_client.go +++ b/service/cognitoidentity/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cognitoidentityprovider/api_client.go b/service/cognitoidentityprovider/api_client.go index 7512a509037..dc2ad975a8d 100644 --- a/service/cognitoidentityprovider/api_client.go +++ b/service/cognitoidentityprovider/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/cognitosync/api_client.go b/service/cognitosync/api_client.go index 9c8f9b16e2e..8298445de99 100644 --- a/service/cognitosync/api_client.go +++ b/service/cognitosync/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/comprehend/api_client.go b/service/comprehend/api_client.go index 0277a419299..8af57c53ff2 100644 --- a/service/comprehend/api_client.go +++ b/service/comprehend/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/comprehendmedical/api_client.go b/service/comprehendmedical/api_client.go index caae0fbd8ca..4dd6a107ed7 100644 --- a/service/comprehendmedical/api_client.go +++ b/service/comprehendmedical/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/computeoptimizer/api_client.go b/service/computeoptimizer/api_client.go index 928f7f6d64b..2ecf50e8623 100644 --- a/service/computeoptimizer/api_client.go +++ b/service/computeoptimizer/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/configservice/api_client.go b/service/configservice/api_client.go index 0dd80da35a7..f3933c8b80f 100644 --- a/service/configservice/api_client.go +++ b/service/configservice/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/connect/api_client.go b/service/connect/api_client.go index 83585964722..a9985054966 100644 --- a/service/connect/api_client.go +++ b/service/connect/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/connectcontactlens/api_client.go b/service/connectcontactlens/api_client.go index 63a521970b1..34a4b13fd9e 100644 --- a/service/connectcontactlens/api_client.go +++ b/service/connectcontactlens/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/connectparticipant/api_client.go b/service/connectparticipant/api_client.go index 55e2ebf317d..bc117a2d809 100644 --- a/service/connectparticipant/api_client.go +++ b/service/connectparticipant/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/costandusagereportservice/api_client.go b/service/costandusagereportservice/api_client.go index ebf7e02e59c..e480a9b88e6 100644 --- a/service/costandusagereportservice/api_client.go +++ b/service/costandusagereportservice/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/costexplorer/api_client.go b/service/costexplorer/api_client.go index 9ebda1e5a2c..c384ef9e766 100644 --- a/service/costexplorer/api_client.go +++ b/service/costexplorer/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/customerprofiles/api_client.go b/service/customerprofiles/api_client.go index edc466915a6..4a4472c01eb 100644 --- a/service/customerprofiles/api_client.go +++ b/service/customerprofiles/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/databasemigrationservice/api_client.go b/service/databasemigrationservice/api_client.go index c75c3a065ee..4e977cedccd 100644 --- a/service/databasemigrationservice/api_client.go +++ b/service/databasemigrationservice/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/databrew/api_client.go b/service/databrew/api_client.go index 842e76e6f82..57d3316b82b 100644 --- a/service/databrew/api_client.go +++ b/service/databrew/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/dataexchange/api_client.go b/service/dataexchange/api_client.go index 28bf1cfb350..ed833284b59 100644 --- a/service/dataexchange/api_client.go +++ b/service/dataexchange/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/datapipeline/api_client.go b/service/datapipeline/api_client.go index 3c2cee557d3..d9e6c1cc68d 100644 --- a/service/datapipeline/api_client.go +++ b/service/datapipeline/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/datasync/api_client.go b/service/datasync/api_client.go index 0ced58a95e8..29798db613f 100644 --- a/service/datasync/api_client.go +++ b/service/datasync/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/dax/api_client.go b/service/dax/api_client.go index a64b8add21c..a3d01b0cf52 100644 --- a/service/dax/api_client.go +++ b/service/dax/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/detective/api_client.go b/service/detective/api_client.go index 43e5544910b..a80d74b5918 100644 --- a/service/detective/api_client.go +++ b/service/detective/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/devicefarm/api_client.go b/service/devicefarm/api_client.go index 2e13d46607d..7e80050f21d 100644 --- a/service/devicefarm/api_client.go +++ b/service/devicefarm/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/devopsguru/api_client.go b/service/devopsguru/api_client.go index 699c0088c5d..9f36bca685b 100644 --- a/service/devopsguru/api_client.go +++ b/service/devopsguru/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/directconnect/api_client.go b/service/directconnect/api_client.go index e8879690400..e623270e332 100644 --- a/service/directconnect/api_client.go +++ b/service/directconnect/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/directoryservice/api_client.go b/service/directoryservice/api_client.go index c7b20b1e717..e4c435b0d79 100644 --- a/service/directoryservice/api_client.go +++ b/service/directoryservice/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/dlm/api_client.go b/service/dlm/api_client.go index cac6ddfdf35..4bd36473e8d 100644 --- a/service/dlm/api_client.go +++ b/service/dlm/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/docdb/api_client.go b/service/docdb/api_client.go index f3d6104ddd9..bee00b131f3 100644 --- a/service/docdb/api_client.go +++ b/service/docdb/api_client.go @@ -117,13 +117,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/drs/api_client.go b/service/drs/api_client.go index 7527dc46b76..70962ca1739 100644 --- a/service/drs/api_client.go +++ b/service/drs/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/dynamodb/api_client.go b/service/dynamodb/api_client.go index 5e6e70d74ab..d917d447a82 100644 --- a/service/dynamodb/api_client.go +++ b/service/dynamodb/api_client.go @@ -146,13 +146,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/dynamodbstreams/api_client.go b/service/dynamodbstreams/api_client.go index aeaf413a420..c43f966f368 100644 --- a/service/dynamodbstreams/api_client.go +++ b/service/dynamodbstreams/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ebs/api_client.go b/service/ebs/api_client.go index ab9b34db0fa..b8efb2249b9 100644 --- a/service/ebs/api_client.go +++ b/service/ebs/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ec2/api_client.go b/service/ec2/api_client.go index efce13263f7..13a332a510a 100644 --- a/service/ec2/api_client.go +++ b/service/ec2/api_client.go @@ -125,13 +125,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ec2instanceconnect/api_client.go b/service/ec2instanceconnect/api_client.go index 82b9b0ffe6b..63dc0553a07 100644 --- a/service/ec2instanceconnect/api_client.go +++ b/service/ec2instanceconnect/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ecr/api_client.go b/service/ecr/api_client.go index e50212ecd0d..c51da783083 100644 --- a/service/ecr/api_client.go +++ b/service/ecr/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ecrpublic/api_client.go b/service/ecrpublic/api_client.go index c8715164bba..dfd012e2ffe 100644 --- a/service/ecrpublic/api_client.go +++ b/service/ecrpublic/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ecs/api_client.go b/service/ecs/api_client.go index 49c2962706c..c35ce106ccd 100644 --- a/service/ecs/api_client.go +++ b/service/ecs/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/efs/api_client.go b/service/efs/api_client.go index 0eec7748ad7..0b9d93d7696 100644 --- a/service/efs/api_client.go +++ b/service/efs/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/eks/api_client.go b/service/eks/api_client.go index f5a1039c89f..ad228e80b82 100644 --- a/service/eks/api_client.go +++ b/service/eks/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/elasticache/api_client.go b/service/elasticache/api_client.go index aad3f350da1..fce4f0ce90c 100644 --- a/service/elasticache/api_client.go +++ b/service/elasticache/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/elasticbeanstalk/api_client.go b/service/elasticbeanstalk/api_client.go index aa97e20a9d3..83f99114718 100644 --- a/service/elasticbeanstalk/api_client.go +++ b/service/elasticbeanstalk/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/elasticinference/api_client.go b/service/elasticinference/api_client.go index 9830ec702bb..83b9b09468b 100644 --- a/service/elasticinference/api_client.go +++ b/service/elasticinference/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/elasticloadbalancing/api_client.go b/service/elasticloadbalancing/api_client.go index 302c9d44a0e..c335aad25c2 100644 --- a/service/elasticloadbalancing/api_client.go +++ b/service/elasticloadbalancing/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/elasticloadbalancingv2/api_client.go b/service/elasticloadbalancingv2/api_client.go index 5719188bd40..957e0e0fc8d 100644 --- a/service/elasticloadbalancingv2/api_client.go +++ b/service/elasticloadbalancingv2/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/elasticsearchservice/api_client.go b/service/elasticsearchservice/api_client.go index 95b4e6a954a..9fcebb805a6 100644 --- a/service/elasticsearchservice/api_client.go +++ b/service/elasticsearchservice/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/elastictranscoder/api_client.go b/service/elastictranscoder/api_client.go index 5ded4d957b7..79786e2d7b5 100644 --- a/service/elastictranscoder/api_client.go +++ b/service/elastictranscoder/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/emr/api_client.go b/service/emr/api_client.go index a18e115fb8f..278055209fd 100644 --- a/service/emr/api_client.go +++ b/service/emr/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/emrcontainers/api_client.go b/service/emrcontainers/api_client.go index 4e03723c646..9e4f8f42fbf 100644 --- a/service/emrcontainers/api_client.go +++ b/service/emrcontainers/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/eventbridge/api_client.go b/service/eventbridge/api_client.go index 84a4f524a4f..564e5fcb61e 100644 --- a/service/eventbridge/api_client.go +++ b/service/eventbridge/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/evidently/api_client.go b/service/evidently/api_client.go index d90fc79c993..536ebdd3a3f 100644 --- a/service/evidently/api_client.go +++ b/service/evidently/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/finspace/api_client.go b/service/finspace/api_client.go index 3953711cc61..5108c3d07c9 100644 --- a/service/finspace/api_client.go +++ b/service/finspace/api_client.go @@ -117,13 +117,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/finspacedata/api_client.go b/service/finspacedata/api_client.go index c2eb2cbc6ec..b9ad1f9dcb0 100644 --- a/service/finspacedata/api_client.go +++ b/service/finspacedata/api_client.go @@ -124,13 +124,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/firehose/api_client.go b/service/firehose/api_client.go index 962c325b8ff..d60477d4ba1 100644 --- a/service/firehose/api_client.go +++ b/service/firehose/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/fis/api_client.go b/service/fis/api_client.go index 70e01a4633c..75d5759247f 100644 --- a/service/fis/api_client.go +++ b/service/fis/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/fms/api_client.go b/service/fms/api_client.go index 21ea072c04c..4db3f61e2b8 100644 --- a/service/fms/api_client.go +++ b/service/fms/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/forecast/api_client.go b/service/forecast/api_client.go index e740d67760b..13067ab2d22 100644 --- a/service/forecast/api_client.go +++ b/service/forecast/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/forecastquery/api_client.go b/service/forecastquery/api_client.go index 9054075df2a..ca00cfbdcb4 100644 --- a/service/forecastquery/api_client.go +++ b/service/forecastquery/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/frauddetector/api_client.go b/service/frauddetector/api_client.go index 88ce3f54a68..bfee2059ee4 100644 --- a/service/frauddetector/api_client.go +++ b/service/frauddetector/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/fsx/api_client.go b/service/fsx/api_client.go index 9ea2867afd8..e60a64e774e 100644 --- a/service/fsx/api_client.go +++ b/service/fsx/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/gamelift/api_client.go b/service/gamelift/api_client.go index 682658a72b4..13b93d2eeb8 100644 --- a/service/gamelift/api_client.go +++ b/service/gamelift/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/glacier/api_client.go b/service/glacier/api_client.go index 34761f1c37e..ab825a1287a 100644 --- a/service/glacier/api_client.go +++ b/service/glacier/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/globalaccelerator/api_client.go b/service/globalaccelerator/api_client.go index 887d64a89d5..283df6dad56 100644 --- a/service/globalaccelerator/api_client.go +++ b/service/globalaccelerator/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/glue/api_client.go b/service/glue/api_client.go index d8955e14145..a8d7509ff1e 100644 --- a/service/glue/api_client.go +++ b/service/glue/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/grafana/api_client.go b/service/grafana/api_client.go index e194e98f3b8..9749eb01457 100644 --- a/service/grafana/api_client.go +++ b/service/grafana/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/greengrass/api_client.go b/service/greengrass/api_client.go index 1e92cd255f8..76eeed19c2f 100644 --- a/service/greengrass/api_client.go +++ b/service/greengrass/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/greengrassv2/api_client.go b/service/greengrassv2/api_client.go index d293d2bd640..b5a4b294045 100644 --- a/service/greengrassv2/api_client.go +++ b/service/greengrassv2/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/groundstation/api_client.go b/service/groundstation/api_client.go index c7ae69dfae9..b7eb50a997c 100644 --- a/service/groundstation/api_client.go +++ b/service/groundstation/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/guardduty/api_client.go b/service/guardduty/api_client.go index c7e61db5318..7b63390cde4 100644 --- a/service/guardduty/api_client.go +++ b/service/guardduty/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/health/api_client.go b/service/health/api_client.go index 1ea84a527d2..fdf72357de0 100644 --- a/service/health/api_client.go +++ b/service/health/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/healthlake/api_client.go b/service/healthlake/api_client.go index 15f34fbd644..cd038b2d4ee 100644 --- a/service/healthlake/api_client.go +++ b/service/healthlake/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/honeycode/api_client.go b/service/honeycode/api_client.go index 39c8ea67425..63a405ff13d 100644 --- a/service/honeycode/api_client.go +++ b/service/honeycode/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iam/api_client.go b/service/iam/api_client.go index 6b4bc2a8f57..50c03d8c135 100644 --- a/service/iam/api_client.go +++ b/service/iam/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/identitystore/api_client.go b/service/identitystore/api_client.go index 24e4b87ef9d..05e88424040 100644 --- a/service/identitystore/api_client.go +++ b/service/identitystore/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/imagebuilder/api_client.go b/service/imagebuilder/api_client.go index 7424b18a497..391f2286493 100644 --- a/service/imagebuilder/api_client.go +++ b/service/imagebuilder/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/inspector/api_client.go b/service/inspector/api_client.go index 978b484d7a8..5eaf6b60696 100644 --- a/service/inspector/api_client.go +++ b/service/inspector/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/inspector2/api_client.go b/service/inspector2/api_client.go index 76f6f50e0f0..134999b5395 100644 --- a/service/inspector2/api_client.go +++ b/service/inspector2/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iot/api_client.go b/service/iot/api_client.go index f902e41e12e..4e03c83d50a 100644 --- a/service/iot/api_client.go +++ b/service/iot/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iot1clickdevicesservice/api_client.go b/service/iot1clickdevicesservice/api_client.go index 9b61245a526..196120ddc30 100644 --- a/service/iot1clickdevicesservice/api_client.go +++ b/service/iot1clickdevicesservice/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iot1clickprojects/api_client.go b/service/iot1clickprojects/api_client.go index 3a0f53f7d0e..de1db93ef76 100644 --- a/service/iot1clickprojects/api_client.go +++ b/service/iot1clickprojects/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iotanalytics/api_client.go b/service/iotanalytics/api_client.go index a8edfd43b43..fec22140f43 100644 --- a/service/iotanalytics/api_client.go +++ b/service/iotanalytics/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iotdataplane/api_client.go b/service/iotdataplane/api_client.go index 4e6a675ec12..ee465c1f420 100644 --- a/service/iotdataplane/api_client.go +++ b/service/iotdataplane/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iotdeviceadvisor/api_client.go b/service/iotdeviceadvisor/api_client.go index e5ad9dc9ce4..cb552a8d4ff 100644 --- a/service/iotdeviceadvisor/api_client.go +++ b/service/iotdeviceadvisor/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iotevents/api_client.go b/service/iotevents/api_client.go index 15660c8ba8e..718dc1825e5 100644 --- a/service/iotevents/api_client.go +++ b/service/iotevents/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ioteventsdata/api_client.go b/service/ioteventsdata/api_client.go index 58a4a87b0d2..71327cd73a0 100644 --- a/service/ioteventsdata/api_client.go +++ b/service/ioteventsdata/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iotfleethub/api_client.go b/service/iotfleethub/api_client.go index 0763b675cdf..124cdb05666 100644 --- a/service/iotfleethub/api_client.go +++ b/service/iotfleethub/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iotjobsdataplane/api_client.go b/service/iotjobsdataplane/api_client.go index ab10f7ae968..264208e1d7a 100644 --- a/service/iotjobsdataplane/api_client.go +++ b/service/iotjobsdataplane/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iotsecuretunneling/api_client.go b/service/iotsecuretunneling/api_client.go index 962b269c9a9..3f3ecf1cc67 100644 --- a/service/iotsecuretunneling/api_client.go +++ b/service/iotsecuretunneling/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iotsitewise/api_client.go b/service/iotsitewise/api_client.go index 241f99b0db2..8588855176b 100644 --- a/service/iotsitewise/api_client.go +++ b/service/iotsitewise/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iotthingsgraph/api_client.go b/service/iotthingsgraph/api_client.go index 9be2cd64d1e..fe506a74453 100644 --- a/service/iotthingsgraph/api_client.go +++ b/service/iotthingsgraph/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iottwinmaker/api_client.go b/service/iottwinmaker/api_client.go index b04b411f861..8558087c349 100644 --- a/service/iottwinmaker/api_client.go +++ b/service/iottwinmaker/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/iotwireless/api_client.go b/service/iotwireless/api_client.go index c6ae633caa5..7006062b487 100644 --- a/service/iotwireless/api_client.go +++ b/service/iotwireless/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ivs/api_client.go b/service/ivs/api_client.go index 528a8a1929e..2d6ad181f94 100644 --- a/service/ivs/api_client.go +++ b/service/ivs/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/kafka/api_client.go b/service/kafka/api_client.go index 3adfe35742a..fbcffa248ee 100644 --- a/service/kafka/api_client.go +++ b/service/kafka/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/kafkaconnect/api_client.go b/service/kafkaconnect/api_client.go index e1315553adb..76ac9f156a7 100644 --- a/service/kafkaconnect/api_client.go +++ b/service/kafkaconnect/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/kendra/api_client.go b/service/kendra/api_client.go index 9c8d97a1a7c..d09ae9a1531 100644 --- a/service/kendra/api_client.go +++ b/service/kendra/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/kinesis/api_client.go b/service/kinesis/api_client.go index 1b399a3baad..01893b6e27e 100644 --- a/service/kinesis/api_client.go +++ b/service/kinesis/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/kinesisanalytics/api_client.go b/service/kinesisanalytics/api_client.go index 0a8ad08b7a9..8652af14380 100644 --- a/service/kinesisanalytics/api_client.go +++ b/service/kinesisanalytics/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/kinesisanalyticsv2/api_client.go b/service/kinesisanalyticsv2/api_client.go index 4428998ab1d..df0da6ca09e 100644 --- a/service/kinesisanalyticsv2/api_client.go +++ b/service/kinesisanalyticsv2/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/kinesisvideo/api_client.go b/service/kinesisvideo/api_client.go index 78c8aecc431..262643cbb6a 100644 --- a/service/kinesisvideo/api_client.go +++ b/service/kinesisvideo/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/kinesisvideoarchivedmedia/api_client.go b/service/kinesisvideoarchivedmedia/api_client.go index 58995ebacbb..a5217985cef 100644 --- a/service/kinesisvideoarchivedmedia/api_client.go +++ b/service/kinesisvideoarchivedmedia/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/kinesisvideomedia/api_client.go b/service/kinesisvideomedia/api_client.go index 903f417e737..5d98a7a8e61 100644 --- a/service/kinesisvideomedia/api_client.go +++ b/service/kinesisvideomedia/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/kinesisvideosignaling/api_client.go b/service/kinesisvideosignaling/api_client.go index 1eaf79004ad..f479e04c998 100644 --- a/service/kinesisvideosignaling/api_client.go +++ b/service/kinesisvideosignaling/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/kms/api_client.go b/service/kms/api_client.go index e8d21047592..e56ae816b25 100644 --- a/service/kms/api_client.go +++ b/service/kms/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/lakeformation/api_client.go b/service/lakeformation/api_client.go index 5396ff73b36..88cdba36358 100644 --- a/service/lakeformation/api_client.go +++ b/service/lakeformation/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/lambda/api_client.go b/service/lambda/api_client.go index da79b301420..7d72bf3a2b2 100644 --- a/service/lambda/api_client.go +++ b/service/lambda/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/lexmodelbuildingservice/api_client.go b/service/lexmodelbuildingservice/api_client.go index a3eb9f9f559..43f8005daf7 100644 --- a/service/lexmodelbuildingservice/api_client.go +++ b/service/lexmodelbuildingservice/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/lexmodelsv2/api_client.go b/service/lexmodelsv2/api_client.go index 88e629a4f34..d7d51961863 100644 --- a/service/lexmodelsv2/api_client.go +++ b/service/lexmodelsv2/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/lexruntimeservice/api_client.go b/service/lexruntimeservice/api_client.go index 4aa96bc4c1f..eb8fa5c713d 100644 --- a/service/lexruntimeservice/api_client.go +++ b/service/lexruntimeservice/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/lexruntimev2/api_client.go b/service/lexruntimev2/api_client.go index 5dbcb3babb0..83af61be5b6 100644 --- a/service/lexruntimev2/api_client.go +++ b/service/lexruntimev2/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/licensemanager/api_client.go b/service/licensemanager/api_client.go index 77a9f7041fc..fea8019e4ca 100644 --- a/service/licensemanager/api_client.go +++ b/service/licensemanager/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/lightsail/api_client.go b/service/lightsail/api_client.go index e0e148eb701..b8301db8c29 100644 --- a/service/lightsail/api_client.go +++ b/service/lightsail/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/location/api_client.go b/service/location/api_client.go index 75b9f7c89f8..32816b4cceb 100644 --- a/service/location/api_client.go +++ b/service/location/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/lookoutequipment/api_client.go b/service/lookoutequipment/api_client.go index af28afa859b..5c708d44f68 100644 --- a/service/lookoutequipment/api_client.go +++ b/service/lookoutequipment/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/lookoutmetrics/api_client.go b/service/lookoutmetrics/api_client.go index 0d9ce7f78f0..bdc9b7727c1 100644 --- a/service/lookoutmetrics/api_client.go +++ b/service/lookoutmetrics/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/lookoutvision/api_client.go b/service/lookoutvision/api_client.go index f5a6de70812..a033d0b5b42 100644 --- a/service/lookoutvision/api_client.go +++ b/service/lookoutvision/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/machinelearning/api_client.go b/service/machinelearning/api_client.go index 0e993811e47..f7ce2dc9915 100644 --- a/service/machinelearning/api_client.go +++ b/service/machinelearning/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/macie/api_client.go b/service/macie/api_client.go index 6ee56bd93f0..af881bb136a 100644 --- a/service/macie/api_client.go +++ b/service/macie/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/macie2/api_client.go b/service/macie2/api_client.go index db765384427..49e715a1c84 100644 --- a/service/macie2/api_client.go +++ b/service/macie2/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/managedblockchain/api_client.go b/service/managedblockchain/api_client.go index 6522af4af01..333ec7845da 100644 --- a/service/managedblockchain/api_client.go +++ b/service/managedblockchain/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/marketplacecatalog/api_client.go b/service/marketplacecatalog/api_client.go index 0f293e19d8f..9fd3b3a3562 100644 --- a/service/marketplacecatalog/api_client.go +++ b/service/marketplacecatalog/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/marketplacecommerceanalytics/api_client.go b/service/marketplacecommerceanalytics/api_client.go index b24981bba8a..93a74d5f131 100644 --- a/service/marketplacecommerceanalytics/api_client.go +++ b/service/marketplacecommerceanalytics/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/marketplaceentitlementservice/api_client.go b/service/marketplaceentitlementservice/api_client.go index 073590013fa..772789e1079 100644 --- a/service/marketplaceentitlementservice/api_client.go +++ b/service/marketplaceentitlementservice/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/marketplacemetering/api_client.go b/service/marketplacemetering/api_client.go index 8a11b37575a..ba753956c72 100644 --- a/service/marketplacemetering/api_client.go +++ b/service/marketplacemetering/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/mediaconnect/api_client.go b/service/mediaconnect/api_client.go index c614c5d3c15..8d8b4fe8091 100644 --- a/service/mediaconnect/api_client.go +++ b/service/mediaconnect/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/mediaconvert/api_client.go b/service/mediaconvert/api_client.go index e243e4e20dc..d992173208c 100644 --- a/service/mediaconvert/api_client.go +++ b/service/mediaconvert/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/medialive/api_client.go b/service/medialive/api_client.go index 965d88f4990..e3622397f8c 100644 --- a/service/medialive/api_client.go +++ b/service/medialive/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/mediapackage/api_client.go b/service/mediapackage/api_client.go index 47b8b3d12e4..39a119618ab 100644 --- a/service/mediapackage/api_client.go +++ b/service/mediapackage/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/mediapackagevod/api_client.go b/service/mediapackagevod/api_client.go index 94c9ef7c291..dbb576fb0f4 100644 --- a/service/mediapackagevod/api_client.go +++ b/service/mediapackagevod/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/mediastore/api_client.go b/service/mediastore/api_client.go index 44b000a8a6e..776eab51477 100644 --- a/service/mediastore/api_client.go +++ b/service/mediastore/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/mediastoredata/api_client.go b/service/mediastoredata/api_client.go index 2301481b334..31726e84f11 100644 --- a/service/mediastoredata/api_client.go +++ b/service/mediastoredata/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/mediatailor/api_client.go b/service/mediatailor/api_client.go index a6f70ae8520..ea670ea07e2 100644 --- a/service/mediatailor/api_client.go +++ b/service/mediatailor/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/memorydb/api_client.go b/service/memorydb/api_client.go index 676dce28e51..f666b91a605 100644 --- a/service/memorydb/api_client.go +++ b/service/memorydb/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/mgn/api_client.go b/service/mgn/api_client.go index 74a09b52a5b..ac662418577 100644 --- a/service/mgn/api_client.go +++ b/service/mgn/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/migrationhub/api_client.go b/service/migrationhub/api_client.go index 52e894b0134..284c68b29d4 100644 --- a/service/migrationhub/api_client.go +++ b/service/migrationhub/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/migrationhubconfig/api_client.go b/service/migrationhubconfig/api_client.go index ef790abf12a..f48fa383578 100644 --- a/service/migrationhubconfig/api_client.go +++ b/service/migrationhubconfig/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/migrationhubrefactorspaces/api_client.go b/service/migrationhubrefactorspaces/api_client.go index 86d97325bea..0f90282dcf5 100644 --- a/service/migrationhubrefactorspaces/api_client.go +++ b/service/migrationhubrefactorspaces/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/migrationhubstrategy/api_client.go b/service/migrationhubstrategy/api_client.go index 4f74e8de5cb..357e88479fd 100644 --- a/service/migrationhubstrategy/api_client.go +++ b/service/migrationhubstrategy/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/mobile/api_client.go b/service/mobile/api_client.go index 6b0d5c41026..6ed52a0dd01 100644 --- a/service/mobile/api_client.go +++ b/service/mobile/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/mq/api_client.go b/service/mq/api_client.go index a4e0ce218e7..691b3b86ef9 100644 --- a/service/mq/api_client.go +++ b/service/mq/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/mturk/api_client.go b/service/mturk/api_client.go index 5c5695bc770..cf760e289b9 100644 --- a/service/mturk/api_client.go +++ b/service/mturk/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/mwaa/api_client.go b/service/mwaa/api_client.go index a29c119253d..a26cf2eb966 100644 --- a/service/mwaa/api_client.go +++ b/service/mwaa/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/neptune/api_client.go b/service/neptune/api_client.go index ae4f772a3a2..b0468fa9713 100644 --- a/service/neptune/api_client.go +++ b/service/neptune/api_client.go @@ -116,13 +116,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/networkfirewall/api_client.go b/service/networkfirewall/api_client.go index aa36d33fd02..c4e3e4e8a6e 100644 --- a/service/networkfirewall/api_client.go +++ b/service/networkfirewall/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/networkmanager/api_client.go b/service/networkmanager/api_client.go index 2122ccb5e03..eebd61c9e73 100644 --- a/service/networkmanager/api_client.go +++ b/service/networkmanager/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/nimble/api_client.go b/service/nimble/api_client.go index 790ca0f377c..021fddaaf54 100644 --- a/service/nimble/api_client.go +++ b/service/nimble/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/opensearch/api_client.go b/service/opensearch/api_client.go index aea23652d8c..5e2730b3a91 100644 --- a/service/opensearch/api_client.go +++ b/service/opensearch/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/opsworks/api_client.go b/service/opsworks/api_client.go index d2a579a3482..341a24d8415 100644 --- a/service/opsworks/api_client.go +++ b/service/opsworks/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/opsworkscm/api_client.go b/service/opsworkscm/api_client.go index 1d8b6cbcc2e..6505adc2f1b 100644 --- a/service/opsworkscm/api_client.go +++ b/service/opsworkscm/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/organizations/api_client.go b/service/organizations/api_client.go index cf7d97999b0..04cfc9fa73e 100644 --- a/service/organizations/api_client.go +++ b/service/organizations/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/outposts/api_client.go b/service/outposts/api_client.go index 8d853bca1b6..900d2f3210e 100644 --- a/service/outposts/api_client.go +++ b/service/outposts/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/panorama/api_client.go b/service/panorama/api_client.go index 3cd6de6e46f..216c99fbdd7 100644 --- a/service/panorama/api_client.go +++ b/service/panorama/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/personalize/api_client.go b/service/personalize/api_client.go index 424e2bbebb3..3ceab46180a 100644 --- a/service/personalize/api_client.go +++ b/service/personalize/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/personalizeevents/api_client.go b/service/personalizeevents/api_client.go index 2741c9816c1..9b4ca421fc0 100644 --- a/service/personalizeevents/api_client.go +++ b/service/personalizeevents/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/personalizeruntime/api_client.go b/service/personalizeruntime/api_client.go index af674de1bcd..c108b7f57ba 100644 --- a/service/personalizeruntime/api_client.go +++ b/service/personalizeruntime/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/pi/api_client.go b/service/pi/api_client.go index abaa57aafa7..7aa0131c07e 100644 --- a/service/pi/api_client.go +++ b/service/pi/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/pinpoint/api_client.go b/service/pinpoint/api_client.go index 3b67d6ffa68..1ee949d9dbc 100644 --- a/service/pinpoint/api_client.go +++ b/service/pinpoint/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/pinpointemail/api_client.go b/service/pinpointemail/api_client.go index 1a7d980673c..33ab5ae3680 100644 --- a/service/pinpointemail/api_client.go +++ b/service/pinpointemail/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/pinpointsmsvoice/api_client.go b/service/pinpointsmsvoice/api_client.go index d2adbd051ae..45f12d76487 100644 --- a/service/pinpointsmsvoice/api_client.go +++ b/service/pinpointsmsvoice/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/polly/api_client.go b/service/polly/api_client.go index d8efd82ab79..c170d306aa3 100644 --- a/service/polly/api_client.go +++ b/service/polly/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/pricing/api_client.go b/service/pricing/api_client.go index 352bf43ce5e..4a0d2f1d998 100644 --- a/service/pricing/api_client.go +++ b/service/pricing/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/proton/api_client.go b/service/proton/api_client.go index 8e67d7d0caa..990ebd0e23c 100644 --- a/service/proton/api_client.go +++ b/service/proton/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/qldb/api_client.go b/service/qldb/api_client.go index fe37ae396a0..86c47478eb5 100644 --- a/service/qldb/api_client.go +++ b/service/qldb/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/qldbsession/api_client.go b/service/qldbsession/api_client.go index e70424195f5..3ee495cbc9d 100644 --- a/service/qldbsession/api_client.go +++ b/service/qldbsession/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/quicksight/api_client.go b/service/quicksight/api_client.go index 566e9d46f8c..4bb80ab0cd1 100644 --- a/service/quicksight/api_client.go +++ b/service/quicksight/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ram/api_client.go b/service/ram/api_client.go index 7083d376717..e00cbd68179 100644 --- a/service/ram/api_client.go +++ b/service/ram/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/rbin/api_client.go b/service/rbin/api_client.go index 3918a243b8b..ca887512514 100644 --- a/service/rbin/api_client.go +++ b/service/rbin/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/rds/api_client.go b/service/rds/api_client.go index f64198afca1..4833992d041 100644 --- a/service/rds/api_client.go +++ b/service/rds/api_client.go @@ -117,13 +117,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/rdsdata/api_client.go b/service/rdsdata/api_client.go index b50406aa439..4c94b5e3949 100644 --- a/service/rdsdata/api_client.go +++ b/service/rdsdata/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/redshift/api_client.go b/service/redshift/api_client.go index 3b0048bf7f4..044cf420b5a 100644 --- a/service/redshift/api_client.go +++ b/service/redshift/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/redshiftdata/api_client.go b/service/redshiftdata/api_client.go index e1284a2e8e2..7417977fb63 100644 --- a/service/redshiftdata/api_client.go +++ b/service/redshiftdata/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/rekognition/api_client.go b/service/rekognition/api_client.go index a0e74d1a9b0..41058328540 100644 --- a/service/rekognition/api_client.go +++ b/service/rekognition/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/resiliencehub/api_client.go b/service/resiliencehub/api_client.go index b09efebba90..b6edce13290 100644 --- a/service/resiliencehub/api_client.go +++ b/service/resiliencehub/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/resourcegroups/api_client.go b/service/resourcegroups/api_client.go index 4784cc01660..a0d1b322607 100644 --- a/service/resourcegroups/api_client.go +++ b/service/resourcegroups/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/resourcegroupstaggingapi/api_client.go b/service/resourcegroupstaggingapi/api_client.go index d4449d54286..a7570526213 100644 --- a/service/resourcegroupstaggingapi/api_client.go +++ b/service/resourcegroupstaggingapi/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/robomaker/api_client.go b/service/robomaker/api_client.go index b8b1d5e58f4..416ac9ee576 100644 --- a/service/robomaker/api_client.go +++ b/service/robomaker/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/route53/api_client.go b/service/route53/api_client.go index 7efb944beed..fdfe740e1ff 100644 --- a/service/route53/api_client.go +++ b/service/route53/api_client.go @@ -116,13 +116,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/route53domains/api_client.go b/service/route53domains/api_client.go index 2103bc951f1..30c6b6e488f 100644 --- a/service/route53domains/api_client.go +++ b/service/route53domains/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/route53recoverycluster/api_client.go b/service/route53recoverycluster/api_client.go index e982f150285..b924058c916 100644 --- a/service/route53recoverycluster/api_client.go +++ b/service/route53recoverycluster/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/route53recoverycontrolconfig/api_client.go b/service/route53recoverycontrolconfig/api_client.go index 2dfd217fcc4..d1259cf0873 100644 --- a/service/route53recoverycontrolconfig/api_client.go +++ b/service/route53recoverycontrolconfig/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/route53recoveryreadiness/api_client.go b/service/route53recoveryreadiness/api_client.go index ba92d96c76c..49cf2cef8c0 100644 --- a/service/route53recoveryreadiness/api_client.go +++ b/service/route53recoveryreadiness/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/route53resolver/api_client.go b/service/route53resolver/api_client.go index 1814db92b57..f66697966e0 100644 --- a/service/route53resolver/api_client.go +++ b/service/route53resolver/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/rum/api_client.go b/service/rum/api_client.go index 945447944c2..35a46c4581b 100644 --- a/service/rum/api_client.go +++ b/service/rum/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/s3/api_client.go b/service/s3/api_client.go index b35b1276cee..219342edcc7 100644 --- a/service/s3/api_client.go +++ b/service/s3/api_client.go @@ -130,7 +130,7 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment @@ -162,7 +162,7 @@ type Options struct { httpSignerV4a httpSignerV4a // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/s3control/api_client.go b/service/s3control/api_client.go index d09b45a9ab2..628585a1c3e 100644 --- a/service/s3control/api_client.go +++ b/service/s3control/api_client.go @@ -124,7 +124,7 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment @@ -140,7 +140,7 @@ type Options struct { UseDualstack bool // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/s3outposts/api_client.go b/service/s3outposts/api_client.go index aaaf10945c4..ff7899bde7b 100644 --- a/service/s3outposts/api_client.go +++ b/service/s3outposts/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/sagemaker/api_client.go b/service/sagemaker/api_client.go index c5fdccd7e28..40bbb802fb9 100644 --- a/service/sagemaker/api_client.go +++ b/service/sagemaker/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/sagemakera2iruntime/api_client.go b/service/sagemakera2iruntime/api_client.go index b124434cb97..deb0621b0e0 100644 --- a/service/sagemakera2iruntime/api_client.go +++ b/service/sagemakera2iruntime/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/sagemakeredge/api_client.go b/service/sagemakeredge/api_client.go index f0eb4cc89c6..d8075a917e0 100644 --- a/service/sagemakeredge/api_client.go +++ b/service/sagemakeredge/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/sagemakerfeaturestoreruntime/api_client.go b/service/sagemakerfeaturestoreruntime/api_client.go index 359c17f2ec7..c584d02e3b0 100644 --- a/service/sagemakerfeaturestoreruntime/api_client.go +++ b/service/sagemakerfeaturestoreruntime/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/sagemakerruntime/api_client.go b/service/sagemakerruntime/api_client.go index 8f71a76f969..5444ee15e3f 100644 --- a/service/sagemakerruntime/api_client.go +++ b/service/sagemakerruntime/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/savingsplans/api_client.go b/service/savingsplans/api_client.go index 9095d56b744..992d7eeee9f 100644 --- a/service/savingsplans/api_client.go +++ b/service/savingsplans/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/schemas/api_client.go b/service/schemas/api_client.go index 2499832310e..bca388b7df8 100644 --- a/service/schemas/api_client.go +++ b/service/schemas/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/secretsmanager/api_client.go b/service/secretsmanager/api_client.go index ccd32eca523..9c8fae5ba56 100644 --- a/service/secretsmanager/api_client.go +++ b/service/secretsmanager/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/securityhub/api_client.go b/service/securityhub/api_client.go index 35922939209..1d450b4d66e 100644 --- a/service/securityhub/api_client.go +++ b/service/securityhub/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/serverlessapplicationrepository/api_client.go b/service/serverlessapplicationrepository/api_client.go index b5f5baa864f..b140cde2ee7 100644 --- a/service/serverlessapplicationrepository/api_client.go +++ b/service/serverlessapplicationrepository/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/servicecatalog/api_client.go b/service/servicecatalog/api_client.go index 48b8e3e138d..8543019c279 100644 --- a/service/servicecatalog/api_client.go +++ b/service/servicecatalog/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/servicecatalogappregistry/api_client.go b/service/servicecatalogappregistry/api_client.go index da2625303f8..8714c107c28 100644 --- a/service/servicecatalogappregistry/api_client.go +++ b/service/servicecatalogappregistry/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/servicediscovery/api_client.go b/service/servicediscovery/api_client.go index 99fed0a4df0..aac103ec491 100644 --- a/service/servicediscovery/api_client.go +++ b/service/servicediscovery/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/servicequotas/api_client.go b/service/servicequotas/api_client.go index 87a350ae7e8..edd53653f65 100644 --- a/service/servicequotas/api_client.go +++ b/service/servicequotas/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ses/api_client.go b/service/ses/api_client.go index b8e61e0c21d..4961ee172c0 100644 --- a/service/ses/api_client.go +++ b/service/ses/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/sesv2/api_client.go b/service/sesv2/api_client.go index e38f01ea724..a69074e1c99 100644 --- a/service/sesv2/api_client.go +++ b/service/sesv2/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/sfn/api_client.go b/service/sfn/api_client.go index 769d8e208cf..a4999d1d103 100644 --- a/service/sfn/api_client.go +++ b/service/sfn/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/shield/api_client.go b/service/shield/api_client.go index 91780c9ca8e..882ef76cbaf 100644 --- a/service/shield/api_client.go +++ b/service/shield/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/signer/api_client.go b/service/signer/api_client.go index 0e9f91078b0..59848c3cd42 100644 --- a/service/signer/api_client.go +++ b/service/signer/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/sms/api_client.go b/service/sms/api_client.go index efcf01f5191..38a00101b11 100644 --- a/service/sms/api_client.go +++ b/service/sms/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/snowball/api_client.go b/service/snowball/api_client.go index 612836c8221..3236026bfa9 100644 --- a/service/snowball/api_client.go +++ b/service/snowball/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/snowdevicemanagement/api_client.go b/service/snowdevicemanagement/api_client.go index 65d943d336f..2fedc14545a 100644 --- a/service/snowdevicemanagement/api_client.go +++ b/service/snowdevicemanagement/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/sns/api_client.go b/service/sns/api_client.go index cbb08c7b816..6011dbf121c 100644 --- a/service/sns/api_client.go +++ b/service/sns/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/sqs/api_client.go b/service/sqs/api_client.go index 8de59529928..ce463acad66 100644 --- a/service/sqs/api_client.go +++ b/service/sqs/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ssm/api_client.go b/service/ssm/api_client.go index c4b8257de04..ce314c3736a 100644 --- a/service/ssm/api_client.go +++ b/service/ssm/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ssmcontacts/api_client.go b/service/ssmcontacts/api_client.go index f587c177859..b49f26bc13e 100644 --- a/service/ssmcontacts/api_client.go +++ b/service/ssmcontacts/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ssmincidents/api_client.go b/service/ssmincidents/api_client.go index 234884eb96c..e5c6b8e3b09 100644 --- a/service/ssmincidents/api_client.go +++ b/service/ssmincidents/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/sso/api_client.go b/service/sso/api_client.go index a3a1a674254..7bb06984442 100644 --- a/service/sso/api_client.go +++ b/service/sso/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ssoadmin/api_client.go b/service/ssoadmin/api_client.go index c3b3b4dd30e..7cc44d3dbcb 100644 --- a/service/ssoadmin/api_client.go +++ b/service/ssoadmin/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/ssooidc/api_client.go b/service/ssooidc/api_client.go index 4441e0f2493..5e0a85a2c1a 100644 --- a/service/ssooidc/api_client.go +++ b/service/ssooidc/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/storagegateway/api_client.go b/service/storagegateway/api_client.go index 2168663ac7a..66b2dd56df0 100644 --- a/service/storagegateway/api_client.go +++ b/service/storagegateway/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/sts/api_client.go b/service/sts/api_client.go index e947abd8950..4bff1dfe229 100644 --- a/service/sts/api_client.go +++ b/service/sts/api_client.go @@ -117,13 +117,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/support/api_client.go b/service/support/api_client.go index a5468dad1ab..610595f1c59 100644 --- a/service/support/api_client.go +++ b/service/support/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/swf/api_client.go b/service/swf/api_client.go index 76fed074542..1c1646a4311 100644 --- a/service/swf/api_client.go +++ b/service/swf/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/synthetics/api_client.go b/service/synthetics/api_client.go index 4da992c2b68..320611cd3be 100644 --- a/service/synthetics/api_client.go +++ b/service/synthetics/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/textract/api_client.go b/service/textract/api_client.go index c42faecbb4b..4b81b96cdce 100644 --- a/service/textract/api_client.go +++ b/service/textract/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/timestreamquery/api_client.go b/service/timestreamquery/api_client.go index e4a0838b1c1..6b9601faf06 100644 --- a/service/timestreamquery/api_client.go +++ b/service/timestreamquery/api_client.go @@ -137,13 +137,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/timestreamwrite/api_client.go b/service/timestreamwrite/api_client.go index 831070e266e..20ce915ea0d 100644 --- a/service/timestreamwrite/api_client.go +++ b/service/timestreamwrite/api_client.go @@ -129,13 +129,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/transcribe/api_client.go b/service/transcribe/api_client.go index 2f536f2140b..b5baf05f944 100644 --- a/service/transcribe/api_client.go +++ b/service/transcribe/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/transcribestreaming/api_client.go b/service/transcribestreaming/api_client.go index 507a2afd789..38ddc33d530 100644 --- a/service/transcribestreaming/api_client.go +++ b/service/transcribestreaming/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/transfer/api_client.go b/service/transfer/api_client.go index 0899022a6fc..0592b9fb0ee 100644 --- a/service/transfer/api_client.go +++ b/service/transfer/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/translate/api_client.go b/service/translate/api_client.go index b9790ecfebc..517d3eac4ea 100644 --- a/service/translate/api_client.go +++ b/service/translate/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/voiceid/api_client.go b/service/voiceid/api_client.go index bf78108dc57..909fafbc7cd 100644 --- a/service/voiceid/api_client.go +++ b/service/voiceid/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/waf/api_client.go b/service/waf/api_client.go index 9225101ec54..bb8dc109b8a 100644 --- a/service/waf/api_client.go +++ b/service/waf/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/wafregional/api_client.go b/service/wafregional/api_client.go index c0824bdfb8e..305e37b999b 100644 --- a/service/wafregional/api_client.go +++ b/service/wafregional/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/wafv2/api_client.go b/service/wafv2/api_client.go index f8baec17c0e..90e965435db 100644 --- a/service/wafv2/api_client.go +++ b/service/wafv2/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/wellarchitected/api_client.go b/service/wellarchitected/api_client.go index 87f09a3d647..54b5ae12d36 100644 --- a/service/wellarchitected/api_client.go +++ b/service/wellarchitected/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/wisdom/api_client.go b/service/wisdom/api_client.go index 7aba03f75e9..8a82f57bad5 100644 --- a/service/wisdom/api_client.go +++ b/service/wisdom/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/workdocs/api_client.go b/service/workdocs/api_client.go index c60a2f847a1..64e61340d5c 100644 --- a/service/workdocs/api_client.go +++ b/service/workdocs/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/worklink/api_client.go b/service/worklink/api_client.go index 0fd257ce63e..8cbd37ca6e3 100644 --- a/service/worklink/api_client.go +++ b/service/worklink/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/workmail/api_client.go b/service/workmail/api_client.go index 835f6b17236..eee62e53751 100644 --- a/service/workmail/api_client.go +++ b/service/workmail/api_client.go @@ -122,13 +122,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/workmailmessageflow/api_client.go b/service/workmailmessageflow/api_client.go index 77741d09fdc..3ca133f14fc 100644 --- a/service/workmailmessageflow/api_client.go +++ b/service/workmailmessageflow/api_client.go @@ -115,13 +115,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/workspaces/api_client.go b/service/workspaces/api_client.go index 456ba98aad1..ce3466c6927 100644 --- a/service/workspaces/api_client.go +++ b/service/workspaces/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/workspacesweb/api_client.go b/service/workspacesweb/api_client.go index 77d64c1990d..d6488311b0a 100644 --- a/service/workspacesweb/api_client.go +++ b/service/workspacesweb/api_client.go @@ -123,13 +123,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode diff --git a/service/xray/api_client.go b/service/xray/api_client.go index 2ecb3a25d48..d2ab0e7edd8 100644 --- a/service/xray/api_client.go +++ b/service/xray/api_client.go @@ -114,13 +114,13 @@ type Options struct { Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set - // to AutoDefaultsMode and is initialized using config.LoadDefaultConfig. You + // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The initial DefaultsMode used when the client options were constructed. If the - // DefaultsMode was set to aws.AutoDefaultsMode this will store what the resolved + // DefaultsMode was set to aws.DefaultsModeAuto this will store what the resolved // value was at that point in time. Currently does not support per operation call // overrides, may in the future. resolvedDefaultsMode aws.DefaultsMode