awscredsprovider

package module
v0.0.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 4, 2023 License: MIT Imports: 2 Imported by: 0

README

GoDoc CircleCI

AWS Config & Clients Provider for Go (aws-ccp-go)

A lightweight wrapper on the AWS SDK for Go V2, Config & Clients API.

aws-ccp-go is a light-weight wrapper on the AWS SDK for Go v2. The goal of this module is to simplify the AWS Go SDK configuration sources. It also aims at making initialization of clients with the most commonly used configuration options, simple & straightforward. It eliminates the need of having boilerpate code spread across the clients' code base, as well as making client initialization code across multiple projects consistent & easier.

For instance, initializing an EC2 client using the default credential sources of AWS SDK can be acheived by simply importing this module with a _ (blank) identifier. As a side-effect of a blank import, a CredsProvider named default is initialized using the AWS default credentials chain & cached for later use.


More on AWS SDK configuration here.


This works for majority of use cases where AWS credentials are used from the most common sources, e.g AWS environment variable, or shared config & credentials files, IAM role for ECS tasks or IAM role for EC2 instance (in that order)

 import (

	// intializes a `default` provider using AWS SDK defaults, with a DefaultCredsProvider
	_ github.com/TouchBistro/aws-ccp-go 

	// import the providers package to call the provider builder functions
	github.com/TouchBistro/aws-ccp-go/providers 
	// import the clients/_ec2 package to call the ec2 client initializer
	github.com/TouchBistro/aws-ccp-go/clients/_ec2 
 )

		:
		:
		// fetch the cached `default` provider
		p, err := providers.Default()
		// get an EC2 client
		client, err := _ec2.Client(p)
 
		:
		:

If multiple AWS credential sources are required, the aws-ccp-go API makes it simple to explicitly define the configuration without the need of constructing an aws.Config object in the client code using various builder functions supplied with the AWS SDK.

For instance, if the AWS static credentials are to be supplied using non-standard environment variables, you can use the EnvironmentCredsProvider to configure this.


   // uses static credentials from standard AWS env vars; 
   // AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN
   env0, err := providers.NewEnvironmentCredsProvider(ctx, "env0")

   // uses static credentials from custom env vars
   env1, err := providers.NewEnvironmentCredsProvider(ctx, "env1", 
			providers.WithAccessKeyId
			From("MY_ACCESS_KEY_ID"), 
				providers.WithSecretAccessKeyFrom("MY_SECRET_ACCES"), 
					providers.WithSessionTokenFrom("MY_SESSION_TOKEN"))

This allows the client code to set up multiple named CredProviders that use different sets to environment variables for fetching their separate static AWS credentials.

As shown in examples, aws-ccp-go uses a concept of named Providers to encapsulate the aws.Config and can later be used to initialize clients for AWS services

The module supplies client builders (helper functions) for all AWS services supported by the AWS SDK. These methods use an internal map to maintain & return singleton clients per provider.

The helper functions are exposed by service packages of this module under the /clients/ path; and of the form: github.com/TouchBistro/aws-ccp-go/clients/_<service_name>. These functions initialize & return AWS service clients using credentials encapsulated by these providers.


These client builder functions supplied in the _<service_name> packages are all auto-generated. More details about the code generation here. An example here client.go for reference.


A simple example of initializing a provider & client for ECS.


  p1, _ := provider.NewDefaultCredsProvider(context.Background(),"p1")
  client, _ := _ecs.Client(p1)

Following are more details on the types of providers included with this module:




AWS Configuration & Credentials

There are several ways to supply credentials to an AWS SDK Client. This is done by building a configuration (aws.Config) object with the sources of credentials & other required configuration attributes. When no specific configuration options are supplied, the SDK uses the default credentials chain as documented in the AWS SDK documentation.

The aws-ccp-go uses the Providers abstraction to intialize aws.Config for a specific source. All providers have a name. The NewXXXCredsProvider(...) functions return a new provider or a non-nil error if something goes wrong while configuring the provider.

	pr, err := providers.NewDefaultCredsProvider(context.Background(), "provider1")

This provider is also cached by the aws-ccp-go so it can be retrived in another location in the client code by using the provider.Default() or providers.Get(string) functions


	// returns a previously initialized provider named 
	// `provider1`, or a non-nil error
	pr, err := providers.Get("provider1") 

the default provider can be retrieved with

	// returns a provided named `default`, or a
	// non-nil error
	pr, err := providers.Default()



CredsProviderOptions


The NewXXXCredsProvider(...) builder functions provided by the aws-ccp-go use the configuration parameters supplied using the CredsProviderOptions struct to initialize the corresponding type of provider. Not all options are used for each type of provider. The type alias CredsProviderOptionsFunc acts as functional options that can be passed to the NewXXXCredsProvider functions to set the required AWS config.LoadOptions

These CredsProviderOptions are passed down to the config.LoadDefaultConfig(context, opts...) function in the AWS SDK to load the aws.Config. The config is then encapsualted by the provider & can be later used to initialize AWS SDK clients for services.

AWS config.LoadDefaultConfig(...) functions accepts functional options of type config.LoadOptions to customize a lot more than what is exposed by the CredsProviderOptions. So if it is required to configure additional load options, then those may be supplied as CredsProviderOptions.LoadOptionFns which is a slice of func(*config.LoadOptions) error.

A set of options supplied by CredsProviderOptions & how to apply to various types of CredsProviders is shown in this table below.

Function Description Applies To
WithDefaultRegion() Sets AwsDefaultRegion constant value OR (us-east-1) as the AWS Region to use when building aws.Config for the provider. ALL
WithRegion(string) Sets the supplied region as the AWS region to use for the aws.Config for the provider. ALL
WithConfigLoadOptFns(optFns ...func(*config.LoadOptions) error) Supplies a set of functional options to set AWS SDK config.LoadOptions. This allows configuring the load options for the underlying aws.Config that are not availabe with the CredsProviderOptions. The optFns supplied here are passed directly as-is to the config.LoadDefaultConfig() calls to AWS SDK under the hood. These are applied after the other Load Options set with CredsProviderOptions ALL
ValidateProvider() Turns on provider credentials validation. This results the provider to test the aws.Config by creating an internal STS client & making an sts:GetCallerIdentity() API call using the underlying configuration. This makes certain that the credentials are valid. Note that this does not check any permissions, just the validity of AWS credentials obtained using the provider ALL
WithAccessKeyIdFrom(string) Specifies the environment variable name to read the AWS Access Key ID static credential from. EnvironmentCredsProvider
WithSecretAccessKeyFrom(string) Specifies the environment variable name to read the AWS Secret Access Key credential from. EnvironmentCredsProvider
WithSessionTokenFrom(string) Specifies the environment variable name to read the AWS Session Token from. EnvironmentCredsProvider
WithConfigFile(string) Specifies the AWS shared config file to use to fetch the credentials. If not supplied, the default value used is ~/.aws/config. SharedConfigCredsProvider
WithCredentialsFile(string) Sspecifies the AWS shared credentials file to use to fetch the credentials If not supplied the default values used is ~/.aws/credentials. SharedConfigCredsProvider
WithConfigProfile(string) Specifies the AWS config profile to use. If not supplied, the default values used is default SharedConfigCredsProvider
WithBaseCredsProviderName(string) Specifies the name of the base CredsProvider to use for assuming the supplied role. AssumeRoleCredsProvider
WithBaseCredsProvider(CredsProvider) Specifies the CrdsProvider instance to use for assuming the supplied role. If both this & WithCredsProviderName(string) are used, this option takes precendence. AssumeRoleCredsProvider
WithRoleArn(string) Supplies the Role ARN to assume to obtain credentials. Role ARN takes precendence over the combination of Role Name & AWS Account ID. AssumeRoleCredsProvider
WithRoleName(string) Supplies the Role Name to assume to obtain credentials. WithAccountId(string) must also be supplied when Role Name is provided. AssumeRoleCredsProvider
WithAccountId(string) Supplies the AWS Account ID that contains the Role Name to assume. The WithRoleName(string)options must also be supplied when Account ID is provided. AssumeRoleCredsProvider



The following CredsProviders are supported by the module at this time:



DefaultCredsProvider


This is the default credentials provider which requires no custom configuration. This provider uses the AWS SDK's *default credentials chain* to find the credentials to use. The order in which the credentials are located depends on the AWS SDK implmenenation and is generally as follows:
  • AWS Environment Variables (Static or Web Identitiy token)
  • Shared Configuration files in user's profile directory
  • ECS IAM Role for tasks. (For ECS service & standalone tasks)
  • EC2 IAM Role (For applications running on an EC2 instances)

Here's a code sample on how to initialize a new DefaultCredsProvider


	def, err := providers.NewDefaultCredsProvider(ctx, "def")

The only configuration option allowed for this provider type is the AWS Region. If not supplied, us-east-1 is used as the default AWS Region.


us-east-1 is the default value used by all other providers as well.


Implicit Default Provider:

As discussed in the earlier section, when the root package of the module is imported with a blank identifier, a named DefaultCredsProvider called default is initialized for the calling client code.


Configuring config.LoadOptions further

If any config load options that are not directly supported by the CredsProviderOptions are needed, they can be supplied via the WithConfigLoadOptFns(optFns ...func(*config.LoadOptions) error) functional option. The example below shows how we can setup an alternate EndpointResolver so we can point the clients from this DefaultCredsProvider to a LocalStack simulated cloud environment rather than the AWS API endpoints.


	localStackEndpoint := "http://localhost:4566"
	resolverWithOpts := aws.EndpointResolverWithOptionsFunc(func(service, region string, options ...interface{}) (aws.Endpoint, error) {
		return aws.Endpoint{
			URL:           localStackEndpoint,
			SigningRegion: "us-east-1",
			PartitionID:   "aws",
		}, nil
	})
	dep1, err := providers.NewDefaultCredsProvider(context.Background(), "def", providers.WithRegion("us-east-1"),
		providers.WithConfigLoadOptFns(config.WithEndpointResolverWithOptions(resolverWithOpts)), providers.ValidateProvider())



