Merge pull request #10495 from hashicorp/f-aws-sdk-1.5.13

Update aws sdk to 1.5.13
This commit is contained in:
Clint 2016-12-02 11:29:27 -06:00 committed by GitHub
commit 50b3beb4e0
10 changed files with 15502 additions and 1054 deletions

View File

@ -1,3 +1,23 @@
Release v1.5.13 (2016-12-01)
===
Service Client Updates
---
`service/apigateway`: Updates service API and documentation
`service/appstream`: Adds new service
`service/codebuild`: Adds new service
`service/directconnect`: Updates service API and documentation
`service/ec2`: Adds new service
`service/elasticbeanstalk`: Updates service API and documentation
`service/health`: Adds new service
`service/lambda`: Updates service API and documentation
`service/opsworkscm`: Adds new service
`service/pinpoint`: Adds new service
`service/shield`: Adds new service
`service/ssm`: Updates service API and documentation
`service/states`: Adds new service
`service/xray`: Adds new service
Release v1.5.12 (2016-11-30)
===

View File

@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"
// SDKVersion is the version of this SDK
const SDKVersion = "1.5.12"
const SDKVersion = "1.5.13"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -54,7 +54,7 @@ func newClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegio
ServiceName: ServiceName,
SigningRegion: signingRegion,
Endpoint: endpoint,
APIVersion: "2016-09-15",
APIVersion: "2016-11-15",
},
handlers,
),

View File

