sdk

package module
v1.0.6 Latest Latest
Warning

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

Go to latest
Published: Dec 17, 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.

Checkout our release notes for information about the latest bug fixes, updates, and features added to the SDK.

Installing

If you are using Go 1.5 with the GO15VENDOREXPERIMENT=1 vendoring flag you can use the following to get the SDK as the SDK's runtime dependancies are vendored in the vendor folder.

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

Otherwise you'll need to tell Go to get the SDK and all of its dependancies.

$ 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 the Go SDK

To use a service in the SDK, create a service variable by calling the New() function. Once you have a service client, 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/aws/session"
	"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(session.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.
defaults
Package defaults is a collection of helpers to retrieve the SDK's default configuration and handlers.
Package defaults is a collection of helpers to retrieve the SDK's default configuration and handlers.
ec2metadata
Package ec2metadata provides the client for making API calls to the EC2 Metadata service.
Package ec2metadata provides the client for making API calls to the EC2 Metadata service.
session
Package session provides a way to create service clients with shared configuration and handlers.
Package session provides a way to create service clients with shared configuration and handlers.
awsmigrate
integration
Package integration performs initialization and validation for integration tests.
Package integration performs initialization and validation for integration tests.
integration/smoke
Package smoke contains shared step definitions that are used across integration tests
Package smoke contains shared step definitions that are used across integration tests
integration/smoke/apigateway
Package apigateway provides gucumber integration tests support.
Package apigateway provides gucumber integration tests support.
integration/smoke/autoscaling
Package autoscaling provides gucumber integration tests support.
Package autoscaling provides gucumber integration tests support.
integration/smoke/cloudformation
Package cloudformation provides gucumber integration tests support.
Package cloudformation provides gucumber integration tests support.
integration/smoke/cloudfront
Package cloudfront provides gucumber integration tests support.
Package cloudfront provides gucumber integration tests support.
integration/smoke/cloudhsm
Package cloudhsm provides gucumber integration tests support.
Package cloudhsm provides gucumber integration tests support.
integration/smoke/cloudsearch
Package cloudsearch provides gucumber integration tests support.
Package cloudsearch provides gucumber integration tests support.
integration/smoke/cloudtrail
Package cloudtrail provides gucumber integration tests support.
Package cloudtrail provides gucumber integration tests support.
integration/smoke/cloudwatch
Package cloudwatch provides gucumber integration tests support.
Package cloudwatch provides gucumber integration tests support.
integration/smoke/cloudwatchlogs
Package cloudwatchlogs provides gucumber integration tests support.
Package cloudwatchlogs provides gucumber integration tests support.
integration/smoke/codecommit
Package codecommit provides gucumber integration tests support.
Package codecommit provides gucumber integration tests support.
integration/smoke/codedeploy
Package codedeploy provides gucumber integration tests support.
Package codedeploy provides gucumber integration tests support.
integration/smoke/codepipeline
Package codepipeline provides gucumber integration tests support.
Package codepipeline provides gucumber integration tests support.
integration/smoke/cognitoidentity
Package cognitoidentity provides gucumber integration tests support.
Package cognitoidentity provides gucumber integration tests support.
integration/smoke/cognitosync
Package cognitosync provides gucumber integration tests support.
Package cognitosync provides gucumber integration tests support.
integration/smoke/configservice
Package configservice provides gucumber integration tests support.
Package configservice provides gucumber integration tests support.
integration/smoke/datapipeline
Package datapipeline provides gucumber integration tests support.
Package datapipeline provides gucumber integration tests support.
integration/smoke/devicefarm
Package devicefarm provides gucumber integration tests support.
Package devicefarm provides gucumber integration tests support.
integration/smoke/directconnect
Package directconnect provides gucumber integration tests support.
Package directconnect provides gucumber integration tests support.
integration/smoke/directoryservice
Package directoryservice provides gucumber integration tests support.
Package directoryservice provides gucumber integration tests support.
integration/smoke/dynamodb
Package dynamodb provides gucumber integration tests support.
Package dynamodb provides gucumber integration tests support.
integration/smoke/dynamodbstreams
Package dynamodbstreams provides gucumber integration tests support.
Package dynamodbstreams provides gucumber integration tests support.
integration/smoke/ec2
Package ec2 provides gucumber integration tests support.
Package ec2 provides gucumber integration tests support.
integration/smoke/ecs
Package ecs provides gucumber integration tests support.
Package ecs provides gucumber integration tests support.
integration/smoke/efs
Package efs provides gucumber integration tests support.
Package efs provides gucumber integration tests support.
integration/smoke/elasticache
Package elasticache provides gucumber integration tests support.
Package elasticache provides gucumber integration tests support.
integration/smoke/elasticbeanstalk
Package elasticbeanstalk provides gucumber integration tests support.
Package elasticbeanstalk provides gucumber integration tests support.
integration/smoke/elasticloadbalancing
Package elasticloadbalancing provides gucumber integration tests support.
Package elasticloadbalancing provides gucumber integration tests support.
integration/smoke/elastictranscoder
Package elastictranscoder provides gucumber integration tests support.
Package elastictranscoder provides gucumber integration tests support.
integration/smoke/emr
Package emr provides gucumber integration tests support.
Package emr provides gucumber integration tests support.
integration/smoke/es
Package es provides gucumber integration tests support.
Package es provides gucumber integration tests support.
integration/smoke/glacier
Package glacier provides gucumber integration tests support.
Package glacier provides gucumber integration tests support.
integration/smoke/iam
Package iam provides gucumber integration tests support.
Package iam provides gucumber integration tests support.
integration/smoke/iotdataplane
Package iotdataplane provides gucumber integration tests support.
Package iotdataplane provides gucumber integration tests support.
integration/smoke/kinesis
Package kinesis provides gucumber integration tests support.
Package kinesis provides gucumber integration tests support.
integration/smoke/kms
Package kms provides gucumber integration tests support.
Package kms provides gucumber integration tests support.
integration/smoke/lambda
Package lambda provides gucumber integration tests support.
Package lambda provides gucumber integration tests support.
integration/smoke/machinelearning
Package machinelearning provides gucumber integration tests support.
Package machinelearning provides gucumber integration tests support.
integration/smoke/opsworks
Package opsworks provides gucumber integration tests support.
Package opsworks provides gucumber integration tests support.
integration/smoke/rds
Package rds provides gucumber integration tests support.
Package rds provides gucumber integration tests support.
integration/smoke/redshift
Package redshift provides gucumber integration tests support.
Package redshift provides gucumber integration tests support.
integration/smoke/route53
Package route53 provides gucumber integration tests support.
Package route53 provides gucumber integration tests support.
integration/smoke/route53domains
Package route53domains provides gucumber integration tests support.
Package route53domains provides gucumber integration tests support.
integration/smoke/ses
Package ses provides gucumber integration tests support.
Package ses provides gucumber integration tests support.
integration/smoke/simpledb
Package simpledb provides gucumber integration tests support.
Package simpledb provides gucumber integration tests support.
integration/smoke/sns
Package sns provides gucumber integration tests support.
Package sns provides gucumber integration tests support.
integration/smoke/sqs
Package sqs provides gucumber integration tests support.
Package sqs provides gucumber integration tests support.
integration/smoke/ssm
Package ssm provides gucumber integration tests support.
Package ssm provides gucumber integration tests support.
integration/smoke/storagegateway
Package storagegateway provides gucumber integration tests support.
Package storagegateway provides gucumber integration tests support.
integration/smoke/sts
Package sts provides gucumber integration tests support.
Package sts provides gucumber integration tests support.
integration/smoke/support
Package support provides gucumber integration tests support.
Package support provides gucumber integration tests support.
integration/smoke/swf
Package swf provides gucumber integration tests support.
Package swf provides gucumber integration tests support.
integration/smoke/waf
Package waf provides gucumber integration tests support.
Package waf provides gucumber integration tests support.
integration/smoke/workspaces
Package workspaces provides gucumber integration tests support.
Package workspaces provides gucumber integration tests support.
unit
Package unit performs initialization and validation for unit tests
Package unit performs initialization and validation for unit tests
example
models
private
endpoints
Package endpoints validates regional endpoints for services.
Package endpoints validates regional endpoints for services.
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 serialization of AWS requests and responses.
Package rest provides RESTful serialization 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
Package service contains automatically generated AWS clients.
Package service contains automatically generated AWS clients.
apigateway
Package apigateway provides a client for Amazon API Gateway.
Package apigateway provides a client for Amazon API Gateway.
apigateway/apigatewayiface
Package apigatewayiface provides an interface for the Amazon API Gateway.
Package apigatewayiface provides an interface for the Amazon API Gateway.
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.
cloudfront/sign
Package sign provides utilities to generate signed URLs for Amazon CloudFront.
Package sign provides utilities to generate signed URLs for 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 AWS CodePipeline.
Package codepipeline provides a client for AWS CodePipeline.
codepipeline/codepipelineiface
Package codepipelineiface provides an interface for the AWS CodePipeline.
Package codepipelineiface provides an interface for the AWS CodePipeline.
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/dynamodbattribute
Package dynamodbattribute provides conversion utilities from dynamodb.AttributeValue to concrete Go types and structures.
Package dynamodbattribute provides conversion utilities from dynamodb.AttributeValue to concrete Go types and structures.
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.
elasticsearchservice
Package elasticsearchservice provides a client for Amazon Elasticsearch Service.
Package elasticsearchservice provides a client for Amazon Elasticsearch Service.
elasticsearchservice/elasticsearchserviceiface
Package elasticsearchserviceiface provides an interface for the Amazon Elasticsearch Service.
Package elasticsearchserviceiface provides an interface for the Amazon Elasticsearch Service.
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.
firehose
Package firehose provides a client for Amazon Kinesis Firehose.
Package firehose provides a client for Amazon Kinesis Firehose.
firehose/firehoseiface
Package firehoseiface provides an interface for the Amazon Kinesis Firehose.
Package firehoseiface provides an interface for the Amazon Kinesis Firehose.
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.
inspector
Package inspector provides a client for Amazon Inspector.
Package inspector provides a client for Amazon Inspector.
inspector/inspectoriface
Package inspectoriface provides an interface for the Amazon Inspector.
Package inspectoriface provides an interface for the Amazon Inspector.
iot
Package iot provides a client for AWS IoT.
Package iot provides a client for AWS IoT.
iot/iotiface
Package iotiface provides an interface for the AWS IoT.
Package iotiface provides an interface for the AWS IoT.
iotdataplane
Package iotdataplane provides a client for AWS IoT Data Plane.
Package iotdataplane provides a client for AWS IoT Data Plane.
iotdataplane/iotdataplaneiface
Package iotdataplaneiface provides an interface for the AWS IoT Data Plane.
Package iotdataplaneiface provides an interface for the AWS IoT Data Plane.
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.
marketplacecommerceanalytics
Package marketplacecommerceanalytics provides a client for AWS Marketplace Commerce Analytics.
Package marketplacecommerceanalytics provides a client for AWS Marketplace Commerce Analytics.
marketplacecommerceanalytics/marketplacecommerceanalyticsiface
Package marketplacecommerceanalyticsiface provides an interface for the AWS Marketplace Commerce Analytics.
Package marketplacecommerceanalyticsiface provides an interface for the AWS Marketplace Commerce Analytics.
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.
s3/s3manager
Package s3manager provides utilities to upload and download objects from S3 concurrently.
Package s3manager provides utilities to upload and download objects from S3 concurrently.
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.
simpledb
Package simpledb provides a client for Amazon SimpleDB.
Package simpledb provides a client for Amazon SimpleDB.
simpledb/simpledbiface
Package simpledbiface provides an interface for the Amazon SimpleDB.
Package simpledbiface provides an interface for the Amazon SimpleDB.
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.
waf
Package waf provides a client for AWS WAF.
Package waf provides a client for AWS WAF.
waf/wafiface
Package wafiface provides an interface for the AWS WAF.
Package wafiface provides an interface for the AWS WAF.
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