sdk

package module
v0.7.3 Latest Latest
Warning

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

Go to latest
Published: Aug 6, 2015 License: Apache-2.0 Imports: 0 Imported by: 0

README

AWS SDK for Go

API Reference Build Status Apache V2 License

aws-sdk-go is the official AWS SDK for the Go programming language.

Check out the official Developer Preview announcement (New - June 3rd 2015)

Caution

The SDK is currently in the process of being developed, and not everything may be working fully yet. Please be patient and report any bugs or problems you experience. The APIs may change radically without much warning, so please vendor your dependencies with Godep or similar.

Please do not confuse this for a stable, feature-complete library.

Note that while most AWS protocols are currently supported, not all services available in this package are implemented fully, as some require extra customizations to work with the SDK. If you've encountered such a scenario, please open a GitHub issue so we can track work for the service.

Installing

Install your specific service package with the following go get command. For example, EC2 support might be installed with:

$ go get github.com/aws/aws-sdk-go/service/ec2

You can also install the entire SDK by installing the root package, including all of the SDK's dependencies:

$ go get -u github.com/aws/aws-sdk-go/...

Configuring Credentials

Before using the SDK, ensure that you've configured credentials. The best way to configure credentials on a development machine is to use the ~/.aws/credentials file, which might look like:

[default]
aws_access_key_id = AKID1234567890
aws_secret_access_key = MY-SECRET-KEY

You can learn more about the credentials file from this blog post.

Alternatively, you can set the following environment variables:

AWS_ACCESS_KEY_ID=AKID1234567890
AWS_SECRET_ACCESS_KEY=MY-SECRET-KEY

Using

To use a service in the SDK, create a service variable by calling the New() function. Once you have a service, you can call API operations which each return response data and a possible error.

To list a set of instance IDs from EC2, you could run:

package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/service/ec2"
)

func main() {
	// Create an EC2 service object in the "us-west-2" region
	// Note that you can also configure your region globally by
	// exporting the AWS_REGION environment variable
	svc := ec2.New(&aws.Config{Region: aws.String("us-west-2")})

	// Call the DescribeInstances Operation
	resp, err := svc.DescribeInstances(nil)
	if err != nil {
		panic(err)
	}

	// resp has all of the response data, pull out instance IDs:
	fmt.Println("> Number of reservation sets: ", len(resp.Reservations))
	for idx, res := range resp.Reservations {
		fmt.Println("  > Number of instances: ", len(res.Instances))
		for _, inst := range resp.Reservations[idx].Instances {
			fmt.Println("    - Instance ID: ", *inst.InstanceID)
		}
	}
}

You can find more information and operations in our API documentation.

License

This SDK is distributed under the Apache License, Version 2.0, see LICENSE.txt and NOTICE.txt for more information.

Documentation

Overview

Package sdk is the official AWS SDK for the Go programming language.

See our Developer Guide for information for on getting started and using the SDK.

https://github.com/aws/aws-sdk-go/wiki

Directories

