{"id":13367169,"url":"https://github.com/aws/aws-sdk-Go","last_synced_at":"2025-03-12T18:32:08.084Z","repository":{"id":24185217,"uuid":"27576132","full_name":"aws/aws-sdk-go","owner":"aws","description":"AWS SDK for the Go programming language (In Maintenance Mode, End-of-Life on 07/31/2025). The AWS SDK for Go v2 is available here: https://github.com/aws/aws-sdk-go-v2","archived":false,"fork":false,"pushed_at":"2025-01-21T16:40:17.000Z","size":522990,"stargazers_count":8672,"open_issues_count":1,"forks_count":2071,"subscribers_count":240,"default_branch":"main","last_synced_at":"2025-03-07T00:59:34.900Z","etag":null,"topics":["aws","aws-sdk","go"],"latest_commit_sha":null,"homepage":"http://aws.amazon.com/sdk-for-go/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aws.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-12-05T05:29:41.000Z","updated_at":"2025-03-06T11:54:44.000Z","dependencies_parsed_at":"2023-07-13T08:30:44.241Z","dependency_job_id":"c4309169-90a8-4b7e-ad46-e4b2ab27160b","html_url":"https://github.com/aws/aws-sdk-go","commit_stats":{"total_commits":4615,"total_committers":316,"mean_commits":"14.604430379746836","dds":0.7527627302275189,"last_synced_commit":"7112c0a0c2d01713a9db2d57f0e5722225baf5b5"},"previous_names":["awslabs/aws-go","awslabs/aws-sdk-go","stripe/aws-go"],"tags_count":1873,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Faws-sdk-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Faws-sdk-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Faws-sdk-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Faws-sdk-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aws","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243271525,"owners_count":20264472,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","aws-sdk","go"],"created_at":"2024-07-30T00:01:40.299Z","updated_at":"2025-03-12T18:32:08.060Z","avatar_url":"https://github.com/aws.png","language":"Go","readme":"# AWS SDK for Go\n\n[![API Reference](https://img.shields.io/badge/api-reference-blue.svg)](https://docs.aws.amazon.com/sdk-for-go/api) [![Join the chat at https://gitter.im/aws/aws-sdk-go](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/aws/aws-sdk-go?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge) [![Build status](https://github.com/aws/aws-sdk-go/actions/workflows/go.yml/badge.svg?branch=main)](https://github.com/aws/aws-sdk-go/actions/workflows/go.yml) [![Apache V2 License](https://img.shields.io/badge/license-Apache%20V2-blue.svg)](https://github.com/aws/aws-sdk-go/blob/main/LICENSE.txt)\n\naws-sdk-go is the v1 AWS SDK for the Go programming language.\n\n## :warning: This SDK is in maintenance mode\n\nWe previously [announced](https://aws.amazon.com/blogs/developer/announcing-end-of-support-for-aws-sdk-for-go-v1-on-july-31-2025)\nthe upcoming **end-of-support for AWS SDK for Go (v1)**.\n\nPer that announcement, as of 7/31/2024, **the SDK has entered maintenance mode**.\nGoing forward, we will limit releases to address critical bug fixes and security\nissues only. The SDK will not receive API updates for new or existing services,\nor be updated to support new regions.\n\nMaintenance mode will last for 1 year. After 7/31/2025, the SDK will enter end-of-support, and no updates at all will be made.\nWe recommend that you migrate to [AWS SDK for Go v2](https://aws.github.io/aws-sdk-go-v2/docs/).\nFor additional details as well as information on how to migrate, please refer\nto the linked announcement.\n\nJump To:\n* [Getting Started](#Getting-Started)\n* [Quick Examples](#Quick-Examples)\n* [Getting Help](#Getting-Help)\n* [Contributing](#Contributing)\n* [More Resources](#Resources)\n\n## Getting Started\n\n### Installing\nUse `go get` to retrieve the SDK to add it to your project's Go module dependencies.\n\n\tgo get github.com/aws/aws-sdk-go\n\nTo update the SDK use `go get -u` to retrieve the latest version of the SDK.\n\n\tgo get -u github.com/aws/aws-sdk-go\n\n## Quick Examples \n\n### Complete SDK Example\n\nThis example shows a complete working Go file which will upload a file to S3\nand use the Context pattern to implement timeout logic that will cancel the\nrequest if it takes too long. This example highlights how to use sessions,\ncreate a service client, make a request, handle the error, and process the\nresponse.\n\n```go\n  package main\n\n  import (\n  \t\"context\"\n  \t\"flag\"\n  \t\"fmt\"\n  \t\"os\"\n  \t\"time\"\n\n  \t\"github.com/aws/aws-sdk-go/aws\"\n  \t\"github.com/aws/aws-sdk-go/aws/awserr\"\n  \t\"github.com/aws/aws-sdk-go/aws/request\"\n  \t\"github.com/aws/aws-sdk-go/aws/session\"\n  \t\"github.com/aws/aws-sdk-go/service/s3\"\n  )\n\n  // Uploads a file to S3 given a bucket and object key. Also takes a duration\n  // value to terminate the update if it doesn't complete within that time.\n  //\n  // The AWS Region needs to be provided in the AWS shared config or on the\n  // environment variable as `AWS_REGION`. Credentials also must be provided\n  // Will default to shared config file, but can load from environment if provided.\n  //\n  // Usage:\n  //   # Upload myfile.txt to myBucket/myKey. Must complete within 10 minutes or will fail\n  //   go run withContext.go -b mybucket -k myKey -d 10m \u003c myfile.txt\n  func main() {\n  \tvar bucket, key string\n  \tvar timeout time.Duration\n\n  \tflag.StringVar(\u0026bucket, \"b\", \"\", \"Bucket name.\")\n  \tflag.StringVar(\u0026key, \"k\", \"\", \"Object key name.\")\n  \tflag.DurationVar(\u0026timeout, \"d\", 0, \"Upload timeout.\")\n  \tflag.Parse()\n\n  \t// All clients require a Session. The Session provides the client with\n \t// shared configuration such as region, endpoint, and credentials. A\n \t// Session should be shared where possible to take advantage of\n \t// configuration and credential caching. See the session package for\n \t// more information.\n  \tsess := session.Must(session.NewSession())\n\n \t// Create a new instance of the service's client with a Session.\n \t// Optional aws.Config values can also be provided as variadic arguments\n \t// to the New function. This option allows you to provide service\n \t// specific configuration.\n  \tsvc := s3.New(sess)\n\n  \t// Create a context with a timeout that will abort the upload if it takes\n  \t// more than the passed in timeout.\n  \tctx := context.Background()\n  \tvar cancelFn func()\n  \tif timeout \u003e 0 {\n  \t\tctx, cancelFn = context.WithTimeout(ctx, timeout)\n  \t}\n  \t// Ensure the context is canceled to prevent leaking.\n  \t// See context package for more information, https://golang.org/pkg/context/\n\tif cancelFn != nil {\n  \t\tdefer cancelFn()\n\t}\n\n  \t// Uploads the object to S3. The Context will interrupt the request if the\n  \t// timeout expires.\n  \t_, err := svc.PutObjectWithContext(ctx, \u0026s3.PutObjectInput{\n  \t\tBucket: aws.String(bucket),\n  \t\tKey:    aws.String(key),\n  \t\tBody:   os.Stdin,\n  \t})\n  \tif err != nil {\n  \t\tif aerr, ok := err.(awserr.Error); ok \u0026\u0026 aerr.Code() == request.CanceledErrorCode {\n  \t\t\t// If the SDK can determine the request or retry delay was canceled\n  \t\t\t// by a context the CanceledErrorCode error code will be returned.\n  \t\t\tfmt.Fprintf(os.Stderr, \"upload canceled due to timeout, %v\\n\", err)\n  \t\t} else {\n  \t\t\tfmt.Fprintf(os.Stderr, \"failed to upload object, %v\\n\", err)\n  \t\t}\n  \t\tos.Exit(1)\n  \t}\n\n  \tfmt.Printf(\"successfully uploaded file to %s/%s\\n\", bucket, key)\n  }\n```\n\n### Overview of SDK's Packages\n\nThe SDK is composed of two main components, SDK core, and service clients.\nThe SDK core packages are all available under the aws package at the root of\nthe SDK. Each client for a supported AWS service is available within its own\npackage under the service folder at the root of the SDK.\n\n  * aws - SDK core, provides common shared types such as Config, Logger,\n    and utilities to make working with API parameters easier.\n\n      * awserr - Provides the error interface that the SDK will use for all\n        errors that occur in the SDK's processing. This includes service API\n        response errors as well. The Error type is made up of a code and message.\n        Cast the SDK's returned error type to awserr.Error and call the Code\n        method to compare returned error to specific error codes. See the package's\n        documentation for additional values that can be extracted such as RequestID.\n\n      * credentials - Provides the types and built in credentials providers\n        the SDK will use to retrieve AWS credentials to make API requests with.\n        Nested under this folder are also additional credentials providers such as\n        stscreds for assuming IAM roles, and ec2rolecreds for EC2 Instance roles.\n\n      * endpoints - Provides the AWS Regions and Endpoints metadata for the SDK.\n        Use this to lookup AWS service endpoint information such as which services\n        are in a region, and what regions a service is in. Constants are also provided\n        for all region identifiers, e.g UsWest2RegionID for \"us-west-2\".\n\n      * session - Provides initial default configuration, and load\n        configuration from external sources such as environment and shared\n        credentials file.\n\n      * request - Provides the API request sending, and retry logic for the SDK.\n        This package also includes utilities for defining your own request\n        retryer, and configuring how the SDK processes the request.\n\n  * service - Clients for AWS services. All services supported by the SDK are\n    available under this folder.\n\n### How to Use the SDK's AWS Service Clients\n\nThe SDK includes the Go types and utilities you can use to make requests to\nAWS service APIs. Within the service folder at the root of the SDK you'll find\na package for each AWS service the SDK supports. All service clients follow common pattern of creation and usage.\n\nWhen creating a client for an AWS service you'll first need to have a Session\nvalue constructed. The Session provides shared configuration that can be shared\nbetween your service clients. When service clients are created you can pass\nin additional configuration via the aws.Config type to override configuration\nprovided by in the Session to create service client instances with custom\nconfiguration.\n\nOnce the service's client is created you can use it to make API requests the\nAWS service. These clients are safe to use concurrently.\n\n### Configuring the SDK\n\nIn the AWS SDK for Go, you can configure settings for service clients, such\nas the log level and maximum number of retries. Most settings are optional;\nhowever, for each service client, you must specify a region and your credentials.\nThe SDK uses these values to send requests to the correct AWS region and sign\nrequests with the correct credentials. You can specify these values as part\nof a session or as environment variables.\n\nSee the SDK's [configuration guide][config_guide] for more information.\n\nSee the [session][session_pkg] package documentation for more information on how to use Session\nwith the SDK.\n\nSee the [Config][config_typ] type in the [aws][aws_pkg] package for more information on configuration\noptions.\n\n[config_guide]: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html\n[session_pkg]: https://docs.aws.amazon.com/sdk-for-go/api/aws/session/\n[config_typ]: https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config\n[aws_pkg]: https://docs.aws.amazon.com/sdk-for-go/api/aws/\n\n### Configuring Credentials\n\nWhen using the SDK you'll generally need your AWS credentials to authenticate\nwith AWS services. The SDK supports multiple methods of supporting these\ncredentials. By default the SDK will source credentials automatically from\nits default credential chain. See the session package for more information\non this chain, and how to configure it. The common items in the credential\nchain are the following:\n\n  * Environment Credentials - Set of environment variables that are useful\n    when sub processes are created for specific roles.\n\n  * Shared Credentials file (~/.aws/credentials) - This file stores your\n    credentials based on a profile name and is useful for local development.\n\n  * EC2 Instance Role Credentials - Use EC2 Instance Role to assign credentials\n    to application running on an EC2 instance. This removes the need to manage\n    credential files in production.\n\nCredentials can be configured in code as well by setting the Config's Credentials\nvalue to a custom provider or using one of the providers included with the\nSDK to bypass the default credential chain and use a custom one. This is\nhelpful when you want to instruct the SDK to only use a specific set of\ncredentials or providers.\n\nThis example creates a credential provider for assuming an IAM role, \"myRoleARN\"\nand configures the S3 service client to use that role for API requests.\n\n```go\n  // Initial credentials loaded from SDK's default credential chain. Such as\n  // the environment, shared credentials (~/.aws/credentials), or EC2 Instance\n  // Role. These credentials will be used to to make the STS Assume Role API.\n  sess := session.Must(session.NewSession())\n\n  // Create the credentials from AssumeRoleProvider to assume the role\n  // referenced by the \"myRoleARN\" ARN.\n  creds := stscreds.NewCredentials(sess, \"myRoleArn\")\n\n  // Create service client value configured for credentials\n  // from assumed role.\n  svc := s3.New(sess, \u0026aws.Config{Credentials: creds})\n```\n\nSee the [credentials][credentials_pkg] package documentation for more information on credential\nproviders included with the SDK, and how to customize the SDK's usage of\ncredentials.\n\nThe SDK has support for the shared configuration file (~/.aws/config). This\nsupport can be enabled by setting the environment variable, \"AWS_SDK_LOAD_CONFIG=1\",\nor enabling the feature in code when creating a Session via the\nOption's SharedConfigState parameter.\n\n```go\n  sess := session.Must(session.NewSessionWithOptions(session.Options{\n      SharedConfigState: session.SharedConfigEnable,\n  }))\n```\n\n[credentials_pkg]: https://docs.aws.amazon.com/sdk-for-go/api/aws/credentials\n\n### Configuring AWS Region\n\nIn addition to the credentials you'll need to specify the region the SDK\nwill use to make AWS API requests to. In the SDK you can specify the region\neither with an environment variable, or directly in code when a Session or\nservice client is created. The last value specified in code wins if the region\nis specified multiple ways.\n\nTo set the region via the environment variable set the \"AWS_REGION\" to the\nregion you want to the SDK to use. Using this method to set the region will\nallow you to run your application in multiple regions without needing additional\ncode in the application to select the region.\n\n    AWS_REGION=us-west-2\n\nThe endpoints package includes constants for all regions the SDK knows. The\nvalues are all suffixed with RegionID. These values are helpful, because they\nreduce the need to type the region string manually.\n\nTo set the region on a Session use the aws package's Config struct parameter\nRegion to the AWS region you want the service clients created from the session to\nuse. This is helpful when you want to create multiple service clients, and\nall of the clients make API requests to the same region.\n\n```go\n  sess := session.Must(session.NewSession(\u0026aws.Config{\n      Region: aws.String(endpoints.UsWest2RegionID),\n  }))\n```\n\nSee the [endpoints][endpoints_pkg] package for the AWS Regions and Endpoints metadata.\n\nIn addition to setting the region when creating a Session you can also set\nthe region on a per service client bases. This overrides the region of a\nSession. This is helpful when you want to create service clients in specific\nregions different from the Session's region.\n\n```go\n  svc := s3.New(sess, \u0026aws.Config{\n      Region: aws.String(endpoints.UsWest2RegionID),\n  })\n```\n\nSee the [Config][config_typ] type in the [aws][aws_pkg] package for more information and additional\noptions such as setting the Endpoint, and other service client configuration options.\n\n[endpoints_pkg]: https://docs.aws.amazon.com/sdk-for-go/api/aws/endpoints/\n\n### Making API Requests\n\nOnce the client is created you can make an API request to the service.\nEach API method takes a input parameter, and returns the service response\nand an error. The SDK provides methods for making the API call in multiple ways.\n\nIn this list we'll use the S3 ListObjects API as an example for the different\nways of making API requests.\n\n  * ListObjects - Base API operation that will make the API request to the service.\n\n  * ListObjectsRequest - API methods suffixed with Request will construct the\n    API request, but not send it. This is also helpful when you want to get a\n    presigned URL for a request, and share the presigned URL instead of your\n    application making the request directly.\n\n  * ListObjectsPages - Same as the base API operation, but uses a callback to\n    automatically handle pagination of the API's response.\n\n  * ListObjectsWithContext - Same as base API operation, but adds support for\n    the Context pattern. This is helpful for controlling the canceling of in\n    flight requests. See the Go standard library context package for more\n    information. This method also takes request package's Option functional\n    options as the variadic argument for modifying how the request will be\n    made, or extracting information from the raw HTTP response.\n\n  * ListObjectsPagesWithContext - same as ListObjectsPages, but adds support for\n    the Context pattern. Similar to ListObjectsWithContext this method also\n    takes the request package's Option function option types as the variadic\n    argument.\n\nIn addition to the API operations the SDK also includes several higher level\nmethods that abstract checking for and waiting for an AWS resource to be in\na desired state. In this list we'll use WaitUntilBucketExists to demonstrate\nthe different forms of waiters.\n\n  * WaitUntilBucketExists. - Method to make API request to query an AWS service for\n    a resource's state. Will return successfully when that state is accomplished.\n\n  * WaitUntilBucketExistsWithContext - Same as WaitUntilBucketExists, but adds\n    support for the Context pattern. In addition these methods take request\n    package's WaiterOptions to configure the waiter, and how underlying request\n    will be made by the SDK.\n\nThe API method will document which error codes the service might return for\nthe operation. These errors will also be available as const strings prefixed\nwith \"ErrCode\" in the service client's package. If there are no errors listed\nin the API's SDK documentation you'll need to consult the AWS service's API\ndocumentation for the errors that could be returned.\n\n```go\n  ctx := context.Background()\n\n  result, err := svc.GetObjectWithContext(ctx, \u0026s3.GetObjectInput{\n      Bucket: aws.String(\"my-bucket\"),\n      Key: aws.String(\"my-key\"),\n  })\n  if err != nil {\n      // Cast err to awserr.Error to handle specific error codes.\n      aerr, ok := err.(awserr.Error)\n      if ok \u0026\u0026 aerr.Code() == s3.ErrCodeNoSuchKey {\n          // Specific error code handling\n      }\n      return err\n  }\n\n  // Make sure to close the body when done with it for S3 GetObject APIs or\n  // will leak connections.\n  defer result.Body.Close()\n\n  fmt.Println(\"Object Size:\", aws.Int64Value(result.ContentLength))\n```\n\n### API Request Pagination and Resource Waiters\n\nPagination helper methods are suffixed with \"Pages\", and provide the\nfunctionality needed to round trip API page requests. Pagination methods\ntake a callback function that will be called for each page of the API's response.\n\n```go\n   objects := []string{}\n   err := svc.ListObjectsPagesWithContext(ctx, \u0026s3.ListObjectsInput{\n       Bucket: aws.String(myBucket),\n   }, func(p *s3.ListObjectsOutput, lastPage bool) bool {\n       for _, o := range p.Contents {\n           objects = append(objects, aws.StringValue(o.Key))\n       }\n       return true // continue paging\n   })\n   if err != nil {\n       panic(fmt.Sprintf(\"failed to list objects for bucket, %s, %v\", myBucket, err))\n   }\n\n   fmt.Println(\"Objects in bucket:\", objects)\n```\n\nWaiter helper methods provide the functionality to wait for an AWS resource\nstate. These methods abstract the logic needed to check the state of an\nAWS resource, and wait until that resource is in a desired state. The waiter\nwill block until the resource is in the state that is desired, an error occurs,\nor the waiter times out. If a resource times out the error code returned will\nbe request.WaiterResourceNotReadyErrorCode.\n\n```go\n  err := svc.WaitUntilBucketExistsWithContext(ctx, \u0026s3.HeadBucketInput{\n      Bucket: aws.String(myBucket),\n  })\n  if err != nil {\n      aerr, ok := err.(awserr.Error)\n      if ok \u0026\u0026 aerr.Code() == request.WaiterResourceNotReadyErrorCode {\n          fmt.Fprintf(os.Stderr, \"timed out while waiting for bucket to exist\")\n      }\n      panic(fmt.Errorf(\"failed to wait for bucket to exist, %v\", err))\n  }\n  fmt.Println(\"Bucket\", myBucket, \"exists\")\n```    \n\n## Getting Help\n\nPlease use these community resources for getting help. We use the GitHub issues\nfor tracking bugs and feature requests.\n\n* Ask a question on [StackOverflow](http://stackoverflow.com/) and tag it with the [`aws-sdk-go`](http://stackoverflow.com/questions/tagged/aws-sdk-go) tag.\n* Come join the AWS SDK for Go community chat on [gitter](https://gitter.im/aws/aws-sdk-go).\n* Open a support ticket with [AWS Support](http://docs.aws.amazon.com/awssupport/latest/user/getting-started.html).\n* If you think you may have found a bug, please open an [issue](https://github.com/aws/aws-sdk-go/issues/new/choose).\n\nThis SDK implements AWS service APIs. For general issues regarding the AWS services and their limitations, you may also take a look at the [Amazon Web Services Discussion Forums](https://forums.aws.amazon.com/).\n\n### Opening Issues\n\nIf you encounter a bug with the AWS SDK for Go we would like to hear about it.\nSearch the [existing issues](https://github.com/aws/aws-sdk-go/issues) and see\nif others are also experiencing the issue before opening a new issue. Please\ninclude the version of AWS SDK for Go, Go language, and OS you’re using. Please\nalso include reproduction case when appropriate.\n\nThe GitHub issues are intended for bug reports and feature requests. For help\nand questions with using AWS SDK for Go please make use of the resources listed\nin the [Getting Help](https://github.com/aws/aws-sdk-go#getting-help) section.\nKeeping the list of open issues lean will help us respond in a timely manner.\n\n## Contributing\n\nWe work hard to provide a high-quality and useful SDK for our AWS services, and we greatly value feedback and contributions from our community. Please review our [contributing guidelines](./CONTRIBUTING.md) before submitting any [issues] or [pull requests][pr] to ensure we have all the necessary information to effectively respond to your bug report or contribution.\n\n## Maintenance and support for SDK major versions\n\nFor information about maintenance and support for SDK major versions and our underlying dependencies, see the following in the AWS SDKs and Tools Shared Configuration and Credentials Reference Guide:\n\n* [AWS SDKs and Tools Maintenance Policy](https://docs.aws.amazon.com/credref/latest/refdocs/maint-policy.html)\n* [AWS SDKs and Tools Version Support Matrix](https://docs.aws.amazon.com/credref/latest/refdocs/version-support-matrix.html)\n\n### Go version support policy\n\nThe v2 SDK follows the upstream [release policy](https://go.dev/doc/devel/release#policy)\nwith an additional six months of support for the most recently deprecated\nlanguage version.\n\n**AWS reserves the right to drop support for unsupported Go versions earlier to\naddress critical security issues.**\n\n## Resources\n\n[Developer guide](https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/welcome.html) - This document\nis a general introduction on how to configure and make requests with the SDK.\nIf this is your first time using the SDK, this documentation and the API\ndocumentation will help you get started. This document focuses on the syntax\nand behavior of the SDK. The [Service Developer Guide](https://aws.amazon.com/documentation/) \nwill help you get started using specific AWS services.\n\n[SDK API Reference Documentation](https://docs.aws.amazon.com/sdk-for-go/api/) - Use this\ndocument to look up all API operation input and output parameters for AWS\nservices supported by the SDK. The API reference also includes documentation of\nthe SDK, and examples how to using the SDK, service client API operations, and\nAPI operation require parameters.\n\n[Service Documentation](https://aws.amazon.com/documentation/) - Use this\ndocumentation to learn how to interface with AWS services. These guides are\ngreat for getting started with a service, or when looking for more \ninformation about a service. While this document is not required for coding, \nservices may supply helpful samples to look out for.\n\n[SDK Examples](https://github.com/aws/aws-sdk-go/tree/main/example) -\nIncluded in the SDK's repo are several hand crafted examples using the SDK\nfeatures and AWS services.\n\n[Forum](https://forums.aws.amazon.com/forum.jspa?forumID=293) - Ask questions, get help, and give feedback\n\n[Issues][issues] - Report issues, submit pull requests, and get involved\n  (see [Apache 2.0 License][license])\n\n\n[issues]: https://github.com/aws/aws-sdk-go/issues\n[pr]: https://github.com/aws/aws-sdk-go/pulls\n[license]: http://aws.amazon.com/apache2.0/\n","funding_links":[],"categories":["第三方 APIs"],"sub_categories":["高级控制台界面","高級控制台界面"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faws%2Faws-sdk-Go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faws%2Faws-sdk-Go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faws%2Faws-sdk-Go/lists"}