@ -422,6 +422,9 @@ func (c *ElasticBeanstalk) CreateApplicationVersionRequest(input *CreateApplicat
// The specified S3 bucket does not belong to the S3 region in which the service
// is running.
//
// * CodeBuildNotInServiceRegionException
// The CodeBuild service is not supported in this region.
//
func (c *ElasticBeanstalk) CreateApplicationVersion(input *CreateApplicationVersionInput) (*ApplicationVersionDescriptionMessage, error) {
req, out := c.CreateApplicationVersionRequest(input)
err := req.Send()
@ -988,8 +991,7 @@ func (c *ElasticBeanstalk) DescribeApplicationVersionsRequest(input *DescribeApp
// DescribeApplicationVersions API operation for AWS Elastic Beanstalk.
//
// Retrieve a list of application versions stored in your AWS Elastic Beanstalk
// storage bucket.
// Retrieve a list of application versions.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
@ -1665,9 +1667,8 @@ func (c *ElasticBeanstalk) DescribeInstancesHealthRequest(input *DescribeInstanc
// DescribeInstancesHealth API operation for AWS Elastic Beanstalk.
//
// Returns more detailed information about the health of the specified instances
// (for example, CPU utilization, load average, and causes). The DescribeInstancesHealth
// operation is only available with AWS Elastic Beanstalk Enhanced Health.
// Retrives detailed information about the health of instances in your AWS Elastic
// Beanstalk. This operation requires enhanced health reporting (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced.html).
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
@ -2647,7 +2648,7 @@ func (s *ApplicationDescriptionMessage) SetApplication(v *ApplicationDescription
return s
}
// Represents the application metrics for a specified environment.
// Application request metrics for an AWS Elastic Beanstalk environment.
type ApplicationMetrics struct {
_ struct{} `type:"structure"`
@ -2707,27 +2708,32 @@ func (s *ApplicationMetrics) SetStatusCodes(v *StatusCodes) *ApplicationMetrics
type ApplicationVersionDescription struct {
_ struct{} `type:"structure"`
// The name of the application associated with this release.
// The name of the application to which the application version belongs.
ApplicationName *string `min:"1" type:"string"`
BuildArn *string `type:"string"`
// The creation date of the application version.
DateCreated *time.Time `type:"timestamp" timestampFormat:"iso8601"`
// The last modified date of the application version.
DateUpdated *time.Time `type:"timestamp" timestampFormat:"iso8601"`
// The description of this application version.
// The description of the application version.
Description *string `type:"string"`
// If the version's source code was retrieved from AWS CodeCommit, the location
// of the source code for the application version.
SourceBuildInformation *SourceBuildInformation `type:"structure"`
// The location where the source bundle is located for this version.
// The storage location of the application version's source bundle in Amazon
// S3.
SourceBundle *S3Location `type:"structure"`
// The processing status of the application version.
Status *string `type:"string" enum:"ApplicationVersionStatus"`
// A label uniquely identifying the version for the associated application.
// A unique identifier for the application version.
VersionLabel *string `min:"1" type:"string"`
}
@ -2747,6 +2753,12 @@ func (s *ApplicationVersionDescription) SetApplicationName(v string) *Applicatio
return s
}
// SetBuildArn sets the BuildArn field's value.
func (s *ApplicationVersionDescription) SetBuildArn(v string) *ApplicationVersionDescription {
s.BuildArn = &v
return s
}
// SetDateCreated sets the DateCreated field's value.
func (s *ApplicationVersionDescription) SetDateCreated(v time.Time) *ApplicationVersionDescription {
s.DateCreated = &v
@ -2945,9 +2957,79 @@ func (s *AutoScalingGroup) SetName(v string) *AutoScalingGroup {
return s
}
// Represents CPU utilization information from the specified instance that belongs
// to the AWS Elastic Beanstalk environment. Use the instanceId property to
// specify the application instance for which you'd like to return data.
type BuildConfiguration struct {
_ struct{} `type:"structure"`
ArtifactName *string `type:"string"`
// CodeBuildServiceRole is a required field
CodeBuildServiceRole *string `type:"string" required:"true"`
ComputeType *string `type:"string" enum:"ComputeType"`
// Image is a required field
Image *string `type:"string" required:"true"`
TimeoutInMinutes *int64 `type:"integer"`
}
// String returns the string representation
func (s BuildConfiguration) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s BuildConfiguration) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *BuildConfiguration) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "BuildConfiguration"}
if s.CodeBuildServiceRole == nil {
invalidParams.Add(request.NewErrParamRequired("CodeBuildServiceRole"))
}
if s.Image == nil {
invalidParams.Add(request.NewErrParamRequired("Image"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetArtifactName sets the ArtifactName field's value.
func (s *BuildConfiguration) SetArtifactName(v string) *BuildConfiguration {
s.ArtifactName = &v
return s
}
// SetCodeBuildServiceRole sets the CodeBuildServiceRole field's value.
func (s *BuildConfiguration) SetCodeBuildServiceRole(v string) *BuildConfiguration {
s.CodeBuildServiceRole = &v
return s
}
// SetComputeType sets the ComputeType field's value.
func (s *BuildConfiguration) SetComputeType(v string) *BuildConfiguration {
s.ComputeType = &v
return s
}
// SetImage sets the Image field's value.
func (s *BuildConfiguration) SetImage(v string) *BuildConfiguration {
s.Image = &v
return s
}
// SetTimeoutInMinutes sets the TimeoutInMinutes field's value.
func (s *BuildConfiguration) SetTimeoutInMinutes(v int64) *BuildConfiguration {
s.TimeoutInMinutes = &v
return s
}
// CPU utilization metrics for an instance.
type CPUUtilization struct {
_ struct{} `type:"structure"`
@ -3570,20 +3652,12 @@ type CreateApplicationVersionInput struct {
// ApplicationName is a required field
ApplicationName *string `min:"1" type:"string" required:"true"`
// Determines how the system behaves if the specified application for this version
// does not already exist:
//
// * true : Automatically creates the specified application for this release
// if it does not already exist.
//
// * false : Throws an InvalidParameterValue if the specified application
// for this release does not already exist.
//
// Default: false
//
// Valid Values: true | false
// Set to true to create an application with the specified name if it doesn't
// already exist.
AutoCreateApplication *bool `type:"boolean"`
BuildConfiguration *BuildConfiguration `type:"structure"`
// Describes this version.
Description *string `type:"string"`
@ -3592,19 +3666,20 @@ type CreateApplicationVersionInput struct {
// prior to deploying the application version to an environment.
Process *bool `type:"boolean"`
// Specify a commit in an AWS CodeCommit Git repository to use as the source
// code for the application version.
//
// Specify a commit in an AWS CodeCommit repository or a source bundle in S3
// (with SourceBundle), but not both. If neither SourceBundle nor SourceBuildInformation
// are provided, Elastic Beanstalk uses a sample application.
SourceBuildInformation *SourceBuildInformation `type:"structure"`
// The Amazon S3 bucket and key that identify the location of the source bundle
// for this version.
//
// If data found at the Amazon S3 location exceeds the maximum allowed source
// bundle size, AWS Elastic Beanstalk returns an InvalidParameterValue error.
// The maximum size allowed is 512 MB.
//
// Default: If not specified, AWS Elastic Beanstalk uses a sample application.
// If only partially specified (for example, a bucket is provided but not the
// key) or if no data is found at the Amazon S3 location, AWS Elastic Beanstalk
// returns an InvalidParameterCombination error.
// Specify a source bundle in S3 or a commit in an AWS CodeCommit repository
// (with SourceBuildInformation), but not both. If neither SourceBundle nor
// SourceBuildInformation are provided, Elastic Beanstalk uses a sample application.
SourceBundle *S3Location `type:"structure"`
// A label identifying this version.
@ -3642,6 +3717,11 @@ func (s *CreateApplicationVersionInput) Validate() error {
if s.VersionLabel != nil && len(*s.VersionLabel) < 1 {
invalidParams.Add(request.NewErrParamMinLen("VersionLabel", 1))
}
if s.BuildConfiguration != nil {
if err := s.BuildConfiguration.Validate(); err != nil {
invalidParams.AddNested("BuildConfiguration", err.(request.ErrInvalidParams))
}
}
if s.SourceBuildInformation != nil {
if err := s.SourceBuildInformation.Validate(); err != nil {
invalidParams.AddNested("SourceBuildInformation", err.(request.ErrInvalidParams))
@ -3666,6 +3746,12 @@ func (s *CreateApplicationVersionInput) SetAutoCreateApplication(v bool) *Create
return s
}
// SetBuildConfiguration sets the BuildConfiguration field's value.
func (s *CreateApplicationVersionInput) SetBuildConfiguration(v *BuildConfiguration) *CreateApplicationVersionInput {
s.BuildConfiguration = v
return s
}
// SetDescription sets the Description field's value.
func (s *CreateApplicationVersionInput) SetDescription(v string) *CreateApplicationVersionInput {
s.Description = &v
@ -4181,20 +4267,14 @@ func (s DeleteApplicationOutput) GoString() string {
type DeleteApplicationVersionInput struct {
_ struct{} `type:"structure"`
// The name of the application to delete releases from.
// The name of the application to which the version belongs.
//
// ApplicationName is a required field
ApplicationName *string `min:"1" type:"string" required:"true"`
// Indicates whether to delete the associated source bundle from Amazon S3:
//
// * true: An attempt is made to delete the associated Amazon S3 source bundle
// specified at time of creation.
//
// * false: No action is taken on the Amazon S3 source bundle specified at
// time of creation.
//
// Valid Values: true | false
// Set to true to delete the source bundle from your storage bucket. Otherwise,
// the application version is deleted only from Elastic Beanstalk and the source
// bundle remains in Amazon S3.
DeleteSourceBundle *bool `type:"boolean"`
// The label of the version to delete.
@ -4473,12 +4553,11 @@ func (s *Deployment) SetVersionLabel(v string) *Deployment {
return s
}
// Result message containing a list of configuration descriptions.
// Request to describe application versions.
type DescribeApplicationVersionsInput struct {
_ struct{} `type:"structure"`
// If specified, AWS Elastic Beanstalk restricts the returned descriptions to
// only include ones that are associated with the specified application.
// Specify an application name to show only application versions for that application.
ApplicationName *string `min:"1" type:"string"`
// Specify a maximum number of application versions to paginate in the request.
@ -4487,8 +4566,7 @@ type DescribeApplicationVersionsInput struct {
// Specify a next token to retrieve the next page in a paginated request.
NextToken *string `type:"string"`
// If specified, restricts the returned descriptions to only include ones that
// have the specified version labels.
// Specify a version label to show a specific application version.
VersionLabels []*string `type:"list"`
}
@ -4546,7 +4624,7 @@ func (s *DescribeApplicationVersionsInput) SetVersionLabels(v []*string) *Descri
type DescribeApplicationVersionsOutput struct {
_ struct{} `type:"structure"`
// List of ApplicationVersionDescription objects sorted by order of creation.
// List of ApplicationVersionDescription objects sorted in order of creation.
ApplicationVersions []*ApplicationVersionDescription `type:"list"`
// For a paginated request, the token that you can pass in a subsequent request
@ -4855,22 +4933,18 @@ func (s *DescribeConfigurationSettingsOutput) SetConfigurationSettings(v []*Conf
type DescribeEnvironmentHealthInput struct {
_ struct{} `type:"structure"`
// Specifies the response elements you wish to receive. If no attribute names
// are specified, AWS Elastic Beanstalk only returns the name of the environment.
// Specify the response elements to return. To retrieve all attributes, set
// to All. If no attribute names are specified, returns the name of the environment.
AttributeNames []*string `type:"list"`
// Specifies the AWS Elastic Beanstalk environment ID.
// Specify the environment by ID.
//
// Condition: You must specify either this or an EnvironmentName, or both. If
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
// error.
// You must specify either this or an EnvironmentName, or both.
EnvironmentId *string `type:"string"`
// Specifies the AWS Elastic Beanstalk environment name.
// Specify the environment by name.
//
// Condition: You must specify either this or an EnvironmentId, or both. If
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
// error.
// You must specify either this or an EnvironmentName, or both.
EnvironmentName *string `min:"4" type:"string"`
}
@ -4915,35 +4989,36 @@ func (s *DescribeEnvironmentHealthInput) SetEnvironmentName(v string) *DescribeE
return s
}
// See the example below for a sample response.
// Health details for an AWS Elastic Beanstalk environment.
type DescribeEnvironmentHealthOutput struct {
_ struct{} `type:"structure"`
// Represents the application metrics for a specified environment.
// Application request metrics for the environment.
ApplicationMetrics *ApplicationMetrics `type:"structure"`
// Returns potential causes for the reported status.
// Descriptions of the data that contributed to the environment's current health
// status.
Causes []*string `type:"list"`
// Returns the color indicator that tells you information about the health of
// the environment. For more information, see Health Colors and Statuses (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html).
// The health color (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html)
// of the environment.
Color *string `type:"string"`
// The AWS Elastic Beanstalk environment name.
// The environment's name.
EnvironmentName *string `min:"4" type:"string"`
// Contains the response body with information about the health of the environment.
// The health status (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html)
// of the environment. For example, Ok.
HealthStatus *string `type:"string"`
// Represents summary information about the health of an instance. For more
// information, see Health Colors and Statuses (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html).
// Summary health information for the instances in the environment.
InstancesHealth *InstanceHealthSummary `type:"structure"`
// The date and time the information was last refreshed.
// The date and time that the health information was retrieved.
RefreshedAt *time.Time `type:"timestamp" timestampFormat:"iso8601"`
// Returns the health status value of the environment. For more information,
// see Health Colors and Statuses (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html).
// The environment's operational status. Ready, Launching, Updating, Terminating,
// or Terminated.
Status *string `type:"string" enum:"EnvironmentHealth"`
}
@ -5525,21 +5600,21 @@ func (s *DescribeEventsOutput) SetNextToken(v string) *DescribeEventsOutput {
return s
}
// See the example below to learn how to create a request body.
// Parameters for a call to DescribeInstancesHealth.
type DescribeInstancesHealthInput struct {
_ struct{} `type:"structure"`
// Specifies the response elements you wish to receive. If no attribute names
// are specified, AWS Elastic Beanstalk only returns a list of instances.
// Specifies the response elements you wish to receive. To retrieve all attributes,
// set to All. If no attribute names are specified, returns a list of instances.
AttributeNames []*string `type:"list"`
// Specifies the AWS Elastic Beanstalk environment ID.
// Specify the AWS Elastic Beanstalk environment by ID.
EnvironmentId *string `type:"string"`
// Specifies the AWS Elastic Beanstalk environment name.
// Specify the AWS Elastic Beanstalk environment by name.
EnvironmentName *string `min:"4" type:"string"`
// Specifies the next token of the request.
// Specify the pagination token returned by a previous call.
NextToken *string `min:"1" type:"string"`
}
@ -5593,17 +5668,18 @@ func (s *DescribeInstancesHealthInput) SetNextToken(v string) *DescribeInstances
return s
}
// See the example below for a sample response.
// Detailed health information about the Amazon EC2 instances in an AWS Elastic
// Beanstalk environment.
type DescribeInstancesHealthOutput struct {
_ struct{} `type:"structure"`
// Contains the response body with information about the health of the instance.
// Detailed health information about each instance.
InstanceHealthList []*SingleInstanceHealth `type:"list"`
// The next token.
// Pagination token for the next page of results, if available.
NextToken *string `min:"1" type:"string"`
// The date and time the information was last refreshed.
// The date and time that the health information was retrieved.
RefreshedAt *time.Time `type:"timestamp" timestampFormat:"iso8601"`
}
@ -7165,7 +7241,7 @@ func (s *RetrieveEnvironmentInfoOutput) SetEnvironmentInfo(v []*EnvironmentInfoD
return s
}
// A specification of a location in Amazon S3.
// The bucket and key of an item stored in Amazon S3.
type S3Location struct {
_ struct{} `type:"structure"`
@ -7198,13 +7274,12 @@ func (s *S3Location) SetS3Key(v string) *S3Location {
return s
}
// Represents health information from the specified instance that belongs to
// the AWS Elastic Beanstalk environment. Use the InstanceId property to specify
// the application instance for which you'd like to return data.
// Detailed health information about an Amazon EC2 instance in your Elastic
// Beanstalk environment.
type SingleInstanceHealth struct {
_ struct{} `type:"structure"`
// Represents the application metrics for a specified environment.
// Request metrics from your application.
ApplicationMetrics *ApplicationMetrics `type:"structure"`
// The availability zone in which the instance runs.
@ -7235,8 +7310,7 @@ type SingleInstanceHealth struct {
// The time at which the EC2 instance was launched.
LaunchedAt *time.Time `type:"timestamp" timestampFormat:"iso8601"`
// Represents CPU utilization and load average information for applications
// running in the specified environment.
// Operating system metrics from the instance.
System *SystemStatus `type:"structure"`
}
@ -7343,15 +7417,23 @@ func (s *SolutionStackDescription) SetSolutionStackName(v string) *SolutionStack
return s
}
// Location of the source code for an application version.
type SourceBuildInformation struct {
_ struct{} `type:"structure"`
// The repository name and commit ID, separated by a forward slash. For example,
// my-repo/265cfa0cf6af46153527f55d6503ec030551f57a.
//
// SourceLocation is a required field
SourceLocation *string `min:"3" type:"string" required:"true"`
// Location where the repository is stored, such as CodeCommit.
//
// SourceRepository is a required field
SourceRepository *string `type:"string" required:"true" enum:"SourceRepository"`
// The type of repository, such as Git.
//
// SourceType is a required field
SourceType *string `type:"string" required:"true" enum:"SourceType"`
}
@ -7609,14 +7691,11 @@ func (s SwapEnvironmentCNAMEsOutput) GoString() string {
return s.String()
}
// Represents CPU utilization and load average information for applications
// running in the specified environment.
// CPU utilization and load average metrics for an Amazon EC2 instance.
type SystemStatus struct {
_ struct{} `type:"structure"`
// Represents CPU utilization information from the specified instance that belongs
// to the AWS Elastic Beanstalk environment. Use the instanceId property to
// specify the application instance for which you'd like to return data.
// CPU utilization metrics for the instance.
CPUUtilization *CPUUtilization `type:"structure"`
// Load average in the last 1-minute and 5-minute periods. For more information,
@ -7870,7 +7949,7 @@ type UpdateApplicationVersionInput struct {
// ApplicationName is a required field
ApplicationName *string `min:"1" type:"string" required:"true"`
// A new description for this release.
// A new description for this version.
Description *string `type:"string"`
// The name of the version to update.
@ -8361,8 +8440,10 @@ type ValidationMessage struct {
// A message describing the error or warning.
Message *string `type:"string"`
// The namespace to which the option belongs.
Namespace *string `type:"string"`
// The name of the option.
OptionName *string `type:"string"`
// An indication of the severity of this message:
@ -8457,6 +8538,20 @@ const (
// ApplicationVersionStatusProcessing is a ApplicationVersionStatus enum value
ApplicationVersionStatusProcessing = "Processing"
// ApplicationVersionStatusBuilding is a ApplicationVersionStatus enum value
ApplicationVersionStatusBuilding = "Building"
)
const (
// ComputeTypeBuildGeneral1Small is a ComputeType enum value
ComputeTypeBuildGeneral1Small = "BUILD_GENERAL1_SMALL"
// ComputeTypeBuildGeneral1Medium is a ComputeType enum value
ComputeTypeBuildGeneral1Medium = "BUILD_GENERAL1_MEDIUM"
// ComputeTypeBuildGeneral1Large is a ComputeType enum value
ComputeTypeBuildGeneral1Large = "BUILD_GENERAL1_LARGE"
)
const (
@ -8650,11 +8745,17 @@ const (
const (
// SourceRepositoryCodeCommit is a SourceRepository enum value
SourceRepositoryCodeCommit = "CodeCommit"
// SourceRepositoryS3 is a SourceRepository enum value
SourceRepositoryS3 = "S3"
)
const (
// SourceTypeGit is a SourceType enum value
SourceTypeGit = "Git"
// SourceTypeZip is a SourceType enum value
SourceTypeZip = "Zip"
)
const (

View File

@ -636,6 +636,79 @@ func (c *Lambda) DeleteFunction(input *DeleteFunctionInput) (*DeleteFunctionOutp
return out, err
}
const opGetAccountSettings = "GetAccountSettings"
// GetAccountSettingsRequest generates a "aws/request.Request" representing the
// client's request for the GetAccountSettings operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See GetAccountSettings for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetAccountSettings method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetAccountSettingsRequest method.
// req, resp := client.GetAccountSettingsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
func (c *Lambda) GetAccountSettingsRequest(input *GetAccountSettingsInput) (req *request.Request, output *GetAccountSettingsOutput) {
op := &request.Operation{
Name: opGetAccountSettings,
HTTPMethod: "GET",
HTTPPath: "/2016-08-19/account-settings/",
}
if input == nil {
input = &GetAccountSettingsInput{}
}
req = c.newRequest(op, input, output)
output = &GetAccountSettingsOutput{}
req.Data = output
return
}
// GetAccountSettings API operation for AWS Lambda.
//
// Returns a customer's account settings.
//
// You can use this operation to retrieve Lambda limit information such as code
// size and concurrency limits. For more information on limits, see AWS Lambda
// Limits (http://docs.aws.amazon.com/lambda/latest/dg/limits.html). You can
// also retrieve resource usage statistics such as code storage usage and function
// count.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Lambda's
// API operation GetAccountSettings for usage and error information.
//
// Returned Error Codes:
// * TooManyRequestsException
//
// * ServiceException
// The AWS Lambda service encountered an internal error.
//
func (c *Lambda) GetAccountSettings(input *GetAccountSettingsInput) (*GetAccountSettingsOutput, error) {
req, out := c.GetAccountSettingsRequest(input)
err := req.Send()
return out, err
}
const opGetAlias = "GetAlias"
// GetAliasRequest generates a "aws/request.Request" representing the
@ -1187,7 +1260,7 @@ func (c *Lambda) InvokeRequest(input *InvokeInput) (req *request.Request, output
// key settings.
//
// * KMSAccessDeniedException
// Lambda was unable to decrypt the environment variables becauses KMS access
// Lambda was unable to decrypt the environment variables because KMS access
// was denied. Please check the Lambda function's KMS permissions.
//
// * KMSNotFoundException
@ -2184,6 +2257,99 @@ func (c *Lambda) UpdateFunctionConfiguration(input *UpdateFunctionConfigurationI
return out, err
}
// Provides limits of code size and concurrency associated with the current
// account and region.
type AccountLimit struct {
_ struct{} `type:"structure"`
// Size, in bytes, of code/dependencies that you can zip into a deployment package
// (uncompressed zip/jar size) for uploading. The default limit is 250 MB.
CodeSizeUnzipped *int64 `type:"long"`
// Size, in bytes, of a single zipped code/dependencies package you can upload
// for your Lambda function(.zip/.jar file). Try using AWS S3 for uploading
// larger files. Default limit is 50 MB.
CodeSizeZipped *int64 `type:"long"`
// Number of simultaneous executions of your function per region. For more information
// or to request a limit increase for concurrent executions, see Lambda Function
// Concurrent Executions (http://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html).
// The default limit is 100.
ConcurrentExecutions *int64 `type:"integer"`
// Maximum size, in megabytes, of a code package you can upload per region.
// The default size is 75 GB.
TotalCodeSize *int64 `type:"long"`
}
// String returns the string representation
func (s AccountLimit) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AccountLimit) GoString() string {
return s.String()
}
// SetCodeSizeUnzipped sets the CodeSizeUnzipped field's value.
func (s *AccountLimit) SetCodeSizeUnzipped(v int64) *AccountLimit {
s.CodeSizeUnzipped = &v
return s
}
// SetCodeSizeZipped sets the CodeSizeZipped field's value.
func (s *AccountLimit) SetCodeSizeZipped(v int64) *AccountLimit {
s.CodeSizeZipped = &v
return s
}
// SetConcurrentExecutions sets the ConcurrentExecutions field's value.
func (s *AccountLimit) SetConcurrentExecutions(v int64) *AccountLimit {
s.ConcurrentExecutions = &v
return s
}
// SetTotalCodeSize sets the TotalCodeSize field's value.
func (s *AccountLimit) SetTotalCodeSize(v int64) *AccountLimit {
s.TotalCodeSize = &v
return s
}
// Provides code size usage and function count associated with the current account
// and region.
type AccountUsage struct {
_ struct{} `type:"structure"`
// The number of your account's existing functions per region.
FunctionCount *int64 `type:"long"`
// Total size, in megabytes, of the account's deployment packages per region.
TotalCodeSize *int64 `type:"long"`
}
// String returns the string representation
func (s AccountUsage) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AccountUsage) GoString() string {
return s.String()
}
// SetFunctionCount sets the FunctionCount field's value.
func (s *AccountUsage) SetFunctionCount(v int64) *AccountUsage {
s.FunctionCount = &v
return s
}
// SetTotalCodeSize sets the TotalCodeSize field's value.
func (s *AccountUsage) SetTotalCodeSize(v int64) *AccountUsage {
s.TotalCodeSize = &v
return s
}
type AddPermissionInput struct {
_ struct{} `type:"structure"`
@ -2557,12 +2723,20 @@ type CreateEventSourceMappingInput struct {
// FunctionName is a required field
FunctionName *string `min:"1" type:"string" required:"true"`
// The position in the stream where AWS Lambda should start reading. For more
// information, go to ShardIteratorType (http://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html#Kinesis-GetShardIterator-request-ShardIteratorType)
// The position in the stream where AWS Lambda should start reading. Valid only
// for Kinesis streams. For more information, go to ShardIteratorType (http://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html#Kinesis-GetShardIterator-request-ShardIteratorType)
// in the Amazon Kinesis API Reference.
//
// StartingPosition is a required field
StartingPosition *string `type:"string" required:"true" enum:"EventSourcePosition"`
// The timestamp of the data record from which to start reading. Used with shard
// iterator type (http://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html#Kinesis-GetShardIterator-request-ShardIteratorType)
// AT_TIMESTAMP. If a record with this exact timestamp does not exist, the iterator
// returned is for the next (later) record. If the timestamp is older than the
// current trim horizon, the iterator returned is for the oldest untrimmed data
// record (TRIM_HORIZON). Valid only for Kinesis streams.
StartingPositionTimestamp *time.Time `type:"timestamp" timestampFormat:"unix"`
}
// String returns the string representation
@ -2630,6 +2804,12 @@ func (s *CreateEventSourceMappingInput) SetStartingPosition(v string) *CreateEve
return s
}
// SetStartingPositionTimestamp sets the StartingPositionTimestamp field's value.
func (s *CreateEventSourceMappingInput) SetStartingPositionTimestamp(v time.Time) *CreateEventSourceMappingInput {
s.StartingPositionTimestamp = &v
return s
}
type CreateFunctionInput struct {
_ struct{} `type:"structure"`
@ -2638,6 +2818,10 @@ type CreateFunctionInput struct {
// Code is a required field
Code *FunctionCode `type:"structure" required:"true"`
// The parent object that contains the target ARN (Amazon Resource Name) of
// an Amazon SQS queue or Amazon SNS topic.
DeadLetterConfig *DeadLetterConfig `type:"structure"`
// A short, user-defined function description. Lambda does not use this value.
// Assign a meaningful description as you see fit.
Description *string `type:"string"`
@ -2689,6 +2873,11 @@ type CreateFunctionInput struct {
// To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use earlier
// runtime (v0.10.42), set the value to "nodejs".
//
// You can no longer create functions using the v0.10.42 runtime version as
// of November, 2016. Existing functions will be supported until early 2017
// but we recommend you migrate them to nodejs4.3 runtime version as soon as
// possible.
//
// Runtime is a required field
Runtime *string `type:"string" required:"true" enum:"Runtime"`
@ -2759,6 +2948,12 @@ func (s *CreateFunctionInput) SetCode(v *FunctionCode) *CreateFunctionInput {
return s
}
// SetDeadLetterConfig sets the DeadLetterConfig field's value.
func (s *CreateFunctionInput) SetDeadLetterConfig(v *DeadLetterConfig) *CreateFunctionInput {
s.DeadLetterConfig = v
return s
}
// SetDescription sets the Description field's value.
func (s *CreateFunctionInput) SetDescription(v string) *CreateFunctionInput {
s.Description = &v
@ -2825,6 +3020,32 @@ func (s *CreateFunctionInput) SetVpcConfig(v *VpcConfig) *CreateFunctionInput {
return s
}
// The parent object that contains the target ARN (Amazon Resource Name) of
// an Amazon SQS queue or Amazon SNS topic.
type DeadLetterConfig struct {
_ struct{} `type:"structure"`
// The ARN (Amazon Resource Value) of an Amazon SQS queue or Amazon SNS topic
// you specify as your Dead Letter Queue (DLQ).
TargetArn *string `type:"string"`
}
// String returns the string representation
func (s DeadLetterConfig) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeadLetterConfig) GoString() string {
return s.String()
}
// SetTargetArn sets the TargetArn field's value.
func (s *DeadLetterConfig) SetTargetArn(v string) *DeadLetterConfig {
s.TargetArn = &v
return s
}
type DeleteAliasInput struct {
_ struct{} `type:"structure"`
@ -3334,6 +3555,10 @@ type FunctionConfiguration struct {
// The size, in bytes, of the function .zip file you uploaded.
CodeSize *int64 `type:"long"`
// The parent object that contains the target ARN (Amazon Resource Name) of
// an Amazon SQS queue or Amazon SNS topic.
DeadLetterConfig *DeadLetterConfig `type:"structure"`
// The user-provided description.
Description *string `type:"string"`
@ -3405,6 +3630,12 @@ func (s *FunctionConfiguration) SetCodeSize(v int64) *FunctionConfiguration {
return s
}
// SetDeadLetterConfig sets the DeadLetterConfig field's value.
func (s *FunctionConfiguration) SetDeadLetterConfig(v *DeadLetterConfig) *FunctionConfiguration {
s.DeadLetterConfig = v
return s
}
// SetDescription sets the Description field's value.
func (s *FunctionConfiguration) SetDescription(v string) *FunctionConfiguration {
s.Description = &v
@ -3483,6 +3714,54 @@ func (s *FunctionConfiguration) SetVpcConfig(v *VpcConfigResponse) *FunctionConf
return s
}
type GetAccountSettingsInput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s GetAccountSettingsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetAccountSettingsInput) GoString() string {
return s.String()
}
type GetAccountSettingsOutput struct {
_ struct{} `type:"structure"`
// Provides limits of code size and concurrency associated with the current
// account and region.
AccountLimit *AccountLimit `type:"structure"`
// Provides code size usage and function count associated with the current account
// and region.
AccountUsage *AccountUsage `type:"structure"`
}
// String returns the string representation
func (s GetAccountSettingsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetAccountSettingsOutput) GoString() string {
return s.String()
}
// SetAccountLimit sets the AccountLimit field's value.
func (s *GetAccountSettingsOutput) SetAccountLimit(v *AccountLimit) *GetAccountSettingsOutput {
s.AccountLimit = v
return s
}
// SetAccountUsage sets the AccountUsage field's value.
func (s *GetAccountSettingsOutput) SetAccountUsage(v *AccountUsage) *GetAccountSettingsOutput {
s.AccountUsage = v
return s
}
type GetAliasInput struct {
_ struct{} `type:"structure"`
@ -4941,6 +5220,10 @@ func (s *UpdateFunctionCodeInput) SetZipFile(v []byte) *UpdateFunctionCodeInput
type UpdateFunctionConfigurationInput struct {
_ struct{} `type:"structure"`
// The parent object that contains the target ARN (Amazon Resource Name) of
// an Amazon SQS queue or Amazon SNS topic.
DeadLetterConfig *DeadLetterConfig `type:"structure"`
// A short user-defined function description. AWS Lambda does not use this value.
// Assign a meaningful description as you see fit.
Description *string `type:"string"`
@ -4984,6 +5267,9 @@ type UpdateFunctionConfigurationInput struct {
//
// To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use earlier
// runtime (v0.10.42), set the value to "nodejs".
//
// You can no longer downgrade to the v0.10.42 runtime version. This version
// will no longer be supported as of early 2017.
Runtime *string `type:"string" enum:"Runtime"`
// The function execution time at which AWS Lambda should terminate the function.
@ -5030,6 +5316,12 @@ func (s *UpdateFunctionConfigurationInput) Validate() error {
return nil
}
// SetDeadLetterConfig sets the DeadLetterConfig field's value.
func (s *UpdateFunctionConfigurationInput) SetDeadLetterConfig(v *DeadLetterConfig) *UpdateFunctionConfigurationInput {
s.DeadLetterConfig = v
return s
}
// SetDescription sets the Description field's value.
func (s *UpdateFunctionConfigurationInput) SetDescription(v string) *UpdateFunctionConfigurationInput {
s.Description = &v
@ -5174,6 +5466,9 @@ const (
// EventSourcePositionLatest is a EventSourcePosition enum value
EventSourcePositionLatest = "LATEST"
// EventSourcePositionAtTimestamp is a EventSourcePosition enum value
EventSourcePositionAtTimestamp = "AT_TIMESTAMP"
)
const (
@ -5207,6 +5502,12 @@ const (
// RuntimePython27 is a Runtime enum value
RuntimePython27 = "python2.7"
// RuntimeDotnetcore10 is a Runtime enum value
RuntimeDotnetcore10 = "dotnetcore1.0"
// RuntimeNodejs43Edge is a Runtime enum value
RuntimeNodejs43Edge = "nodejs4.3-edge"
)
const (

File diff suppressed because it is too large Load Diff

View File

@ -11,124 +11,21 @@ import (
"github.com/aws/aws-sdk-go/private/protocol/jsonrpc"
)
// Amazon EC2 Simple Systems Manager (SSM) enables you to remotely manage the
// configuration of your Amazon EC2 instances, virtual machines (VMs), or servers
// in your on-premises environment or in an environment provided by other cloud
// providers using scripts, commands, or the Amazon EC2 console. SSM includes
// an on-demand solution called Amazon EC2 Run Command and a lightweight instance
// configuration solution called SSM Config.
// Amazon EC2 Systems Manager is a collection of capabilities that helps you
// automate management tasks such as collecting system inventory, applying operating
// system (OS) patches, automating the creation of Amazon Machine Images (AMIs),
// and configuring operating systems (OSs) and applications at scale. Systems
// Manager works with managed instances: Amazon EC2 instances and servers or
// virtual machines (VMs) in your on-premises environment that are configured
// for Systems Manager.
//
// This references is intended to be used with the EC2 Run Command User Guide
// for Linux (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/execute-remote-commands.html)
// or Windows (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/execute-remote-commands.html).
// This references is intended to be used with the EC2 Systems Manager User
// Guide (Linux (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/systems-manager.html))
// (Windows (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/systems-manager.html)).
//
// You must register your on-premises servers and VMs through an activation
// process before you can configure them using Run Command. Registered servers
// and VMs are called managed instances. For more information, see Setting Up
// Run Command On Managed Instances (On-Premises Servers and VMs) on Linux (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/managed-instances.html)
// or Setting Up Run Command On Managed Instances (On-Premises Servers and VMs)
// on Windows (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/managed-instances.html).
//
// Run Command
//
// Run Command provides an on-demand experience for executing commands. You
// can use pre-defined SSM documents to perform the actions listed later in
// this section, or you can create your own documents. With these documents,
// you can remotely configure your instances by sending commands using the Commands
// page in the Amazon EC2 console (http://console.aws.amazon.com/ec2/), AWS
// Tools for Windows PowerShell (http://docs.aws.amazon.com/powershell/latest/reference/items/Amazon_Simple_Systems_Management_cmdlets.html),
// the AWS CLI (http://docs.aws.amazon.com/cli/latest/reference/ssm/index.html),
// or AWS SDKs.
//
// Run Command reports the status of the command execution for each instance
// targeted by a command. You can also audit the command execution to understand
// who executed commands, when, and what changes were made. By switching between
// different SSM documents, you can quickly configure your instances with different
// types of commands. To get started with Run Command, verify that your environment
// meets the prerequisites for remotely running commands on EC2 instances (Linux
// (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/remote-commands-prereq.html)
// or Windows (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/remote-commands-prereq.html)).
//
// SSM Config
//
// SSM Config is a lightweight instance configuration solution. SSM Config is
// currently only available for Windows instances. With SSM Config, you can
// specify a setup configuration for your instances. SSM Config is similar to
// EC2 User Data, which is another way of running one-time scripts or applying
// settings during instance launch. SSM Config is an extension of this capability.
// Using SSM documents, you can specify which actions the system should perform
// on your instances, including which applications to install, which AWS Directory
// Service directory to join, which Microsoft PowerShell modules to install,
// etc. If an instance is missing one or more of these configurations, the system
// makes those changes. By default, the system checks every five minutes to
// see if there is a new configuration to apply as defined in a new SSM document.
// If so, the system updates the instances accordingly. In this way, you can
// remotely maintain a consistent configuration baseline on your instances.
// SSM Config is available using the AWS CLI or the AWS Tools for Windows PowerShell.
// For more information, see Managing Windows Instance Configuration (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-configuration-manage.html).
//
// SSM Config and Run Command include the following pre-defined documents.
//
// Linux
//
// AWS-RunShellScript to run shell scripts
//
// * AWS-UpdateSSMAgent to update the Amazon SSM agent
//
// Windows
//
// * AWS-JoinDirectoryServiceDomain to join an AWS Directory
//
// * AWS-RunPowerShellScript to run PowerShell commands or scripts
//
// * AWS-UpdateEC2Config to update the EC2Config service
//
// * AWS-ConfigureWindowsUpdate to configure Windows Update settings
//
// * AWS-InstallApplication to install, repair, or uninstall software using
// an MSI package
//
// * AWS-InstallPowerShellModule to install PowerShell modules
//
// * AWS-ConfigureCloudWatch to configure Amazon CloudWatch Logs to monitor
// applications and systems
//
// * AWS-ListWindowsInventory to collect information about an EC2 instance
// running in Windows.
//
// * AWS-FindWindowsUpdates to scan an instance and determines which updates
// are missing.
//
// * AWS-InstallMissingWindowsUpdates to install missing updates on your
// EC2 instance.
//
// * AWS-InstallSpecificWindowsUpdates to install one or more specific updates.
//
// The commands or scripts specified in SSM documents run with administrative
// privilege on your instances because the Amazon SSM agent runs as root
// on Linux and the EC2Config service runs in the Local System account on
// Windows. If a user has permission to execute any of the pre-defined SSM
// documents (any document that begins with AWS-*) then that user also has
// administrator access to the instance. Delegate access to Run Command and
// SSM Config judiciously. This becomes extremely important if you create
// your own SSM documents. Amazon Web Services does not provide guidance
// about how to create secure SSM documents. You create SSM documents and
// delegate access to Run Command at your own risk. As a security best practice,
// we recommend that you assign access to "AWS-*" documents, especially the
// AWS-RunShellScript document on Linux and the AWS-RunPowerShellScript document
// on Windows, to trusted administrators only. You can create SSM documents
// for specific tasks and delegate access to non-administrators.
//
// For information about creating and sharing SSM documents, see the following
// topics in the SSM User Guide:
//
// * Creating SSM Documents (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-ssm-doc.html)
// and * Sharing SSM Documents (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ssm-sharing.html)
// (Linux)
//
// * Creating SSM Documents (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/create-ssm-doc.html)
// and * Sharing SSM Documents (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ssm-sharing.html)
// (Windows)
// To get started, verify prerequisites and configure managed instances (Linux
// (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/systems-manager-prereqs.html))
// (Windows (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/systems-manager-prereqs.html)).
//The service client's operations are safe to be used concurrently.
// It is not safe to mutate any of the client's properties though.
type SSM struct {

590
vendor/vendor.json vendored
View File

@ -377,580 +377,580 @@
"revision": "4239b77079c7b5d1243b7b4736304ce8ddb6f0f2"
},
{
"checksumSHA1": "DfYjL9TFXUaMV8bKlcC3VHzynHc=",
"checksumSHA1": "4pgYZWTGSHhY5zzL2yvbh+XfFgg=",
"path": "github.com/aws/aws-sdk-go",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "WEkryGXiu/uQv5woVvRm9hxf9lE=",
"checksumSHA1": "f5mMRgx2qaUv2T4AaCwMRj6HI8Q=",
"path": "github.com/aws/aws-sdk-go/aws",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "Y9W+4GimK4Fuxq+vyIskVYFRnX4=",
"path": "github.com/aws/aws-sdk-go/aws/awserr",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "yyYr41HZ1Aq0hWc3J5ijXwYEcac=",
"path": "github.com/aws/aws-sdk-go/aws/awsutil",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "/232RBWA3KnT7U+wciPS2+wmvR0=",
"path": "github.com/aws/aws-sdk-go/aws/client",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "ieAJ+Cvp/PKv1LpUEnUXpc3OI6E=",
"path": "github.com/aws/aws-sdk-go/aws/client/metadata",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "Fl8vRSCY0MbM04cmiz/0MID+goA=",
"path": "github.com/aws/aws-sdk-go/aws/corehandlers",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "zu5C95rmCZff6NYZb62lEaT5ibE=",
"path": "github.com/aws/aws-sdk-go/aws/credentials",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "u3GOAJLmdvbuNUeUEcZSEAOeL/0=",
"path": "github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "NUJUTWlc1sV8b7WjfiYc4JZbXl0=",
"path": "github.com/aws/aws-sdk-go/aws/credentials/endpointcreds",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "4Ipx+5xN0gso+cENC2MHMWmQlR4=",
"path": "github.com/aws/aws-sdk-go/aws/credentials/stscreds",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "DwhFsNluCFEwqzyp3hbJR3q2Wqs=",
"path": "github.com/aws/aws-sdk-go/aws/defaults",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "/EXbk/z2TWjWc1Hvb4QYs3Wmhb8=",
"path": "github.com/aws/aws-sdk-go/aws/ec2metadata",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "yVSL6yhjj0Pozx4NVrWA3aguENg=",
"path": "github.com/aws/aws-sdk-go/aws/request",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "HT1op89NoiShWN5XBRGdZkQTf4A=",
"path": "github.com/aws/aws-sdk-go/aws/session",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "bjf3WCqht846AsRh85c8d7iLmsk=",
"path": "github.com/aws/aws-sdk-go/aws/signer/v4",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "Esab5F8KswqkTdB4TtjSvZgs56k=",
"path": "github.com/aws/aws-sdk-go/private/endpoints",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "wk7EyvDaHwb5qqoOP/4d3cV0708=",
"path": "github.com/aws/aws-sdk-go/private/protocol",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "1QmQ3FqV37w0Zi44qv8pA1GeR0A=",
"path": "github.com/aws/aws-sdk-go/private/protocol/ec2query",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "pNeF0Ey7TfBArH5LBQhKOQXQbLY=",
"path": "github.com/aws/aws-sdk-go/private/protocol/json/jsonutil",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "R00RL5jJXRYq1iiK1+PGvMfvXyM=",
"path": "github.com/aws/aws-sdk-go/private/protocol/jsonrpc",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "ZqY5RWavBLWTo6j9xqdyBEaNFRk=",
"path": "github.com/aws/aws-sdk-go/private/protocol/query",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "5xzix1R8prUyWxgLnzUQoxTsfik=",
"path": "github.com/aws/aws-sdk-go/private/protocol/query/queryutil",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "dUpGLm7IHo6A40vuaEKwaCLbqu8=",
"path": "github.com/aws/aws-sdk-go/private/protocol/rest",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "Rpu8KBtHZgvhkwHxUfaky+qW+G4=",
"path": "github.com/aws/aws-sdk-go/private/protocol/restjson",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "ODo+ko8D6unAxZuN1jGzMcN4QCc=",
"path": "github.com/aws/aws-sdk-go/private/protocol/restxml",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "U30tX6Rd4LSOjrm/E2WB0TyFxr8=",
"path": "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "F6mth+G7dXN1GI+nktaGo8Lx8aE=",
"path": "github.com/aws/aws-sdk-go/private/signer/v2",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "Eo9yODN5U99BK0pMzoqnBm7PCrY=",
"path": "github.com/aws/aws-sdk-go/private/waiter",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "INWpIaoMQ5yhSUDuC6BI2tnT01w=",
"path": "github.com/aws/aws-sdk-go/service/acm",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "6SZrpx+VJ7W/Xsozbn2UCIIMWug=",
"checksumSHA1": "nc8ftVV4VgKNZrVA5IAOSjPCtUE=",
"path": "github.com/aws/aws-sdk-go/service/apigateway",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "DZc+6wpn5VIQEoFMxLIKwVYliJE=",
"path": "github.com/aws/aws-sdk-go/service/applicationautoscaling",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "Y5ewqOw2oooAc17RZBLEfFe97NQ=",
"path": "github.com/aws/aws-sdk-go/service/autoscaling",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "e0qgGpjfhqhr2ka/IxWGVvtszzM=",
"path": "github.com/aws/aws-sdk-go/service/cloudformation",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "71H57UIgdJgkDZxJQsxJEB6ihqQ=",
"path": "github.com/aws/aws-sdk-go/service/cloudfront",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "1hnZsVUSJ0quZ37/xmwwCvQh2U8=",
"path": "github.com/aws/aws-sdk-go/service/cloudtrail",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "3jnrRIRHqRiWDqb71FMSfs9AvXk=",
"path": "github.com/aws/aws-sdk-go/service/cloudwatch",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "YLXFc6XhmmnVEfHPE0Bb8f5wndw=",
"path": "github.com/aws/aws-sdk-go/service/cloudwatchevents",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "bgkauNc4M46Pmyw7lHkvzw3sxiw=",
"path": "github.com/aws/aws-sdk-go/service/cloudwatchlogs",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "rKsbQ6FWQSqiE+ujHG6HietgH5Y=",
"path": "github.com/aws/aws-sdk-go/service/codecommit",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "YvpsgALidLyjzRgRHusdw7vS22k=",
"path": "github.com/aws/aws-sdk-go/service/codedeploy",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "3aRyyRHgUh+w26Wqrruxxa1VaxA=",
"path": "github.com/aws/aws-sdk-go/service/directoryservice",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "E5qjR1pDa/V2LEhXP36kZH2w91o=",
"path": "github.com/aws/aws-sdk-go/service/dynamodb",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "6h4tJ9wVtbYb9wG4srtUxyPoAYM=",
"checksumSHA1": "oS1hsSSRADAoJlk7oiJApIDeOYg=",
"path": "github.com/aws/aws-sdk-go/service/ec2",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "3wd5o69gQcsDpBIJU2QMAYu/Yjs=",
"path": "github.com/aws/aws-sdk-go/service/ecr",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "99y497vsASAyQYAmAiGOgCFniiI=",
"path": "github.com/aws/aws-sdk-go/service/ecs",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "cAYa6uHNWAKex00wQZQh/3RIP20=",
"path": "github.com/aws/aws-sdk-go/service/efs",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "e/nua6AZAM1DOX1s+qcuDaOqWYc=",
"path": "github.com/aws/aws-sdk-go/service/elasticache",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "pyykYejfcLu54fhwe94WMujiWpE=",
"checksumSHA1": "TwFv7k5MXe7UOQBWd/QTqxJawL8=",
"path": "github.com/aws/aws-sdk-go/service/elasticbeanstalk",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "z0ca3QajyQGpShh3psqolZLJt7Q=",
"path": "github.com/aws/aws-sdk-go/service/elasticsearchservice",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "t/dBXjcSbc5phqiIoGtOIELycNg=",
"path": "github.com/aws/aws-sdk-go/service/elastictranscoder",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "X6fiZ2b/U1WpYBzw5fqm2Wm8Hr0=",
"path": "github.com/aws/aws-sdk-go/service/elb",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "D+1s7cgL4iMtswW+x233jAV8eJI=",
"path": "github.com/aws/aws-sdk-go/service/elbv2",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "+GSIhCXrofZZRF4Bz4XuX8B8o7U=",
"path": "github.com/aws/aws-sdk-go/service/emr",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "71xHwOAjzdFQ+zQieThJWKObvS4=",
"path": "github.com/aws/aws-sdk-go/service/firehose",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "SU/YDilOf4uh4tC3O4ZyKfu9Ca8=",
"path": "github.com/aws/aws-sdk-go/service/glacier",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "hQquEMm59E2CwVwfBvKRTVzBj/8=",
"path": "github.com/aws/aws-sdk-go/service/iam",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "1pBbVKt2n6Z/59Nd8mXe20/JEV4=",
"path": "github.com/aws/aws-sdk-go/service/kinesis",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "ghoZkkKxN0lAJZ6Nb0sJiiFiQAI=",
"path": "github.com/aws/aws-sdk-go/service/kms",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "kb9gzhUSUeiJorMc73m13DK/3Qc=",
"checksumSHA1": "GXX3mEJTPOrM1aHiNv31vyy+HAY=",
"path": "github.com/aws/aws-sdk-go/service/lambda",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "BZY0NsRwwIbs52ZSjaEGqgWHXyo=",
"path": "github.com/aws/aws-sdk-go/service/opsworks",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "iGXoSzRemWsXcxdBLFqAaZ3ulf8=",
"path": "github.com/aws/aws-sdk-go/service/rds",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "bxHXVhiqpF3njkRRNcLn+tyhwZQ=",
"path": "github.com/aws/aws-sdk-go/service/redshift",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "i04x4j6gtaNDUHGlJa5bs+m4wlw=",
"path": "github.com/aws/aws-sdk-go/service/route53",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "lC6CowuZ0Zjvbcw3hjYSc1cxbPE=",
"path": "github.com/aws/aws-sdk-go/service/s3",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "6TbKrx2keOneistnAS39cVXTunY=",
"path": "github.com/aws/aws-sdk-go/service/ses",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "hp8JNTd1l4AvNps0/z3UsukvWsQ=",
"path": "github.com/aws/aws-sdk-go/service/simpledb",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "eGU3IGTGnOKW8qUi80UJrtkcmRw=",
"path": "github.com/aws/aws-sdk-go/service/sns",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "hTgsEbW3erfnTHok+7TKOSUlaYU=",
"path": "github.com/aws/aws-sdk-go/service/sqs",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "f0X7xjpA2JmDYc9xArgDI4mCO6I=",
"checksumSHA1": "9Tt+EzXo9wwMkrzZTdnXHkHfQoU=",
"path": "github.com/aws/aws-sdk-go/service/ssm",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "ouwhxcAsIYQ6oJbMRdLW/Ys/iyg=",
"path": "github.com/aws/aws-sdk-go/service/sts",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "BvZSVj6c/aEe0Ihf08fBXdIRz8A=",
"path": "github.com/aws/aws-sdk-go/service/waf",
"revision": "e7849863adae563900a3474ee6feed65471ab070",
"revisionTime": "2016-11-30T19:57:18Z",
"version": "=v1.5.12",
"versionExact": "v1.5.12"
"revision": "918c42e2bcdb277aa821401c906e88254501bdf4",
"revisionTime": "2016-12-01T20:26:07Z",
"version": "=v1.5.13",
"versionExact": "v1.5.13"
},
{
"checksumSHA1": "nqw2Qn5xUklssHTubS5HDvEL9L4=",