Path Synopsis
aws
Package aws provides core functionality for making requests to AWS services.
Package aws provides core functionality for making requests to AWS services.
awserr
Package awserr represents API error interface accessors for the SDK.
Package awserr represents API error interface accessors for the SDK.
credentials
Package credentials provides credential retrieval and management The Credentials is the primary method of getting access to and managing credentials Values.
Package credentials provides credential retrieval and management The Credentials is the primary method of getting access to and managing credentials Values.
credentials/stscreds
Package stscreds are credential Providers to retrieve STS AWS credentials.
Package stscreds are credential Providers to retrieve STS AWS credentials.
internal
endpoints
Package endpoints validates regional endpoints for services.
Package endpoints validates regional endpoints for services.
features/autoscaling
Package autoscaling provides gucumber integration tests suppport.
Package autoscaling provides gucumber integration tests suppport.
features/cloudformation
Package cloudformation provides gucumber integration tests suppport.
Package cloudformation provides gucumber integration tests suppport.
features/cloudfront
Package cloudfront provides gucumber integration tests suppport.
Package cloudfront provides gucumber integration tests suppport.
features/cloudhsm
Package cloudhsm provides gucumber integration tests suppport.
Package cloudhsm provides gucumber integration tests suppport.
features/cloudsearch
Package cloudsearch provides gucumber integration tests suppport.
Package cloudsearch provides gucumber integration tests suppport.
features/cloudtrail
Package cloudtrail provides gucumber integration tests suppport.
Package cloudtrail provides gucumber integration tests suppport.
features/cloudwatch
Package cloudwatch provides gucumber integration tests suppport.
Package cloudwatch provides gucumber integration tests suppport.
features/cloudwatchlogs
Package cloudwatchlogs provides gucumber integration tests suppport.
Package cloudwatchlogs provides gucumber integration tests suppport.
features/codecommit
Package codecommit provides gucumber integration tests suppport.
Package codecommit provides gucumber integration tests suppport.
features/codedeploy
Package codedeploy provides gucumber integration tests suppport.
Package codedeploy provides gucumber integration tests suppport.
features/codepipeline
Package codepipeline provides gucumber integration tests suppport.
Package codepipeline provides gucumber integration tests suppport.
features/cognitoidentity
Package cognitoidentity provides gucumber integration tests suppport.
Package cognitoidentity provides gucumber integration tests suppport.
features/cognitosync
Package cognitosync provides gucumber integration tests suppport.
Package cognitosync provides gucumber integration tests suppport.
features/configservice
Package configservice provides gucumber integration tests suppport.
Package configservice provides gucumber integration tests suppport.
features/datapipeline
Package datapipeline provides gucumber integration tests suppport.
Package datapipeline provides gucumber integration tests suppport.
features/directconnect
Package directconnect provides gucumber integration tests suppport.
Package directconnect provides gucumber integration tests suppport.
features/directoryservice
Package directoryservice provides gucumber integration tests suppport.
Package directoryservice provides gucumber integration tests suppport.
features/dynamodb
Package dynamodb provides gucumber integration tests suppport.
Package dynamodb provides gucumber integration tests suppport.
features/dynamodbstreams
Package dynamodbstreams provides gucumber integration tests suppport.
Package dynamodbstreams provides gucumber integration tests suppport.
features/ec2
Package ec2 provides gucumber integration tests suppport.
Package ec2 provides gucumber integration tests suppport.
features/efs
Package efs provides gucumber integration tests suppport.
Package efs provides gucumber integration tests suppport.
features/elasticache
Package elasticache provides gucumber integration tests suppport.
Package elasticache provides gucumber integration tests suppport.
features/elasticbeanstalk
Package elasticbeanstalk provides gucumber integration tests suppport.
Package elasticbeanstalk provides gucumber integration tests suppport.
features/elastictranscoder
Package elastictranscoder provides gucumber integration tests suppport.
Package elastictranscoder provides gucumber integration tests suppport.
features/elb
Package elb provides gucumber integration tests suppport.
Package elb provides gucumber integration tests suppport.
features/emr
Package emr provides gucumber integration tests suppport.
Package emr provides gucumber integration tests suppport.
features/glacier
Package glacier provides gucumber integration tests suppport.
Package glacier provides gucumber integration tests suppport.
features/iam
Package iam provides gucumber integration tests suppport.
Package iam provides gucumber integration tests suppport.
features/kinesis
Package kinesis provides gucumber integration tests suppport.
Package kinesis provides gucumber integration tests suppport.
features/kms
Package kms provides gucumber integration tests suppport.
Package kms provides gucumber integration tests suppport.
features/lambda
Package lambda provides gucumber integration tests suppport.
Package lambda provides gucumber integration tests suppport.
features/machinelearning
Package machinelearning provides gucumber integration tests suppport.
Package machinelearning provides gucumber integration tests suppport.
features/opsworks
Package opsworks provides gucumber integration tests suppport.
Package opsworks provides gucumber integration tests suppport.
features/rds
Package rds provides gucumber integration tests suppport.
Package rds provides gucumber integration tests suppport.
features/redshift
Package redshift provides gucumber integration tests suppport.
Package redshift provides gucumber integration tests suppport.
features/route53
Package route53 provides gucumber integration tests suppport.
Package route53 provides gucumber integration tests suppport.
features/route53domains
Package route53domains provides gucumber integration tests suppport.
Package route53domains provides gucumber integration tests suppport.
features/ses
Package ses provides gucumber integration tests suppport.
Package ses provides gucumber integration tests suppport.
features/shared
Package shared contains shared step definitions that are used across integration tests
Package shared contains shared step definitions that are used across integration tests
features/sns
Package sns provides gucumber integration tests suppport.
Package sns provides gucumber integration tests suppport.
features/sqs
Package sqs provides gucumber integration tests suppport.
Package sqs provides gucumber integration tests suppport.
features/ssm
Package ssm provides gucumber integration tests suppport.
Package ssm provides gucumber integration tests suppport.
features/storagegateway
Package storagegateway provides gucumber integration tests suppport.
Package storagegateway provides gucumber integration tests suppport.
features/sts
Package sts provides gucumber integration tests suppport.
Package sts provides gucumber integration tests suppport.
features/swf
Package swf provides gucumber integration tests suppport.
Package swf provides gucumber integration tests suppport.
features/workspaces
Package workspaces provides gucumber integration tests suppport.
Package workspaces provides gucumber integration tests suppport.
fixtures/helpers
Package helpers provides parameter filtering utilities.
Package helpers provides parameter filtering utilities.
model/api
Package api represents API abstractions for rendering service generated files.
Package api represents API abstractions for rendering service generated files.
model/cli/gen-api
Command aws-gen-gocli parses a JSON description of an AWS API and generates a Go file containing a client for the API.
Command aws-gen-gocli parses a JSON description of an AWS API and generates a Go file containing a client for the API.
model/cli/gen-endpoints
Command aws-gen-goendpoints parses a JSON description of the AWS endpoint discovery logic and generates a Go file which returns an endpoint.
Command aws-gen-goendpoints parses a JSON description of the AWS endpoint discovery logic and generates a Go file which returns an endpoint.
protocol/ec2query
Package ec2query provides serialisation of AWS EC2 requests and responses.
Package ec2query provides serialisation of AWS EC2 requests and responses.
protocol/json/jsonutil
Package jsonutil provides JSON serialisation of AWS requests and responses.
Package jsonutil provides JSON serialisation of AWS requests and responses.
protocol/jsonrpc
Package jsonrpc provides JSON RPC utilities for serialisation of AWS requests and responses.
Package jsonrpc provides JSON RPC utilities for serialisation of AWS requests and responses.
protocol/query
Package query provides serialisation of AWS query requests, and responses.
Package query provides serialisation of AWS query requests, and responses.
protocol/rest
Package rest provides RESTful serialisation of AWS requests and responses.
Package rest provides RESTful serialisation of AWS requests and responses.
protocol/restjson
Package restjson provides RESTful JSON serialisation of AWS requests and responses.
Package restjson provides RESTful JSON serialisation of AWS requests and responses.
protocol/restxml
Package restxml provides RESTful XML serialisation of AWS requests and responses.
Package restxml provides RESTful XML serialisation of AWS requests and responses.
protocol/xml/xmlutil
Package xmlutil provides XML serialisation of AWS requests and responses.
Package xmlutil provides XML serialisation of AWS requests and responses.
signer/v4
Package v4 implements signing for AWS V4 signer
Package v4 implements signing for AWS V4 signer
test/integration
Package integration performs initialization and validation for integration tests.
Package integration performs initialization and validation for integration tests.
test/unit
Package unit performs initialization and validation for unit tests
Package unit performs initialization and validation for unit tests
util/utilassert
Package utilassert provides testing assertion generation functions.
Package utilassert provides testing assertion generation functions.
util/utilsort
Package utilsort provides sorting utility methods.
Package utilsort provides sorting utility methods.
Package service contains automatically generated AWS clients.
Package service contains automatically generated AWS clients.
autoscaling
Package autoscaling provides a client for Auto Scaling.
Package autoscaling provides a client for Auto Scaling.
autoscaling/autoscalingiface
Package autoscalingiface provides an interface for the Auto Scaling.
Package autoscalingiface provides an interface for the Auto Scaling.
cloudformation
Package cloudformation provides a client for AWS CloudFormation.
Package cloudformation provides a client for AWS CloudFormation.
cloudformation/cloudformationiface
Package cloudformationiface provides an interface for the AWS CloudFormation.
Package cloudformationiface provides an interface for the AWS CloudFormation.
cloudfront
Package cloudfront provides a client for Amazon CloudFront.
Package cloudfront provides a client for Amazon CloudFront.
cloudfront/cloudfrontiface
Package cloudfrontiface provides an interface for the Amazon CloudFront.
Package cloudfrontiface provides an interface for the Amazon CloudFront.
cloudhsm
Package cloudhsm provides a client for Amazon CloudHSM.
Package cloudhsm provides a client for Amazon CloudHSM.
cloudhsm/cloudhsmiface
Package cloudhsmiface provides an interface for the Amazon CloudHSM.
Package cloudhsmiface provides an interface for the Amazon CloudHSM.
cloudsearch
Package cloudsearch provides a client for Amazon CloudSearch.
Package cloudsearch provides a client for Amazon CloudSearch.
cloudsearch/cloudsearchiface
Package cloudsearchiface provides an interface for the Amazon CloudSearch.
Package cloudsearchiface provides an interface for the Amazon CloudSearch.
cloudsearchdomain
Package cloudsearchdomain provides a client for Amazon CloudSearch Domain.
Package cloudsearchdomain provides a client for Amazon CloudSearch Domain.
cloudsearchdomain/cloudsearchdomainiface
Package cloudsearchdomainiface provides an interface for the Amazon CloudSearch Domain.
Package cloudsearchdomainiface provides an interface for the Amazon CloudSearch Domain.
cloudtrail
Package cloudtrail provides a client for AWS CloudTrail.
Package cloudtrail provides a client for AWS CloudTrail.
cloudtrail/cloudtrailiface
Package cloudtrailiface provides an interface for the AWS CloudTrail.
Package cloudtrailiface provides an interface for the AWS CloudTrail.
cloudwatch
Package cloudwatch provides a client for Amazon CloudWatch.
Package cloudwatch provides a client for Amazon CloudWatch.
cloudwatch/cloudwatchiface
Package cloudwatchiface provides an interface for the Amazon CloudWatch.
Package cloudwatchiface provides an interface for the Amazon CloudWatch.
cloudwatchlogs
Package cloudwatchlogs provides a client for Amazon CloudWatch Logs.
Package cloudwatchlogs provides a client for Amazon CloudWatch Logs.
cloudwatchlogs/cloudwatchlogsiface
Package cloudwatchlogsiface provides an interface for the Amazon CloudWatch Logs.
Package cloudwatchlogsiface provides an interface for the Amazon CloudWatch Logs.
codecommit
Package codecommit provides a client for AWS CodeCommit.
Package codecommit provides a client for AWS CodeCommit.
codecommit/codecommitiface
Package codecommitiface provides an interface for the AWS CodeCommit.
Package codecommitiface provides an interface for the AWS CodeCommit.
codedeploy
Package codedeploy provides a client for AWS CodeDeploy.
Package codedeploy provides a client for AWS CodeDeploy.
codedeploy/codedeployiface
Package codedeployiface provides an interface for the AWS CodeDeploy.
Package codedeployiface provides an interface for the AWS CodeDeploy.
codepipeline
Package codepipeline provides a client for CodePipeline Service.
Package codepipeline provides a client for CodePipeline Service.
codepipeline/codepipelineiface
Package codepipelineiface provides an interface for the CodePipeline Service.
Package codepipelineiface provides an interface for the CodePipeline Service.
cognitoidentity
Package cognitoidentity provides a client for Amazon Cognito Identity.
Package cognitoidentity provides a client for Amazon Cognito Identity.
cognitoidentity/cognitoidentityiface
Package cognitoidentityiface provides an interface for the Amazon Cognito Identity.
Package cognitoidentityiface provides an interface for the Amazon Cognito Identity.
cognitosync
Package cognitosync provides a client for Amazon Cognito Sync.
Package cognitosync provides a client for Amazon Cognito Sync.
cognitosync/cognitosynciface
Package cognitosynciface provides an interface for the Amazon Cognito Sync.
Package cognitosynciface provides an interface for the Amazon Cognito Sync.
configservice
Package configservice provides a client for AWS Config.
Package configservice provides a client for AWS Config.
configservice/configserviceiface
Package configserviceiface provides an interface for the AWS Config.
Package configserviceiface provides an interface for the AWS Config.
datapipeline
Package datapipeline provides a client for AWS Data Pipeline.
Package datapipeline provides a client for AWS Data Pipeline.
datapipeline/datapipelineiface
Package datapipelineiface provides an interface for the AWS Data Pipeline.
Package datapipelineiface provides an interface for the AWS Data Pipeline.
devicefarm
Package devicefarm provides a client for AWS Device Farm.
Package devicefarm provides a client for AWS Device Farm.
devicefarm/devicefarmiface
Package devicefarmiface provides an interface for the AWS Device Farm.
Package devicefarmiface provides an interface for the AWS Device Farm.
directconnect
Package directconnect provides a client for AWS Direct Connect.
Package directconnect provides a client for AWS Direct Connect.
directconnect/directconnectiface
Package directconnectiface provides an interface for the AWS Direct Connect.
Package directconnectiface provides an interface for the AWS Direct Connect.
directoryservice
Package directoryservice provides a client for AWS Directory Service.
Package directoryservice provides a client for AWS Directory Service.
directoryservice/directoryserviceiface
Package directoryserviceiface provides an interface for the AWS Directory Service.
Package directoryserviceiface provides an interface for the AWS Directory Service.
dynamodb
Package dynamodb provides a client for Amazon DynamoDB.
Package dynamodb provides a client for Amazon DynamoDB.
dynamodb/dynamodbiface
Package dynamodbiface provides an interface for the Amazon DynamoDB.
Package dynamodbiface provides an interface for the Amazon DynamoDB.
dynamodbstreams
Package dynamodbstreams provides a client for Amazon DynamoDB Streams.
Package dynamodbstreams provides a client for Amazon DynamoDB Streams.
dynamodbstreams/dynamodbstreamsiface
Package dynamodbstreamsiface provides an interface for the Amazon DynamoDB Streams.
Package dynamodbstreamsiface provides an interface for the Amazon DynamoDB Streams.
ec2
Package ec2 provides a client for Amazon Elastic Compute Cloud.
Package ec2 provides a client for Amazon Elastic Compute Cloud.
ec2/ec2iface
Package ec2iface provides an interface for the Amazon Elastic Compute Cloud.
Package ec2iface provides an interface for the Amazon Elastic Compute Cloud.
ecs
Package ecs provides a client for Amazon EC2 Container Service.
Package ecs provides a client for Amazon EC2 Container Service.
ecs/ecsiface
Package ecsiface provides an interface for the Amazon EC2 Container Service.
Package ecsiface provides an interface for the Amazon EC2 Container Service.
efs
Package efs provides a client for Amazon Elastic File System.
Package efs provides a client for Amazon Elastic File System.
efs/efsiface
Package efsiface provides an interface for the Amazon Elastic File System.
Package efsiface provides an interface for the Amazon Elastic File System.
elasticache
Package elasticache provides a client for Amazon ElastiCache.
Package elasticache provides a client for Amazon ElastiCache.
elasticache/elasticacheiface
Package elasticacheiface provides an interface for the Amazon ElastiCache.
Package elasticacheiface provides an interface for the Amazon ElastiCache.
elasticbeanstalk
Package elasticbeanstalk provides a client for AWS Elastic Beanstalk.
Package elasticbeanstalk provides a client for AWS Elastic Beanstalk.
elasticbeanstalk/elasticbeanstalkiface
Package elasticbeanstalkiface provides an interface for the AWS Elastic Beanstalk.
Package elasticbeanstalkiface provides an interface for the AWS Elastic Beanstalk.
elastictranscoder
Package elastictranscoder provides a client for Amazon Elastic Transcoder.
Package elastictranscoder provides a client for Amazon Elastic Transcoder.
elastictranscoder/elastictranscoderiface
Package elastictranscoderiface provides an interface for the Amazon Elastic Transcoder.
Package elastictranscoderiface provides an interface for the Amazon Elastic Transcoder.
elb
Package elb provides a client for Elastic Load Balancing.
Package elb provides a client for Elastic Load Balancing.
elb/elbiface
Package elbiface provides an interface for the Elastic Load Balancing.
Package elbiface provides an interface for the Elastic Load Balancing.
emr
Package emr provides a client for Amazon Elastic MapReduce.
Package emr provides a client for Amazon Elastic MapReduce.
emr/emriface
Package emriface provides an interface for the Amazon Elastic MapReduce.
Package emriface provides an interface for the Amazon Elastic MapReduce.
glacier
Package glacier provides a client for Amazon Glacier.
Package glacier provides a client for Amazon Glacier.
glacier/glacieriface
Package glacieriface provides an interface for the Amazon Glacier.
Package glacieriface provides an interface for the Amazon Glacier.
iam
Package iam provides a client for AWS Identity and Access Management.
Package iam provides a client for AWS Identity and Access Management.
iam/iamiface
Package iamiface provides an interface for the AWS Identity and Access Management.
Package iamiface provides an interface for the AWS Identity and Access Management.
kinesis
Package kinesis provides a client for Amazon Kinesis.
Package kinesis provides a client for Amazon Kinesis.
kinesis/kinesisiface
Package kinesisiface provides an interface for the Amazon Kinesis.
Package kinesisiface provides an interface for the Amazon Kinesis.
kms
Package kms provides a client for AWS Key Management Service.
Package kms provides a client for AWS Key Management Service.
kms/kmsiface
Package kmsiface provides an interface for the AWS Key Management Service.
Package kmsiface provides an interface for the AWS Key Management Service.
lambda
Package lambda provides a client for AWS Lambda.
Package lambda provides a client for AWS Lambda.
lambda/lambdaiface
Package lambdaiface provides an interface for the AWS Lambda.
Package lambdaiface provides an interface for the AWS Lambda.
machinelearning
Package machinelearning provides a client for Amazon Machine Learning.
Package machinelearning provides a client for Amazon Machine Learning.
machinelearning/machinelearningiface
Package machinelearningiface provides an interface for the Amazon Machine Learning.
Package machinelearningiface provides an interface for the Amazon Machine Learning.
mobileanalytics
Package mobileanalytics provides a client for Amazon Mobile Analytics.
Package mobileanalytics provides a client for Amazon Mobile Analytics.
mobileanalytics/mobileanalyticsiface
Package mobileanalyticsiface provides an interface for the Amazon Mobile Analytics.
Package mobileanalyticsiface provides an interface for the Amazon Mobile Analytics.
opsworks
Package opsworks provides a client for AWS OpsWorks.
Package opsworks provides a client for AWS OpsWorks.
opsworks/opsworksiface
Package opsworksiface provides an interface for the AWS OpsWorks.
Package opsworksiface provides an interface for the AWS OpsWorks.
rds
Package rds provides a client for Amazon Relational Database Service.
Package rds provides a client for Amazon Relational Database Service.
rds/rdsiface
Package rdsiface provides an interface for the Amazon Relational Database Service.
Package rdsiface provides an interface for the Amazon Relational Database Service.
redshift
Package redshift provides a client for Amazon Redshift.
Package redshift provides a client for Amazon Redshift.
redshift/redshiftiface
Package redshiftiface provides an interface for the Amazon Redshift.
Package redshiftiface provides an interface for the Amazon Redshift.
route53
Package route53 provides a client for Amazon Route 53.
Package route53 provides a client for Amazon Route 53.
route53/route53iface
Package route53iface provides an interface for the Amazon Route 53.
Package route53iface provides an interface for the Amazon Route 53.
route53domains
Package route53domains provides a client for Amazon Route 53 Domains.
Package route53domains provides a client for Amazon Route 53 Domains.
route53domains/route53domainsiface
Package route53domainsiface provides an interface for the Amazon Route 53 Domains.
Package route53domainsiface provides an interface for the Amazon Route 53 Domains.
s3
Package s3 provides a client for Amazon Simple Storage Service.
Package s3 provides a client for Amazon Simple Storage Service.
s3/s3iface
Package s3iface provides an interface for the Amazon Simple Storage Service.
Package s3iface provides an interface for the Amazon Simple Storage Service.
ses
Package ses provides a client for Amazon Simple Email Service.
Package ses provides a client for Amazon Simple Email Service.
ses/sesiface
Package sesiface provides an interface for the Amazon Simple Email Service.
Package sesiface provides an interface for the Amazon Simple Email Service.
sns
Package sns provides a client for Amazon Simple Notification Service.
Package sns provides a client for Amazon Simple Notification Service.
sns/snsiface
Package snsiface provides an interface for the Amazon Simple Notification Service.
Package snsiface provides an interface for the Amazon Simple Notification Service.
sqs
Package sqs provides a client for Amazon Simple Queue Service.
Package sqs provides a client for Amazon Simple Queue Service.
sqs/sqsiface
Package sqsiface provides an interface for the Amazon Simple Queue Service.
Package sqsiface provides an interface for the Amazon Simple Queue Service.
ssm
Package ssm provides a client for Amazon Simple Systems Management Service.
Package ssm provides a client for Amazon Simple Systems Management Service.
ssm/ssmiface
Package ssmiface provides an interface for the Amazon Simple Systems Management Service.
Package ssmiface provides an interface for the Amazon Simple Systems Management Service.
storagegateway
Package storagegateway provides a client for AWS Storage Gateway.
Package storagegateway provides a client for AWS Storage Gateway.
storagegateway/storagegatewayiface
Package storagegatewayiface provides an interface for the AWS Storage Gateway.
Package storagegatewayiface provides an interface for the AWS Storage Gateway.
sts
Package sts provides a client for AWS Security Token Service.
Package sts provides a client for AWS Security Token Service.
sts/stsiface
Package stsiface provides an interface for the AWS Security Token Service.
Package stsiface provides an interface for the AWS Security Token Service.
support
Package support provides a client for AWS Support.
Package support provides a client for AWS Support.
support/supportiface
Package supportiface provides an interface for the AWS Support.
Package supportiface provides an interface for the AWS Support.
swf
Package swf provides a client for Amazon Simple Workflow Service.
Package swf provides a client for Amazon Simple Workflow Service.
swf/swfiface
Package swfiface provides an interface for the Amazon Simple Workflow Service.
Package swfiface provides an interface for the Amazon Simple Workflow Service.
workspaces
Package workspaces provides a client for Amazon WorkSpaces.
Package workspaces provides a client for Amazon WorkSpaces.
workspaces/workspacesiface
Package workspacesiface provides an interface for the Amazon WorkSpaces.
Package workspacesiface provides an interface for the Amazon WorkSpaces.

Jump to

Keyboard shortcuts

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