EnvironmentCredsProvider


This provider looks for static credentials supplied in the user's environment. The environment variable names to use for fetching the AWS Access Key ID, the Secret Access Key & the Session Token (where applicable) must be supplied using optiions. When the environment variable names are not supplied, the AWS SDK defaults are used.

If the credentials are not found a non-nil error is returned.

	env1, err := providers.NewEnvironmentCredsProvider(ctx, "env1",
			providers.WithAccessKeyIdFrom("MY_AWS_ACCESS_KEY_ID"),
				providers.WithSecretAccessKeyFrom("MY_AWS_SECRET_ACCESS_KEY"), 
					providers.WithSessionTokenFrom("MY_AWS_SESSION_TOKEN"),
						 providers.WithDefaultRegion())



SharedConfigCredsProvider


This provider looks for credentials supplied via the shared config & credentials files. By default, if not supplied, these files in the user's home directory at `~/.aws/config` & `~/.aws/credentials` respectively are used. The default value for config profile is `default`.

With this provider, you can supply custom locations and/or a named profie to use for credentials. If the supplied shared config files are not found a non-nil error is returned.

	shared1, err := providers.NewSharedConfigCredsProvider(ctx, "shared1", 
			 providers.WithConfigFile("/temp/.aws/config"), 
				providers.WithCredentialsFile("/temp/.aws/credentials"),   
					providers.WithConfigProfile("core"))



AssumeRoleCredsProvider


This provider finds AWS credentials in a 2-step process. First it uses the supplied base `CredsProvider` to initialize an AWS STS client. If no default credential provider is supplied, an inline `DefaultCredsProvider` is initialized which uses the default credentials chain for finding the AWS credentials. In the second step, an `sts:assumeRole` API call is made to retrieve `stscreds` credentials by assuming the role that is supplied as the `role_arn` option (or a combination of role name & AWS accounnt id). The credentials from the base creds provider must have sufficient AWS permissions to assume the role supplied, else a non-nil error is returned during the provider.

Here's an example of the AssumeRoleCredsProvider with a role arn.

    // using the env1 CredsProvider, assume the supplied role 
	// and use those credentials...
	r1, err := providers.NewAssumeRoleCredsProvider(ctx, "role1",
			 providers.WithBaseCredsProviderName("env1"), 
				providers.WithRoleArn("arn:aws:iam::123456789012:role/some-role")

or you can supply account id and role name.

    // using the env1 CredsProvider, assume the supplied role in 
	// the said AWS account and use those credentials...
	r2, err := providers.NewAssumeRoleCredsProvider(ctx, "role2", 
		providers.WithBaseCredsProviderName("env1"), 
			providers.WithAccountId("123456789012"), 
				providers.WithRoleName("some-role"))

If no role is supplied, the AssumeRoleCredsProvider simply uses the base role credentials.




AWS Client Builder Functions

Besides credentials, the aws-ccp-go module also supplies convenient builder functions for all AWS SDK supported clients. Each of these clients is in it's own package and must be imported to use the client builder functions. The package names are consistent with the AWS SDK service name packages but with a leading underscore _. The reason to use an underscore prefix in the name is to make is easier for these & AWS SDK service packages to be imported together in the client code without the need of explicit aliases.

Also putting each client function in it's own package is done for optimization reasons. The AWS SDK repos has multiple go modules; and all of the service clients under the /service/... directories are their own module. Including all AWS Client builders in the same package here will result in indirectly importing all of the AWS SDK modules in client code & bloating the size of the resulting binaries unnecessarily.

For example, just constructing a default provider & EC2 client wrapper results in a resulting binary size 8 MB. if the entire SDK was imported indirectly, this would go up to 68 MB for just a few lines of client code. So with this design, the size of the imported libraries in the final go binary generated for the client is no bigger than what it would have been if the AWS SDK was directly used without the aws-ccp-go wrapper. The downside is having to import individual client packages alongside each AWS SDK service package.

All client wrapper packages are found under /clients/ sub-directory in the repo.

For instance to create a AWS Client for the applicationautoscaling service, the corresponding aws-ccp-go packages that need to be imported will be:


import (
	// To auto initialize the 'default` provider only
	_ "github.com/TouchBistro/aws-ccp-go"

	// To retrieve the default provider from the module
	"github.com/TouchBistro/aws-ccp-go/providers"

	// To construct applicationautoscaling service client 
	"github.com/TouchBistro/aws-ccp-go/clients/_applicationautoscaling"

	// To use the applicationauthoscaling AWS client provided data structures & functions
	"github.com/aws/aws-sdk-go-v2/client/applicationauthoscaling"

)

All client packages expose 4 helper functions: Client(), Must(), Delete() and Refresh()

The Client function returns a singleton AWS service client. It uses the supplied providers.CredsProvdier sub-type as the configuration (aws.Config).

The Must() function is a wrapper for the Client() function & panics if a non-nil error is returned. It allows convenience for initializing or passing AWS clients in the client code.

The Delete function clears the singleton instance for the supplied provider to force the module to create and return a new instance in the next call to Client

The Refresh() function discards the singleton client if it exists & recreates it.

The aws-ccp-go supports basic configurartion out of the box. If more specific configuration is required, functional options can be supplied to client builder methods for instance: AWS Region or Client Retry Attempts etc.
These options are service-specific & are of the form func(*<client>.Options). If options are supplied, they are forwarded as-is to the clients' NewFromConfig(...) builder functions.


  // build & return an ECS client for the `r2` provider with 
  // additioanl functional options, these are passed directly
  // to the underlying server.NewFromConfig(...) function for 
  // additional configuration
  client, err := _ecs.Client(r2,func(o *ecs.Options) {
			o.Region = "us-east-2" 
			o.RetryMaxAttempts = 4
	})


or simply


  // build & return an ECS client for the `r2` provider 
  // Since Must() is used, an error while creating the Client
  // will result in a panic
  client := _ecs.Must(r2)




Manually initializing AWS clients:

The underlying aws.Config configuration for a provider can be retrievd using the Config() method. After that, the AWS SDK API functions (NewFromConfig(...)) can be used to initialize the client. This can be useful in case a particular AWS service client is not exposed by this module, or if you just want to retrofit legacy code an only use this module to retrive aws.Config.

A code snippet to show how to do this using glue service client.


	var err error

	// create a shared config provider called `etl` using the etl profile 
	// this can be any CredsProvider 
	etl, err = providers.NewSharedConfigCredsProvider(
			context.Background(), "etl", providers.WithConfigProfile("etl"))
	if err != nil {
		log.Fatal(err.Error())
	}

	//initializing an AWS client for the `glue` service without using the helper functions.
	var client *glue.Client 

	// get the aws.Config for the `etl` provider & initialize a new glue client with options
	if cfg, err := etl.Config(); err != nil {
		log.Fatal(err)
	} else {
		client = glue.NewFromConfig(*cfg, func(opt *glue.Options) {
			opt.Region = "us-east-1"
		})
	}

	//using the client...
	out, err := client.ListJobs
		context.Background(), &glue.ListJobsInput{})

	if err != nil {
		log.Fatal(err.Erro())
	}

	for _, jobs := range out.JobNames {
		log.Info(jobs)
	}

To add support for any of the missing services' clients, a PR can be made, OR a feature request can be sent as per the guidelines CONTRIBUTING.md

References:

More details on Configuring the AWS SDK

https://aws.github.io/aws-sdk-go-v2/docs/configuring-sdk/

Configuration & credential file settings

https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
clients
_accessanalyzer
Package _accessanalyzer provides AWS client management functions for the accessanalyzer AWS service.
Package _accessanalyzer provides AWS client management functions for the accessanalyzer AWS service.
_account
Package _account provides AWS client management functions for the account AWS service.
Package _account provides AWS client management functions for the account AWS service.
_acm
Package _acm provides AWS client management functions for the acm AWS service.
Package _acm provides AWS client management functions for the acm AWS service.
_acmpca
Package _acmpca provides AWS client management functions for the acmpca AWS service.
Package _acmpca provides AWS client management functions for the acmpca AWS service.
_alexaforbusiness
Package _alexaforbusiness provides AWS client management functions for the alexaforbusiness AWS service.
Package _alexaforbusiness provides AWS client management functions for the alexaforbusiness AWS service.
_amp
Package _amp provides AWS client management functions for the amp AWS service.
Package _amp provides AWS client management functions for the amp AWS service.
_amplify
Package _amplify provides AWS client management functions for the amplify AWS service.
Package _amplify provides AWS client management functions for the amplify AWS service.
_amplifybackend
Package _amplifybackend provides AWS client management functions for the amplifybackend AWS service.
Package _amplifybackend provides AWS client management functions for the amplifybackend AWS service.
_amplifyuibuilder
Package _amplifyuibuilder provides AWS client management functions for the amplifyuibuilder AWS service.
Package _amplifyuibuilder provides AWS client management functions for the amplifyuibuilder AWS service.
_apigateway
Package _apigateway provides AWS client management functions for the apigateway AWS service.
Package _apigateway provides AWS client management functions for the apigateway AWS service.
_apigatewaymanagementapi
Package _apigatewaymanagementapi provides AWS client management functions for the apigatewaymanagementapi AWS service.
Package _apigatewaymanagementapi provides AWS client management functions for the apigatewaymanagementapi AWS service.
_apigatewayv2
Package _apigatewayv2 provides AWS client management functions for the apigatewayv2 AWS service.
Package _apigatewayv2 provides AWS client management functions for the apigatewayv2 AWS service.
_appconfig
Package _appconfig provides AWS client management functions for the appconfig AWS service.
Package _appconfig provides AWS client management functions for the appconfig AWS service.
_appconfigdata
Package _appconfigdata provides AWS client management functions for the appconfigdata AWS service.
Package _appconfigdata provides AWS client management functions for the appconfigdata AWS service.
_appfabric
Package _appfabric provides AWS client management functions for the appfabric AWS service.
Package _appfabric provides AWS client management functions for the appfabric AWS service.
_appflow
Package _appflow provides AWS client management functions for the appflow AWS service.
Package _appflow provides AWS client management functions for the appflow AWS service.
_appintegrations
Package _appintegrations provides AWS client management functions for the appintegrations AWS service.
Package _appintegrations provides AWS client management functions for the appintegrations AWS service.
_applicationautoscaling
Package _applicationautoscaling provides AWS client management functions for the applicationautoscaling AWS service.
Package _applicationautoscaling provides AWS client management functions for the applicationautoscaling AWS service.
_applicationcostprofiler
Package _applicationcostprofiler provides AWS client management functions for the applicationcostprofiler AWS service.
Package _applicationcostprofiler provides AWS client management functions for the applicationcostprofiler AWS service.
_applicationdiscoveryservice
Package _applicationdiscoveryservice provides AWS client management functions for the applicationdiscoveryservice AWS service.
Package _applicationdiscoveryservice provides AWS client management functions for the applicationdiscoveryservice AWS service.
_applicationinsights
Package _applicationinsights provides AWS client management functions for the applicationinsights AWS service.
Package _applicationinsights provides AWS client management functions for the applicationinsights AWS service.
_appmesh
Package _appmesh provides AWS client management functions for the appmesh AWS service.
Package _appmesh provides AWS client management functions for the appmesh AWS service.
_apprunner
Package _apprunner provides AWS client management functions for the apprunner AWS service.
Package _apprunner provides AWS client management functions for the apprunner AWS service.
_appstream
Package _appstream provides AWS client management functions for the appstream AWS service.
Package _appstream provides AWS client management functions for the appstream AWS service.
_appsync
Package _appsync provides AWS client management functions for the appsync AWS service.
Package _appsync provides AWS client management functions for the appsync AWS service.
_arczonalshift
Package _arczonalshift provides AWS client management functions for the arczonalshift AWS service.
Package _arczonalshift provides AWS client management functions for the arczonalshift AWS service.
_athena
Package _athena provides AWS client management functions for the athena AWS service.
Package _athena provides AWS client management functions for the athena AWS service.
_auditmanager
Package _auditmanager provides AWS client management functions for the auditmanager AWS service.
Package _auditmanager provides AWS client management functions for the auditmanager AWS service.
_autoscaling
Package _autoscaling provides AWS client management functions for the autoscaling AWS service.
Package _autoscaling provides AWS client management functions for the autoscaling AWS service.
_autoscalingplans
Package _autoscalingplans provides AWS client management functions for the autoscalingplans AWS service.
Package _autoscalingplans provides AWS client management functions for the autoscalingplans AWS service.
_backup
Package _backup provides AWS client management functions for the backup AWS service.
Package _backup provides AWS client management functions for the backup AWS service.
_backupgateway
Package _backupgateway provides AWS client management functions for the backupgateway AWS service.
Package _backupgateway provides AWS client management functions for the backupgateway AWS service.
_backupstorage
Package _backupstorage provides AWS client management functions for the backupstorage AWS service.
Package _backupstorage provides AWS client management functions for the backupstorage AWS service.
_batch
Package _batch provides AWS client management functions for the batch AWS service.
Package _batch provides AWS client management functions for the batch AWS service.
_billingconductor
Package _billingconductor provides AWS client management functions for the billingconductor AWS service.
Package _billingconductor provides AWS client management functions for the billingconductor AWS service.
_braket
Package _braket provides AWS client management functions for the braket AWS service.
Package _braket provides AWS client management functions for the braket AWS service.
_budgets
Package _budgets provides AWS client management functions for the budgets AWS service.
Package _budgets provides AWS client management functions for the budgets AWS service.
_chime
Package _chime provides AWS client management functions for the chime AWS service.
Package _chime provides AWS client management functions for the chime AWS service.
_chimesdkidentity
Package _chimesdkidentity provides AWS client management functions for the chimesdkidentity AWS service.
Package _chimesdkidentity provides AWS client management functions for the chimesdkidentity AWS service.
_chimesdkmediapipelines
Package _chimesdkmediapipelines provides AWS client management functions for the chimesdkmediapipelines AWS service.
Package _chimesdkmediapipelines provides AWS client management functions for the chimesdkmediapipelines AWS service.
_chimesdkmeetings
Package _chimesdkmeetings provides AWS client management functions for the chimesdkmeetings AWS service.
Package _chimesdkmeetings provides AWS client management functions for the chimesdkmeetings AWS service.
_chimesdkmessaging
Package _chimesdkmessaging provides AWS client management functions for the chimesdkmessaging AWS service.
Package _chimesdkmessaging provides AWS client management functions for the chimesdkmessaging AWS service.
_chimesdkvoice
Package _chimesdkvoice provides AWS client management functions for the chimesdkvoice AWS service.
Package _chimesdkvoice provides AWS client management functions for the chimesdkvoice AWS service.
_cleanrooms
Package _cleanrooms provides AWS client management functions for the cleanrooms AWS service.
Package _cleanrooms provides AWS client management functions for the cleanrooms AWS service.
_cloud9
Package _cloud9 provides AWS client management functions for the cloud9 AWS service.
Package _cloud9 provides AWS client management functions for the cloud9 AWS service.
_cloudcontrol
Package _cloudcontrol provides AWS client management functions for the cloudcontrol AWS service.
Package _cloudcontrol provides AWS client management functions for the cloudcontrol AWS service.
_clouddirectory
Package _clouddirectory provides AWS client management functions for the clouddirectory AWS service.
Package _clouddirectory provides AWS client management functions for the clouddirectory AWS service.
_cloudformation
Package _cloudformation provides AWS client management functions for the cloudformation AWS service.
Package _cloudformation provides AWS client management functions for the cloudformation AWS service.
_cloudfront
Package _cloudfront provides AWS client management functions for the cloudfront AWS service.
Package _cloudfront provides AWS client management functions for the cloudfront AWS service.
_cloudhsm
Package _cloudhsm provides AWS client management functions for the cloudhsm AWS service.
Package _cloudhsm provides AWS client management functions for the cloudhsm AWS service.
_cloudhsmv2
Package _cloudhsmv2 provides AWS client management functions for the cloudhsmv2 AWS service.
Package _cloudhsmv2 provides AWS client management functions for the cloudhsmv2 AWS service.
_cloudsearch
Package _cloudsearch provides AWS client management functions for the cloudsearch AWS service.
Package _cloudsearch provides AWS client management functions for the cloudsearch AWS service.
_cloudsearchdomain
Package _cloudsearchdomain provides AWS client management functions for the cloudsearchdomain AWS service.
Package _cloudsearchdomain provides AWS client management functions for the cloudsearchdomain AWS service.
_cloudtrail
Package _cloudtrail provides AWS client management functions for the cloudtrail AWS service.
Package _cloudtrail provides AWS client management functions for the cloudtrail AWS service.
_cloudtraildata
Package _cloudtraildata provides AWS client management functions for the cloudtraildata AWS service.
Package _cloudtraildata provides AWS client management functions for the cloudtraildata AWS service.
_cloudwatch
Package _cloudwatch provides AWS client management functions for the cloudwatch AWS service.
Package _cloudwatch provides AWS client management functions for the cloudwatch AWS service.
_cloudwatchevents
Package _cloudwatchevents provides AWS client management functions for the cloudwatchevents AWS service.
Package _cloudwatchevents provides AWS client management functions for the cloudwatchevents AWS service.
_cloudwatchlogs
Package _cloudwatchlogs provides AWS client management functions for the cloudwatchlogs AWS service.
Package _cloudwatchlogs provides AWS client management functions for the cloudwatchlogs AWS service.
_codeartifact
Package _codeartifact provides AWS client management functions for the codeartifact AWS service.
Package _codeartifact provides AWS client management functions for the codeartifact AWS service.
_codebuild
Package _codebuild provides AWS client management functions for the codebuild AWS service.
Package _codebuild provides AWS client management functions for the codebuild AWS service.
_codecatalyst
Package _codecatalyst provides AWS client management functions for the codecatalyst AWS service.
Package _codecatalyst provides AWS client management functions for the codecatalyst AWS service.
_codecommit
Package _codecommit provides AWS client management functions for the codecommit AWS service.
Package _codecommit provides AWS client management functions for the codecommit AWS service.
_codedeploy
Package _codedeploy provides AWS client management functions for the codedeploy AWS service.
Package _codedeploy provides AWS client management functions for the codedeploy AWS service.
_codeguruprofiler
Package _codeguruprofiler provides AWS client management functions for the codeguruprofiler AWS service.
Package _codeguruprofiler provides AWS client management functions for the codeguruprofiler AWS service.
_codegurureviewer
Package _codegurureviewer provides AWS client management functions for the codegurureviewer AWS service.
Package _codegurureviewer provides AWS client management functions for the codegurureviewer AWS service.
_codegurusecurity
Package _codegurusecurity provides AWS client management functions for the codegurusecurity AWS service.
Package _codegurusecurity provides AWS client management functions for the codegurusecurity AWS service.
_codepipeline
Package _codepipeline provides AWS client management functions for the codepipeline AWS service.
Package _codepipeline provides AWS client management functions for the codepipeline AWS service.
_codestar
Package _codestar provides AWS client management functions for the codestar AWS service.
Package _codestar provides AWS client management functions for the codestar AWS service.
_codestarconnections
Package _codestarconnections provides AWS client management functions for the codestarconnections AWS service.
Package _codestarconnections provides AWS client management functions for the codestarconnections AWS service.
_codestarnotifications
Package _codestarnotifications provides AWS client management functions for the codestarnotifications AWS service.
Package _codestarnotifications provides AWS client management functions for the codestarnotifications AWS service.
_cognitoidentity
Package _cognitoidentity provides AWS client management functions for the cognitoidentity AWS service.
Package _cognitoidentity provides AWS client management functions for the cognitoidentity AWS service.
_cognitoidentityprovider
Package _cognitoidentityprovider provides AWS client management functions for the cognitoidentityprovider AWS service.
Package _cognitoidentityprovider provides AWS client management functions for the cognitoidentityprovider AWS service.
_cognitosync
Package _cognitosync provides AWS client management functions for the cognitosync AWS service.
Package _cognitosync provides AWS client management functions for the cognitosync AWS service.
_comprehend
Package _comprehend provides AWS client management functions for the comprehend AWS service.
Package _comprehend provides AWS client management functions for the comprehend AWS service.
_comprehendmedical
Package _comprehendmedical provides AWS client management functions for the comprehendmedical AWS service.
Package _comprehendmedical provides AWS client management functions for the comprehendmedical AWS service.
_computeoptimizer
Package _computeoptimizer provides AWS client management functions for the computeoptimizer AWS service.
Package _computeoptimizer provides AWS client management functions for the computeoptimizer AWS service.
_configservice
Package _configservice provides AWS client management functions for the configservice AWS service.
Package _configservice provides AWS client management functions for the configservice AWS service.
_connect
Package _connect provides AWS client management functions for the connect AWS service.
Package _connect provides AWS client management functions for the connect AWS service.
_connectcampaigns
Package _connectcampaigns provides AWS client management functions for the connectcampaigns AWS service.
Package _connectcampaigns provides AWS client management functions for the connectcampaigns AWS service.
_connectcases
Package _connectcases provides AWS client management functions for the connectcases AWS service.
Package _connectcases provides AWS client management functions for the connectcases AWS service.
_connectcontactlens
Package _connectcontactlens provides AWS client management functions for the connectcontactlens AWS service.
Package _connectcontactlens provides AWS client management functions for the connectcontactlens AWS service.
_connectparticipant
Package _connectparticipant provides AWS client management functions for the connectparticipant AWS service.
Package _connectparticipant provides AWS client management functions for the connectparticipant AWS service.
_controltower
Package _controltower provides AWS client management functions for the controltower AWS service.
Package _controltower provides AWS client management functions for the controltower AWS service.
_costandusagereportservice
Package _costandusagereportservice provides AWS client management functions for the costandusagereportservice AWS service.
Package _costandusagereportservice provides AWS client management functions for the costandusagereportservice AWS service.
_costexplorer
Package _costexplorer provides AWS client management functions for the costexplorer AWS service.
Package _costexplorer provides AWS client management functions for the costexplorer AWS service.
_customerprofiles
Package _customerprofiles provides AWS client management functions for the customerprofiles AWS service.
Package _customerprofiles provides AWS client management functions for the customerprofiles AWS service.
_databasemigrationservice
Package _databasemigrationservice provides AWS client management functions for the databasemigrationservice AWS service.
Package _databasemigrationservice provides AWS client management functions for the databasemigrationservice AWS service.
_databrew
Package _databrew provides AWS client management functions for the databrew AWS service.
Package _databrew provides AWS client management functions for the databrew AWS service.
_dataexchange
Package _dataexchange provides AWS client management functions for the dataexchange AWS service.
Package _dataexchange provides AWS client management functions for the dataexchange AWS service.
_datapipeline
Package _datapipeline provides AWS client management functions for the datapipeline AWS service.
Package _datapipeline provides AWS client management functions for the datapipeline AWS service.
_datasync
Package _datasync provides AWS client management functions for the datasync AWS service.
Package _datasync provides AWS client management functions for the datasync AWS service.
_dax
Package _dax provides AWS client management functions for the dax AWS service.
Package _dax provides AWS client management functions for the dax AWS service.
_detective
Package _detective provides AWS client management functions for the detective AWS service.
Package _detective provides AWS client management functions for the detective AWS service.
_devicefarm
Package _devicefarm provides AWS client management functions for the devicefarm AWS service.
Package _devicefarm provides AWS client management functions for the devicefarm AWS service.
_devopsguru
Package _devopsguru provides AWS client management functions for the devopsguru AWS service.
Package _devopsguru provides AWS client management functions for the devopsguru AWS service.
_directconnect
Package _directconnect provides AWS client management functions for the directconnect AWS service.
Package _directconnect provides AWS client management functions for the directconnect AWS service.
_directoryservice
Package _directoryservice provides AWS client management functions for the directoryservice AWS service.
Package _directoryservice provides AWS client management functions for the directoryservice AWS service.
_dlm
Package _dlm provides AWS client management functions for the dlm AWS service.
Package _dlm provides AWS client management functions for the dlm AWS service.
_docdb
Package _docdb provides AWS client management functions for the docdb AWS service.
Package _docdb provides AWS client management functions for the docdb AWS service.
_docdbelastic
Package _docdbelastic provides AWS client management functions for the docdbelastic AWS service.
Package _docdbelastic provides AWS client management functions for the docdbelastic AWS service.
_drs
Package _drs provides AWS client management functions for the drs AWS service.
Package _drs provides AWS client management functions for the drs AWS service.
_dynamodb
Package _dynamodb provides AWS client management functions for the dynamodb AWS service.
Package _dynamodb provides AWS client management functions for the dynamodb AWS service.
_dynamodbstreams
Package _dynamodbstreams provides AWS client management functions for the dynamodbstreams AWS service.
Package _dynamodbstreams provides AWS client management functions for the dynamodbstreams AWS service.
_ebs
Package _ebs provides AWS client management functions for the ebs AWS service.
Package _ebs provides AWS client management functions for the ebs AWS service.
_ec2
Package _ec2 provides AWS client management functions for the ec2 AWS service.
Package _ec2 provides AWS client management functions for the ec2 AWS service.
_ec2instanceconnect
Package _ec2instanceconnect provides AWS client management functions for the ec2instanceconnect AWS service.
Package _ec2instanceconnect provides AWS client management functions for the ec2instanceconnect AWS service.
_ecr
Package _ecr provides AWS client management functions for the ecr AWS service.
Package _ecr provides AWS client management functions for the ecr AWS service.
_ecrpublic
Package _ecrpublic provides AWS client management functions for the ecrpublic AWS service.
Package _ecrpublic provides AWS client management functions for the ecrpublic AWS service.
_ecs
Package _ecs provides AWS client management functions for the ecs AWS service.
Package _ecs provides AWS client management functions for the ecs AWS service.
_efs
Package _efs provides AWS client management functions for the efs AWS service.
Package _efs provides AWS client management functions for the efs AWS service.
_eks
Package _eks provides AWS client management functions for the eks AWS service.
Package _eks provides AWS client management functions for the eks AWS service.
_elasticache
Package _elasticache provides AWS client management functions for the elasticache AWS service.
Package _elasticache provides AWS client management functions for the elasticache AWS service.
_elasticbeanstalk
Package _elasticbeanstalk provides AWS client management functions for the elasticbeanstalk AWS service.
Package _elasticbeanstalk provides AWS client management functions for the elasticbeanstalk AWS service.
_elasticinference
Package _elasticinference provides AWS client management functions for the elasticinference AWS service.
Package _elasticinference provides AWS client management functions for the elasticinference AWS service.
_elasticloadbalancing
Package _elasticloadbalancing provides AWS client management functions for the elasticloadbalancing AWS service.
Package _elasticloadbalancing provides AWS client management functions for the elasticloadbalancing AWS service.
_elasticloadbalancingv2
Package _elasticloadbalancingv2 provides AWS client management functions for the elasticloadbalancingv2 AWS service.
Package _elasticloadbalancingv2 provides AWS client management functions for the elasticloadbalancingv2 AWS service.
_elasticsearchservice
Package _elasticsearchservice provides AWS client management functions for the elasticsearchservice AWS service.
Package _elasticsearchservice provides AWS client management functions for the elasticsearchservice AWS service.
_elastictranscoder
Package _elastictranscoder provides AWS client management functions for the elastictranscoder AWS service.
Package _elastictranscoder provides AWS client management functions for the elastictranscoder AWS service.
_emr
Package _emr provides AWS client management functions for the emr AWS service.
Package _emr provides AWS client management functions for the emr AWS service.
_emrcontainers
Package _emrcontainers provides AWS client management functions for the emrcontainers AWS service.
Package _emrcontainers provides AWS client management functions for the emrcontainers AWS service.
_emrserverless
Package _emrserverless provides AWS client management functions for the emrserverless AWS service.
Package _emrserverless provides AWS client management functions for the emrserverless AWS service.
_entityresolution
Package _entityresolution provides AWS client management functions for the entityresolution AWS service.
Package _entityresolution provides AWS client management functions for the entityresolution AWS service.
_eventbridge
Package _eventbridge provides AWS client management functions for the eventbridge AWS service.
Package _eventbridge provides AWS client management functions for the eventbridge AWS service.
_evidently
Package _evidently provides AWS client management functions for the evidently AWS service.
Package _evidently provides AWS client management functions for the evidently AWS service.
_finspace
Package _finspace provides AWS client management functions for the finspace AWS service.
Package _finspace provides AWS client management functions for the finspace AWS service.
_finspacedata
Package _finspacedata provides AWS client management functions for the finspacedata AWS service.
Package _finspacedata provides AWS client management functions for the finspacedata AWS service.
_firehose
Package _firehose provides AWS client management functions for the firehose AWS service.
Package _firehose provides AWS client management functions for the firehose AWS service.
_fis
Package _fis provides AWS client management functions for the fis AWS service.
Package _fis provides AWS client management functions for the fis AWS service.
_fms
Package _fms provides AWS client management functions for the fms AWS service.
Package _fms provides AWS client management functions for the fms AWS service.
_forecast
Package _forecast provides AWS client management functions for the forecast AWS service.
Package _forecast provides AWS client management functions for the forecast AWS service.
_forecastquery
Package _forecastquery provides AWS client management functions for the forecastquery AWS service.
Package _forecastquery provides AWS client management functions for the forecastquery AWS service.
_frauddetector
Package _frauddetector provides AWS client management functions for the frauddetector AWS service.
Package _frauddetector provides AWS client management functions for the frauddetector AWS service.
_fsx
Package _fsx provides AWS client management functions for the fsx AWS service.
Package _fsx provides AWS client management functions for the fsx AWS service.
_gamelift
Package _gamelift provides AWS client management functions for the gamelift AWS service.
Package _gamelift provides AWS client management functions for the gamelift AWS service.
_gamesparks
Package _gamesparks provides AWS client management functions for the gamesparks AWS service.
Package _gamesparks provides AWS client management functions for the gamesparks AWS service.
_glacier
Package _glacier provides AWS client management functions for the glacier AWS service.
Package _glacier provides AWS client management functions for the glacier AWS service.
_globalaccelerator
Package _globalaccelerator provides AWS client management functions for the globalaccelerator AWS service.
Package _globalaccelerator provides AWS client management functions for the globalaccelerator AWS service.
_glue
Package _glue provides AWS client management functions for the glue AWS service.
Package _glue provides AWS client management functions for the glue AWS service.
_grafana
Package _grafana provides AWS client management functions for the grafana AWS service.
Package _grafana provides AWS client management functions for the grafana AWS service.
_greengrass
Package _greengrass provides AWS client management functions for the greengrass AWS service.
Package _greengrass provides AWS client management functions for the greengrass AWS service.
_greengrassv2
Package _greengrassv2 provides AWS client management functions for the greengrassv2 AWS service.
Package _greengrassv2 provides AWS client management functions for the greengrassv2 AWS service.
_groundstation
Package _groundstation provides AWS client management functions for the groundstation AWS service.
Package _groundstation provides AWS client management functions for the groundstation AWS service.
_guardduty
Package _guardduty provides AWS client management functions for the guardduty AWS service.
Package _guardduty provides AWS client management functions for the guardduty AWS service.
_health
Package _health provides AWS client management functions for the health AWS service.
Package _health provides AWS client management functions for the health AWS service.
_healthlake
Package _healthlake provides AWS client management functions for the healthlake AWS service.
Package _healthlake provides AWS client management functions for the healthlake AWS service.
_honeycode
Package _honeycode provides AWS client management functions for the honeycode AWS service.
Package _honeycode provides AWS client management functions for the honeycode AWS service.
_iam
Package _iam provides AWS client management functions for the iam AWS service.
Package _iam provides AWS client management functions for the iam AWS service.
_identitystore
Package _identitystore provides AWS client management functions for the identitystore AWS service.
Package _identitystore provides AWS client management functions for the identitystore AWS service.
_imagebuilder
Package _imagebuilder provides AWS client management functions for the imagebuilder AWS service.
Package _imagebuilder provides AWS client management functions for the imagebuilder AWS service.
_inspector
Package _inspector provides AWS client management functions for the inspector AWS service.
Package _inspector provides AWS client management functions for the inspector AWS service.
_inspector2
Package _inspector2 provides AWS client management functions for the inspector2 AWS service.
Package _inspector2 provides AWS client management functions for the inspector2 AWS service.
_internetmonitor
Package _internetmonitor provides AWS client management functions for the internetmonitor AWS service.
Package _internetmonitor provides AWS client management functions for the internetmonitor AWS service.
_iot
Package _iot provides AWS client management functions for the iot AWS service.
Package _iot provides AWS client management functions for the iot AWS service.
_iot1clickdevicesservice
Package _iot1clickdevicesservice provides AWS client management functions for the iot1clickdevicesservice AWS service.
Package _iot1clickdevicesservice provides AWS client management functions for the iot1clickdevicesservice AWS service.
_iot1clickprojects
Package _iot1clickprojects provides AWS client management functions for the iot1clickprojects AWS service.
Package _iot1clickprojects provides AWS client management functions for the iot1clickprojects AWS service.
_iotanalytics
Package _iotanalytics provides AWS client management functions for the iotanalytics AWS service.
Package _iotanalytics provides AWS client management functions for the iotanalytics AWS service.
_iotdataplane
Package _iotdataplane provides AWS client management functions for the iotdataplane AWS service.
Package _iotdataplane provides AWS client management functions for the iotdataplane AWS service.
_iotdeviceadvisor
Package _iotdeviceadvisor provides AWS client management functions for the iotdeviceadvisor AWS service.
Package _iotdeviceadvisor provides AWS client management functions for the iotdeviceadvisor AWS service.
_iotevents
Package _iotevents provides AWS client management functions for the iotevents AWS service.
Package _iotevents provides AWS client management functions for the iotevents AWS service.
_ioteventsdata
Package _ioteventsdata provides AWS client management functions for the ioteventsdata AWS service.
Package _ioteventsdata provides AWS client management functions for the ioteventsdata AWS service.
_iotfleethub
Package _iotfleethub provides AWS client management functions for the iotfleethub AWS service.
Package _iotfleethub provides AWS client management functions for the iotfleethub AWS service.
_iotfleetwise
Package _iotfleetwise provides AWS client management functions for the iotfleetwise AWS service.
Package _iotfleetwise provides AWS client management functions for the iotfleetwise AWS service.
_iotjobsdataplane
Package _iotjobsdataplane provides AWS client management functions for the iotjobsdataplane AWS service.
Package _iotjobsdataplane provides AWS client management functions for the iotjobsdataplane AWS service.
_iotroborunner
Package _iotroborunner provides AWS client management functions for the iotroborunner AWS service.
Package _iotroborunner provides AWS client management functions for the iotroborunner AWS service.
_iotsecuretunneling
Package _iotsecuretunneling provides AWS client management functions for the iotsecuretunneling AWS service.
Package _iotsecuretunneling provides AWS client management functions for the iotsecuretunneling AWS service.
_iotsitewise
Package _iotsitewise provides AWS client management functions for the iotsitewise AWS service.
Package _iotsitewise provides AWS client management functions for the iotsitewise AWS service.
_iotthingsgraph
Package _iotthingsgraph provides AWS client management functions for the iotthingsgraph AWS service.
Package _iotthingsgraph provides AWS client management functions for the iotthingsgraph AWS service.
_iottwinmaker
Package _iottwinmaker provides AWS client management functions for the iottwinmaker AWS service.
Package _iottwinmaker provides AWS client management functions for the iottwinmaker AWS service.
_iotwireless
Package _iotwireless provides AWS client management functions for the iotwireless AWS service.
Package _iotwireless provides AWS client management functions for the iotwireless AWS service.
_ivs
Package _ivs provides AWS client management functions for the ivs AWS service.
Package _ivs provides AWS client management functions for the ivs AWS service.
_ivschat
Package _ivschat provides AWS client management functions for the ivschat AWS service.
Package _ivschat provides AWS client management functions for the ivschat AWS service.
_ivsrealtime
Package _ivsrealtime provides AWS client management functions for the ivsrealtime AWS service.
Package _ivsrealtime provides AWS client management functions for the ivsrealtime AWS service.
_kafka
Package _kafka provides AWS client management functions for the kafka AWS service.
Package _kafka provides AWS client management functions for the kafka AWS service.
_kafkaconnect
Package _kafkaconnect provides AWS client management functions for the kafkaconnect AWS service.
Package _kafkaconnect provides AWS client management functions for the kafkaconnect AWS service.
_kendra
Package _kendra provides AWS client management functions for the kendra AWS service.
Package _kendra provides AWS client management functions for the kendra AWS service.
_kendraranking
Package _kendraranking provides AWS client management functions for the kendraranking AWS service.
Package _kendraranking provides AWS client management functions for the kendraranking AWS service.
_keyspaces
Package _keyspaces provides AWS client management functions for the keyspaces AWS service.
Package _keyspaces provides AWS client management functions for the keyspaces AWS service.
_kinesis
Package _kinesis provides AWS client management functions for the kinesis AWS service.
Package _kinesis provides AWS client management functions for the kinesis AWS service.
_kinesisanalytics
Package _kinesisanalytics provides AWS client management functions for the kinesisanalytics AWS service.
Package _kinesisanalytics provides AWS client management functions for the kinesisanalytics AWS service.
_kinesisanalyticsv2
Package _kinesisanalyticsv2 provides AWS client management functions for the kinesisanalyticsv2 AWS service.
Package _kinesisanalyticsv2 provides AWS client management functions for the kinesisanalyticsv2 AWS service.
_kinesisvideo
Package _kinesisvideo provides AWS client management functions for the kinesisvideo AWS service.
Package _kinesisvideo provides AWS client management functions for the kinesisvideo AWS service.
_kinesisvideoarchivedmedia
Package _kinesisvideoarchivedmedia provides AWS client management functions for the kinesisvideoarchivedmedia AWS service.
Package _kinesisvideoarchivedmedia provides AWS client management functions for the kinesisvideoarchivedmedia AWS service.
_kinesisvideomedia
Package _kinesisvideomedia provides AWS client management functions for the kinesisvideomedia AWS service.
Package _kinesisvideomedia provides AWS client management functions for the kinesisvideomedia AWS service.
_kinesisvideosignaling
Package _kinesisvideosignaling provides AWS client management functions for the kinesisvideosignaling AWS service.
Package _kinesisvideosignaling provides AWS client management functions for the kinesisvideosignaling AWS service.
_kinesisvideowebrtcstorage
Package _kinesisvideowebrtcstorage provides AWS client management functions for the kinesisvideowebrtcstorage AWS service.
Package _kinesisvideowebrtcstorage provides AWS client management functions for the kinesisvideowebrtcstorage AWS service.
_kms
Package _kms provides AWS client management functions for the kms AWS service.
Package _kms provides AWS client management functions for the kms AWS service.
_lakeformation
Package _lakeformation provides AWS client management functions for the lakeformation AWS service.
Package _lakeformation provides AWS client management functions for the lakeformation AWS service.
_lambda
Package _lambda provides AWS client management functions for the lambda AWS service.
Package _lambda provides AWS client management functions for the lambda AWS service.
_lexmodelbuildingservice
Package _lexmodelbuildingservice provides AWS client management functions for the lexmodelbuildingservice AWS service.
Package _lexmodelbuildingservice provides AWS client management functions for the lexmodelbuildingservice AWS service.
_lexmodelsv2
Package _lexmodelsv2 provides AWS client management functions for the lexmodelsv2 AWS service.
Package _lexmodelsv2 provides AWS client management functions for the lexmodelsv2 AWS service.
_lexruntimeservice
Package _lexruntimeservice provides AWS client management functions for the lexruntimeservice AWS service.
Package _lexruntimeservice provides AWS client management functions for the lexruntimeservice AWS service.
_lexruntimev2
Package _lexruntimev2 provides AWS client management functions for the lexruntimev2 AWS service.
Package _lexruntimev2 provides AWS client management functions for the lexruntimev2 AWS service.
_licensemanager
Package _licensemanager provides AWS client management functions for the licensemanager AWS service.
Package _licensemanager provides AWS client management functions for the licensemanager AWS service.
_licensemanagerlinuxsubscriptions
Package _licensemanagerlinuxsubscriptions provides AWS client management functions for the licensemanagerlinuxsubscriptions AWS service.
Package _licensemanagerlinuxsubscriptions provides AWS client management functions for the licensemanagerlinuxsubscriptions AWS service.
_licensemanagerusersubscriptions
Package _licensemanagerusersubscriptions provides AWS client management functions for the licensemanagerusersubscriptions AWS service.
Package _licensemanagerusersubscriptions provides AWS client management functions for the licensemanagerusersubscriptions AWS service.
_lightsail
Package _lightsail provides AWS client management functions for the lightsail AWS service.
Package _lightsail provides AWS client management functions for the lightsail AWS service.
_location
Package _location provides AWS client management functions for the location AWS service.
Package _location provides AWS client management functions for the location AWS service.
_lookoutequipment
Package _lookoutequipment provides AWS client management functions for the lookoutequipment AWS service.
Package _lookoutequipment provides AWS client management functions for the lookoutequipment AWS service.
_lookoutmetrics
Package _lookoutmetrics provides AWS client management functions for the lookoutmetrics AWS service.
Package _lookoutmetrics provides AWS client management functions for the lookoutmetrics AWS service.
_lookoutvision
Package _lookoutvision provides AWS client management functions for the lookoutvision AWS service.
Package _lookoutvision provides AWS client management functions for the lookoutvision AWS service.
_m2
Package _m2 provides AWS client management functions for the m2 AWS service.
Package _m2 provides AWS client management functions for the m2 AWS service.
_machinelearning
Package _machinelearning provides AWS client management functions for the machinelearning AWS service.
Package _machinelearning provides AWS client management functions for the machinelearning AWS service.
_macie
Package _macie provides AWS client management functions for the macie AWS service.
Package _macie provides AWS client management functions for the macie AWS service.
_macie2
Package _macie2 provides AWS client management functions for the macie2 AWS service.
Package _macie2 provides AWS client management functions for the macie2 AWS service.
_managedblockchain
Package _managedblockchain provides AWS client management functions for the managedblockchain AWS service.
Package _managedblockchain provides AWS client management functions for the managedblockchain AWS service.
_managedblockchainquery
Package _managedblockchainquery provides AWS client management functions for the managedblockchainquery AWS service.
Package _managedblockchainquery provides AWS client management functions for the managedblockchainquery AWS service.
_marketplacecatalog
Package _marketplacecatalog provides AWS client management functions for the marketplacecatalog AWS service.
Package _marketplacecatalog provides AWS client management functions for the marketplacecatalog AWS service.
_marketplacecommerceanalytics
Package _marketplacecommerceanalytics provides AWS client management functions for the marketplacecommerceanalytics AWS service.
Package _marketplacecommerceanalytics provides AWS client management functions for the marketplacecommerceanalytics AWS service.
_marketplaceentitlementservice
Package _marketplaceentitlementservice provides AWS client management functions for the marketplaceentitlementservice AWS service.
Package _marketplaceentitlementservice provides AWS client management functions for the marketplaceentitlementservice AWS service.
_marketplacemetering
Package _marketplacemetering provides AWS client management functions for the marketplacemetering AWS service.
Package _marketplacemetering provides AWS client management functions for the marketplacemetering AWS service.
_mediaconnect
Package _mediaconnect provides AWS client management functions for the mediaconnect AWS service.
Package _mediaconnect provides AWS client management functions for the mediaconnect AWS service.
_mediaconvert
Package _mediaconvert provides AWS client management functions for the mediaconvert AWS service.
Package _mediaconvert provides AWS client management functions for the mediaconvert AWS service.
_medialive
Package _medialive provides AWS client management functions for the medialive AWS service.
Package _medialive provides AWS client management functions for the medialive AWS service.
_mediapackage
Package _mediapackage provides AWS client management functions for the mediapackage AWS service.
Package _mediapackage provides AWS client management functions for the mediapackage AWS service.
_mediapackagev2
Package _mediapackagev2 provides AWS client management functions for the mediapackagev2 AWS service.
Package _mediapackagev2 provides AWS client management functions for the mediapackagev2 AWS service.
_mediapackagevod
Package _mediapackagevod provides AWS client management functions for the mediapackagevod AWS service.
Package _mediapackagevod provides AWS client management functions for the mediapackagevod AWS service.
_mediastore
Package _mediastore provides AWS client management functions for the mediastore AWS service.
Package _mediastore provides AWS client management functions for the mediastore AWS service.
_mediastoredata
Package _mediastoredata provides AWS client management functions for the mediastoredata AWS service.
Package _mediastoredata provides AWS client management functions for the mediastoredata AWS service.
_mediatailor
Package _mediatailor provides AWS client management functions for the mediatailor AWS service.
Package _mediatailor provides AWS client management functions for the mediatailor AWS service.
_medicalimaging
Package _medicalimaging provides AWS client management functions for the medicalimaging AWS service.
Package _medicalimaging provides AWS client management functions for the medicalimaging AWS service.
_memorydb
Package _memorydb provides AWS client management functions for the memorydb AWS service.
Package _memorydb provides AWS client management functions for the memorydb AWS service.
_mgn
Package _mgn provides AWS client management functions for the mgn AWS service.
Package _mgn provides AWS client management functions for the mgn AWS service.
_migrationhub
Package _migrationhub provides AWS client management functions for the migrationhub AWS service.
Package _migrationhub provides AWS client management functions for the migrationhub AWS service.
_migrationhubconfig
Package _migrationhubconfig provides AWS client management functions for the migrationhubconfig AWS service.
Package _migrationhubconfig provides AWS client management functions for the migrationhubconfig AWS service.
_migrationhuborchestrator
Package _migrationhuborchestrator provides AWS client management functions for the migrationhuborchestrator AWS service.
Package _migrationhuborchestrator provides AWS client management functions for the migrationhuborchestrator AWS service.
_migrationhubrefactorspaces
Package _migrationhubrefactorspaces provides AWS client management functions for the migrationhubrefactorspaces AWS service.
Package _migrationhubrefactorspaces provides AWS client management functions for the migrationhubrefactorspaces AWS service.
_migrationhubstrategy
Package _migrationhubstrategy provides AWS client management functions for the migrationhubstrategy AWS service.
Package _migrationhubstrategy provides AWS client management functions for the migrationhubstrategy AWS service.
_mobile
Package _mobile provides AWS client management functions for the mobile AWS service.
Package _mobile provides AWS client management functions for the mobile AWS service.
_mq
Package _mq provides AWS client management functions for the mq AWS service.
Package _mq provides AWS client management functions for the mq AWS service.
_mturk
Package _mturk provides AWS client management functions for the mturk AWS service.
Package _mturk provides AWS client management functions for the mturk AWS service.
_mwaa
Package _mwaa provides AWS client management functions for the mwaa AWS service.
Package _mwaa provides AWS client management functions for the mwaa AWS service.
_neptune
Package _neptune provides AWS client management functions for the neptune AWS service.
Package _neptune provides AWS client management functions for the neptune AWS service.
_networkfirewall
Package _networkfirewall provides AWS client management functions for the networkfirewall AWS service.
Package _networkfirewall provides AWS client management functions for the networkfirewall AWS service.
_networkmanager
Package _networkmanager provides AWS client management functions for the networkmanager AWS service.
Package _networkmanager provides AWS client management functions for the networkmanager AWS service.
_nimble
Package _nimble provides AWS client management functions for the nimble AWS service.
Package _nimble provides AWS client management functions for the nimble AWS service.
_oam
Package _oam provides AWS client management functions for the oam AWS service.
Package _oam provides AWS client management functions for the oam AWS service.
_omics
Package _omics provides AWS client management functions for the omics AWS service.
Package _omics provides AWS client management functions for the omics AWS service.
_opensearch
Package _opensearch provides AWS client management functions for the opensearch AWS service.
Package _opensearch provides AWS client management functions for the opensearch AWS service.
_opensearchserverless
Package _opensearchserverless provides AWS client management functions for the opensearchserverless AWS service.
Package _opensearchserverless provides AWS client management functions for the opensearchserverless AWS service.
_opsworks
Package _opsworks provides AWS client management functions for the opsworks AWS service.
Package _opsworks provides AWS client management functions for the opsworks AWS service.
_opsworkscm
Package _opsworkscm provides AWS client management functions for the opsworkscm AWS service.
Package _opsworkscm provides AWS client management functions for the opsworkscm AWS service.
_organizations
Package _organizations provides AWS client management functions for the organizations AWS service.
Package _organizations provides AWS client management functions for the organizations AWS service.
_osis
Package _osis provides AWS client management functions for the osis AWS service.
Package _osis provides AWS client management functions for the osis AWS service.
_outposts
Package _outposts provides AWS client management functions for the outposts AWS service.
Package _outposts provides AWS client management functions for the outposts AWS service.
_panorama
Package _panorama provides AWS client management functions for the panorama AWS service.
Package _panorama provides AWS client management functions for the panorama AWS service.
_paymentcryptography
Package _paymentcryptography provides AWS client management functions for the paymentcryptography AWS service.
Package _paymentcryptography provides AWS client management functions for the paymentcryptography AWS service.
_paymentcryptographydata
Package _paymentcryptographydata provides AWS client management functions for the paymentcryptographydata AWS service.
Package _paymentcryptographydata provides AWS client management functions for the paymentcryptographydata AWS service.
_personalize
Package _personalize provides AWS client management functions for the personalize AWS service.
Package _personalize provides AWS client management functions for the personalize AWS service.
_personalizeevents
Package _personalizeevents provides AWS client management functions for the personalizeevents AWS service.
Package _personalizeevents provides AWS client management functions for the personalizeevents AWS service.
_personalizeruntime
Package _personalizeruntime provides AWS client management functions for the personalizeruntime AWS service.
Package _personalizeruntime provides AWS client management functions for the personalizeruntime AWS service.
_pi
Package _pi provides AWS client management functions for the pi AWS service.
Package _pi provides AWS client management functions for the pi AWS service.
_pinpoint
Package _pinpoint provides AWS client management functions for the pinpoint AWS service.
Package _pinpoint provides AWS client management functions for the pinpoint AWS service.
_pinpointemail
Package _pinpointemail provides AWS client management functions for the pinpointemail AWS service.
Package _pinpointemail provides AWS client management functions for the pinpointemail AWS service.
_pinpointsmsvoice
Package _pinpointsmsvoice provides AWS client management functions for the pinpointsmsvoice AWS service.
Package _pinpointsmsvoice provides AWS client management functions for the pinpointsmsvoice AWS service.
_pinpointsmsvoicev2
Package _pinpointsmsvoicev2 provides AWS client management functions for the pinpointsmsvoicev2 AWS service.
Package _pinpointsmsvoicev2 provides AWS client management functions for the pinpointsmsvoicev2 AWS service.
_pipes
Package _pipes provides AWS client management functions for the pipes AWS service.
Package _pipes provides AWS client management functions for the pipes AWS service.
_polly
Package _polly provides AWS client management functions for the polly AWS service.
Package _polly provides AWS client management functions for the polly AWS service.
_pricing
Package _pricing provides AWS client management functions for the pricing AWS service.
Package _pricing provides AWS client management functions for the pricing AWS service.
_privatenetworks
Package _privatenetworks provides AWS client management functions for the privatenetworks AWS service.
Package _privatenetworks provides AWS client management functions for the privatenetworks AWS service.
_proton
Package _proton provides AWS client management functions for the proton AWS service.
Package _proton provides AWS client management functions for the proton AWS service.
_qldb
Package _qldb provides AWS client management functions for the qldb AWS service.
Package _qldb provides AWS client management functions for the qldb AWS service.
_qldbsession
Package _qldbsession provides AWS client management functions for the qldbsession AWS service.
Package _qldbsession provides AWS client management functions for the qldbsession AWS service.
_quicksight
Package _quicksight provides AWS client management functions for the quicksight AWS service.
Package _quicksight provides AWS client management functions for the quicksight AWS service.
_ram
Package _ram provides AWS client management functions for the ram AWS service.
Package _ram provides AWS client management functions for the ram AWS service.
_rbin
Package _rbin provides AWS client management functions for the rbin AWS service.
Package _rbin provides AWS client management functions for the rbin AWS service.
_rds
Package _rds provides AWS client management functions for the rds AWS service.
Package _rds provides AWS client management functions for the rds AWS service.
_rdsdata
Package _rdsdata provides AWS client management functions for the rdsdata AWS service.
Package _rdsdata provides AWS client management functions for the rdsdata AWS service.
_redshift
Package _redshift provides AWS client management functions for the redshift AWS service.
Package _redshift provides AWS client management functions for the redshift AWS service.
_redshiftdata
Package _redshiftdata provides AWS client management functions for the redshiftdata AWS service.
Package _redshiftdata provides AWS client management functions for the redshiftdata AWS service.
_redshiftserverless
Package _redshiftserverless provides AWS client management functions for the redshiftserverless AWS service.
Package _redshiftserverless provides AWS client management functions for the redshiftserverless AWS service.
_rekognition
Package _rekognition provides AWS client management functions for the rekognition AWS service.
Package _rekognition provides AWS client management functions for the rekognition AWS service.
_resiliencehub
Package _resiliencehub provides AWS client management functions for the resiliencehub AWS service.
Package _resiliencehub provides AWS client management functions for the resiliencehub AWS service.
_resourceexplorer2
Package _resourceexplorer2 provides AWS client management functions for the resourceexplorer2 AWS service.
Package _resourceexplorer2 provides AWS client management functions for the resourceexplorer2 AWS service.
_resourcegroups
Package _resourcegroups provides AWS client management functions for the resourcegroups AWS service.
Package _resourcegroups provides AWS client management functions for the resourcegroups AWS service.
_resourcegroupstaggingapi
Package _resourcegroupstaggingapi provides AWS client management functions for the resourcegroupstaggingapi AWS service.
Package _resourcegroupstaggingapi provides AWS client management functions for the resourcegroupstaggingapi AWS service.
_robomaker
Package _robomaker provides AWS client management functions for the robomaker AWS service.
Package _robomaker provides AWS client management functions for the robomaker AWS service.
_rolesanywhere
Package _rolesanywhere provides AWS client management functions for the rolesanywhere AWS service.
Package _rolesanywhere provides AWS client management functions for the rolesanywhere AWS service.
_route53
Package _route53 provides AWS client management functions for the route53 AWS service.
Package _route53 provides AWS client management functions for the route53 AWS service.
_route53domains
Package _route53domains provides AWS client management functions for the route53domains AWS service.
Package _route53domains provides AWS client management functions for the route53domains AWS service.
_route53recoverycluster
Package _route53recoverycluster provides AWS client management functions for the route53recoverycluster AWS service.
Package _route53recoverycluster provides AWS client management functions for the route53recoverycluster AWS service.
_route53recoverycontrolconfig
Package _route53recoverycontrolconfig provides AWS client management functions for the route53recoverycontrolconfig AWS service.
Package _route53recoverycontrolconfig provides AWS client management functions for the route53recoverycontrolconfig AWS service.
_route53recoveryreadiness
Package _route53recoveryreadiness provides AWS client management functions for the route53recoveryreadiness AWS service.
Package _route53recoveryreadiness provides AWS client management functions for the route53recoveryreadiness AWS service.
_route53resolver
Package _route53resolver provides AWS client management functions for the route53resolver AWS service.
Package _route53resolver provides AWS client management functions for the route53resolver AWS service.
_rum
Package _rum provides AWS client management functions for the rum AWS service.
Package _rum provides AWS client management functions for the rum AWS service.
_s3
Package _s3 provides AWS client management functions for the s3 AWS service.
Package _s3 provides AWS client management functions for the s3 AWS service.
_s3control
Package _s3control provides AWS client management functions for the s3control AWS service.
Package _s3control provides AWS client management functions for the s3control AWS service.
_s3outposts
Package _s3outposts provides AWS client management functions for the s3outposts AWS service.
Package _s3outposts provides AWS client management functions for the s3outposts AWS service.
_sagemaker
Package _sagemaker provides AWS client management functions for the sagemaker AWS service.
Package _sagemaker provides AWS client management functions for the sagemaker AWS service.
_sagemakera2iruntime
Package _sagemakera2iruntime provides AWS client management functions for the sagemakera2iruntime AWS service.
Package _sagemakera2iruntime provides AWS client management functions for the sagemakera2iruntime AWS service.
_sagemakeredge
Package _sagemakeredge provides AWS client management functions for the sagemakeredge AWS service.
Package _sagemakeredge provides AWS client management functions for the sagemakeredge AWS service.
_sagemakerfeaturestoreruntime
Package _sagemakerfeaturestoreruntime provides AWS client management functions for the sagemakerfeaturestoreruntime AWS service.
Package _sagemakerfeaturestoreruntime provides AWS client management functions for the sagemakerfeaturestoreruntime AWS service.
_sagemakergeospatial
Package _sagemakergeospatial provides AWS client management functions for the sagemakergeospatial AWS service.
Package _sagemakergeospatial provides AWS client management functions for the sagemakergeospatial AWS service.
_sagemakermetrics
Package _sagemakermetrics provides AWS client management functions for the sagemakermetrics AWS service.
Package _sagemakermetrics provides AWS client management functions for the sagemakermetrics AWS service.
_sagemakerruntime
Package _sagemakerruntime provides AWS client management functions for the sagemakerruntime AWS service.
Package _sagemakerruntime provides AWS client management functions for the sagemakerruntime AWS service.
_savingsplans
Package _savingsplans provides AWS client management functions for the savingsplans AWS service.
Package _savingsplans provides AWS client management functions for the savingsplans AWS service.
_scheduler
Package _scheduler provides AWS client management functions for the scheduler AWS service.
Package _scheduler provides AWS client management functions for the scheduler AWS service.
_schemas
Package _schemas provides AWS client management functions for the schemas AWS service.
Package _schemas provides AWS client management functions for the schemas AWS service.
_secretsmanager
Package _secretsmanager provides AWS client management functions for the secretsmanager AWS service.
Package _secretsmanager provides AWS client management functions for the secretsmanager AWS service.
_securityhub
Package _securityhub provides AWS client management functions for the securityhub AWS service.
Package _securityhub provides AWS client management functions for the securityhub AWS service.
_securitylake
Package _securitylake provides AWS client management functions for the securitylake AWS service.
Package _securitylake provides AWS client management functions for the securitylake AWS service.
_serverlessapplicationrepository
Package _serverlessapplicationrepository provides AWS client management functions for the serverlessapplicationrepository AWS service.
Package _serverlessapplicationrepository provides AWS client management functions for the serverlessapplicationrepository AWS service.
_servicecatalog
Package _servicecatalog provides AWS client management functions for the servicecatalog AWS service.
Package _servicecatalog provides AWS client management functions for the servicecatalog AWS service.
_servicecatalogappregistry
Package _servicecatalogappregistry provides AWS client management functions for the servicecatalogappregistry AWS service.
Package _servicecatalogappregistry provides AWS client management functions for the servicecatalogappregistry AWS service.
_servicediscovery
Package _servicediscovery provides AWS client management functions for the servicediscovery AWS service.
Package _servicediscovery provides AWS client management functions for the servicediscovery AWS service.
_servicequotas
Package _servicequotas provides AWS client management functions for the servicequotas AWS service.
Package _servicequotas provides AWS client management functions for the servicequotas AWS service.
_ses
Package _ses provides AWS client management functions for the ses AWS service.
Package _ses provides AWS client management functions for the ses AWS service.
_sesv2
Package _sesv2 provides AWS client management functions for the sesv2 AWS service.
Package _sesv2 provides AWS client management functions for the sesv2 AWS service.
_sfn
Package _sfn provides AWS client management functions for the sfn AWS service.
Package _sfn provides AWS client management functions for the sfn AWS service.
_shield
Package _shield provides AWS client management functions for the shield AWS service.
Package _shield provides AWS client management functions for the shield AWS service.
_signer
Package _signer provides AWS client management functions for the signer AWS service.
Package _signer provides AWS client management functions for the signer AWS service.
_simspaceweaver
Package _simspaceweaver provides AWS client management functions for the simspaceweaver AWS service.
Package _simspaceweaver provides AWS client management functions for the simspaceweaver AWS service.
_sms
Package _sms provides AWS client management functions for the sms AWS service.
Package _sms provides AWS client management functions for the sms AWS service.
_snowball
Package _snowball provides AWS client management functions for the snowball AWS service.
Package _snowball provides AWS client management functions for the snowball AWS service.
_snowdevicemanagement
Package _snowdevicemanagement provides AWS client management functions for the snowdevicemanagement AWS service.
Package _snowdevicemanagement provides AWS client management functions for the snowdevicemanagement AWS service.
_sns
Package _sns provides AWS client management functions for the sns AWS service.
Package _sns provides AWS client management functions for the sns AWS service.
_sqs
Package _sqs provides AWS client management functions for the sqs AWS service.
Package _sqs provides AWS client management functions for the sqs AWS service.
_ssm
Package _ssm provides AWS client management functions for the ssm AWS service.
Package _ssm provides AWS client management functions for the ssm AWS service.
_ssmcontacts
Package _ssmcontacts provides AWS client management functions for the ssmcontacts AWS service.
Package _ssmcontacts provides AWS client management functions for the ssmcontacts AWS service.
_ssmincidents
Package _ssmincidents provides AWS client management functions for the ssmincidents AWS service.
Package _ssmincidents provides AWS client management functions for the ssmincidents AWS service.
_ssmsap
Package _ssmsap provides AWS client management functions for the ssmsap AWS service.
Package _ssmsap provides AWS client management functions for the ssmsap AWS service.
_sso
Package _sso provides AWS client management functions for the sso AWS service.
Package _sso provides AWS client management functions for the sso AWS service.
_ssoadmin
Package _ssoadmin provides AWS client management functions for the ssoadmin AWS service.
Package _ssoadmin provides AWS client management functions for the ssoadmin AWS service.
_ssooidc
Package _ssooidc provides AWS client management functions for the ssooidc AWS service.
Package _ssooidc provides AWS client management functions for the ssooidc AWS service.
_storagegateway
Package _storagegateway provides AWS client management functions for the storagegateway AWS service.
Package _storagegateway provides AWS client management functions for the storagegateway AWS service.
_sts
Package _sts provides AWS client management functions for the sts AWS service.
Package _sts provides AWS client management functions for the sts AWS service.
_support
Package _support provides AWS client management functions for the support AWS service.
Package _support provides AWS client management functions for the support AWS service.
_supportapp
Package _supportapp provides AWS client management functions for the supportapp AWS service.
Package _supportapp provides AWS client management functions for the supportapp AWS service.
_swf
Package _swf provides AWS client management functions for the swf AWS service.
Package _swf provides AWS client management functions for the swf AWS service.
_synthetics
Package _synthetics provides AWS client management functions for the synthetics AWS service.
Package _synthetics provides AWS client management functions for the synthetics AWS service.
_textract
Package _textract provides AWS client management functions for the textract AWS service.
Package _textract provides AWS client management functions for the textract AWS service.
_timestreamquery
Package _timestreamquery provides AWS client management functions for the timestreamquery AWS service.
Package _timestreamquery provides AWS client management functions for the timestreamquery AWS service.
_timestreamwrite
Package _timestreamwrite provides AWS client management functions for the timestreamwrite AWS service.
Package _timestreamwrite provides AWS client management functions for the timestreamwrite AWS service.
_tnb
Package _tnb provides AWS client management functions for the tnb AWS service.
Package _tnb provides AWS client management functions for the tnb AWS service.
_transcribe
Package _transcribe provides AWS client management functions for the transcribe AWS service.
Package _transcribe provides AWS client management functions for the transcribe AWS service.
_transcribestreaming
Package _transcribestreaming provides AWS client management functions for the transcribestreaming AWS service.
Package _transcribestreaming provides AWS client management functions for the transcribestreaming AWS service.
_transfer
Package _transfer provides AWS client management functions for the transfer AWS service.
Package _transfer provides AWS client management functions for the transfer AWS service.
_translate
Package _translate provides AWS client management functions for the translate AWS service.
Package _translate provides AWS client management functions for the translate AWS service.
_verifiedpermissions
Package _verifiedpermissions provides AWS client management functions for the verifiedpermissions AWS service.
Package _verifiedpermissions provides AWS client management functions for the verifiedpermissions AWS service.
_voiceid
Package _voiceid provides AWS client management functions for the voiceid AWS service.
Package _voiceid provides AWS client management functions for the voiceid AWS service.
_vpclattice
Package _vpclattice provides AWS client management functions for the vpclattice AWS service.
Package _vpclattice provides AWS client management functions for the vpclattice AWS service.
_waf
Package _waf provides AWS client management functions for the waf AWS service.
Package _waf provides AWS client management functions for the waf AWS service.
_wafregional
Package _wafregional provides AWS client management functions for the wafregional AWS service.
Package _wafregional provides AWS client management functions for the wafregional AWS service.
_wafv2
Package _wafv2 provides AWS client management functions for the wafv2 AWS service.
Package _wafv2 provides AWS client management functions for the wafv2 AWS service.
_wellarchitected
Package _wellarchitected provides AWS client management functions for the wellarchitected AWS service.
Package _wellarchitected provides AWS client management functions for the wellarchitected AWS service.
_wisdom
Package _wisdom provides AWS client management functions for the wisdom AWS service.
Package _wisdom provides AWS client management functions for the wisdom AWS service.
_workdocs
Package _workdocs provides AWS client management functions for the workdocs AWS service.
Package _workdocs provides AWS client management functions for the workdocs AWS service.
_worklink
Package _worklink provides AWS client management functions for the worklink AWS service.
Package _worklink provides AWS client management functions for the worklink AWS service.
_workmail
Package _workmail provides AWS client management functions for the workmail AWS service.
Package _workmail provides AWS client management functions for the workmail AWS service.
_workmailmessageflow
Package _workmailmessageflow provides AWS client management functions for the workmailmessageflow AWS service.
Package _workmailmessageflow provides AWS client management functions for the workmailmessageflow AWS service.
_workspaces
Package _workspaces provides AWS client management functions for the workspaces AWS service.
Package _workspaces provides AWS client management functions for the workspaces AWS service.
_workspacesweb
Package _workspacesweb provides AWS client management functions for the workspacesweb AWS service.
Package _workspacesweb provides AWS client management functions for the workspacesweb AWS service.
_xray
Package _xray provides AWS client management functions for the xray AWS service.
Package _xray provides AWS client management functions for the xray AWS service.
Package providers provides types, errors, constants & New* creation functions for managing Credential Providers.
Package providers provides types, errors, constants & New* creation functions for managing Credential Providers.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL