diff --git a/vendor/github.com/aws/aws-sdk-go/aws/version.go b/vendor/github.com/aws/aws-sdk-go/aws/version.go index 68002110547e..d9df591afa3f 100644 --- a/vendor/github.com/aws/aws-sdk-go/aws/version.go +++ b/vendor/github.com/aws/aws-sdk-go/aws/version.go @@ -5,4 +5,4 @@ package aws const SDKName = "aws-sdk-go" // SDKVersion is the version of this SDK -const SDKVersion = "1.13.20" +const SDKVersion = "1.13.21" diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/api.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/api.go index 43abb412355a..bbb151259a1d 100644 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/api.go +++ b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/api.go @@ -316,6 +316,9 @@ func (c *DynamoDB) BatchWriteItemRequest(input *BatchWriteItemInput) (req *reque // BatchWriteItem request. For example, you cannot put and delete the same // item in the same BatchWriteItem request. // +// * Your request contains at least two items with identical hash and range +// keys (which essentially is two put operations). +// // * There are more than 25 requests in the batch. // // * Any individual item in a batch exceeds 400 KB. @@ -455,11 +458,11 @@ func (c *DynamoDB) CreateBackupRequest(input *CreateBackupInput) (req *request.R // // Returned Error Codes: // * ErrCodeTableNotFoundException "TableNotFoundException" -// A table with the name TableName does not currently exist within the subscriber's -// account. +// A source table with the name TableName does not currently exist within the +// subscriber's account. // // * ErrCodeTableInUseException "TableInUseException" -// A table by that name is either being created or deleted. +// A target table with the specified name is either being created or deleted. // // * ErrCodeContinuousBackupsUnavailableException "ContinuousBackupsUnavailableException" // Backups have not yet been enabled for this table. @@ -473,13 +476,8 @@ func (c *DynamoDB) CreateBackupRequest(input *CreateBackupInput) (req *request.R // is no limit to the number of daily on-demand backups that can be taken. // // Up to 10 simultaneous table operations are allowed per account. These operations -// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, and RestoreTableFromBackup. -// -// For tables with secondary indexes, only one of those tables can be in the -// CREATING state at any point in time. Do not attempt to create more than one -// such table simultaneously. -// -// The total limit of tables in the ACTIVE state is 250. +// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, RestoreTableFromBackup, +// and RestoreTableToPointInTime. // // For tables with secondary indexes, only one of those tables can be in the // CREATING state at any point in time. Do not attempt to create more than one @@ -584,13 +582,8 @@ func (c *DynamoDB) CreateGlobalTableRequest(input *CreateGlobalTableInput) (req // is no limit to the number of daily on-demand backups that can be taken. // // Up to 10 simultaneous table operations are allowed per account. These operations -// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, and RestoreTableFromBackup. -// -// For tables with secondary indexes, only one of those tables can be in the -// CREATING state at any point in time. Do not attempt to create more than one -// such table simultaneously. -// -// The total limit of tables in the ACTIVE state is 250. +// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, RestoreTableFromBackup, +// and RestoreTableToPointInTime. // // For tables with secondary indexes, only one of those tables can be in the // CREATING state at any point in time. Do not attempt to create more than one @@ -605,8 +598,8 @@ func (c *DynamoDB) CreateGlobalTableRequest(input *CreateGlobalTableInput) (req // The specified global table already exists. // // * ErrCodeTableNotFoundException "TableNotFoundException" -// A table with the name TableName does not currently exist within the subscriber's -// account. +// A source table with the name TableName does not currently exist within the +// subscriber's account. // // See also, https://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/CreateGlobalTable func (c *DynamoDB) CreateGlobalTable(input *CreateGlobalTableInput) (*CreateGlobalTableOutput, error) { @@ -708,13 +701,8 @@ func (c *DynamoDB) CreateTableRequest(input *CreateTableInput) (req *request.Req // is no limit to the number of daily on-demand backups that can be taken. // // Up to 10 simultaneous table operations are allowed per account. These operations -// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, and RestoreTableFromBackup. -// -// For tables with secondary indexes, only one of those tables can be in the -// CREATING state at any point in time. Do not attempt to create more than one -// such table simultaneously. -// -// The total limit of tables in the ACTIVE state is 250. +// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, RestoreTableFromBackup, +// and RestoreTableToPointInTime. // // For tables with secondary indexes, only one of those tables can be in the // CREATING state at any point in time. Do not attempt to create more than one @@ -815,13 +803,8 @@ func (c *DynamoDB) DeleteBackupRequest(input *DeleteBackupInput) (req *request.R // is no limit to the number of daily on-demand backups that can be taken. // // Up to 10 simultaneous table operations are allowed per account. These operations -// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, and RestoreTableFromBackup. -// -// For tables with secondary indexes, only one of those tables can be in the -// CREATING state at any point in time. Do not attempt to create more than one -// such table simultaneously. -// -// The total limit of tables in the ACTIVE state is 250. +// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, RestoreTableFromBackup, +// and RestoreTableToPointInTime. // // For tables with secondary indexes, only one of those tables can be in the // CREATING state at any point in time. Do not attempt to create more than one @@ -1050,13 +1033,8 @@ func (c *DynamoDB) DeleteTableRequest(input *DeleteTableInput) (req *request.Req // is no limit to the number of daily on-demand backups that can be taken. // // Up to 10 simultaneous table operations are allowed per account. These operations -// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, and RestoreTableFromBackup. -// -// For tables with secondary indexes, only one of those tables can be in the -// CREATING state at any point in time. Do not attempt to create more than one -// such table simultaneously. -// -// The total limit of tables in the ACTIVE state is 250. +// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, RestoreTableFromBackup, +// and RestoreTableToPointInTime. // // For tables with secondary indexes, only one of those tables can be in the // CREATING state at any point in time. Do not attempt to create more than one @@ -1217,8 +1195,17 @@ func (c *DynamoDB) DescribeContinuousBackupsRequest(input *DescribeContinuousBac // DescribeContinuousBackups API operation for Amazon DynamoDB. // -// Checks the status of the backup restore settings on the specified table. -// If backups are enabled, ContinuousBackupsStatus will bet set to ENABLED. +// Checks the status of continuous backups and point in time recovery on the +// specified table. Continuous backups are ENABLED on all tables at table creation. +// If point in time recovery is enabled, PointInTimeRecoveryStatus will be set +// to ENABLED. +// +// Once continuous backups and point in time recovery are enabled, you can restore +// to any point in time within EarliestRestorableDateTime and LatestRestorableDateTime. +// +// LatestRestorableDateTime is typically 5 minutes before the current time. +// You can restore your table to any point in time during the last 35 days with +// a 1-minute granularity. // // You can call DescribeContinuousBackups at a maximum rate of 10 times per // second. @@ -1232,8 +1219,8 @@ func (c *DynamoDB) DescribeContinuousBackupsRequest(input *DescribeContinuousBac // // Returned Error Codes: // * ErrCodeTableNotFoundException "TableNotFoundException" -// A table with the name TableName does not currently exist within the subscriber's -// account. +// A source table with the name TableName does not currently exist within the +// subscriber's account. // // * ErrCodeInternalServerError "InternalServerError" // An error occurred on the server side. @@ -2519,7 +2506,7 @@ func (c *DynamoDB) RestoreTableFromBackupRequest(input *RestoreTableFromBackupIn // RestoreTableFromBackup API operation for Amazon DynamoDB. // // Creates a new table from an existing backup. Any number of users can execute -// up to 10 concurrent restores in a given account. +// up to 4 concurrent restores (any type of restore) in a given account. // // You can call RestoreTableFromBackup at a maximum rate of 10 times per second. // @@ -2546,10 +2533,10 @@ func (c *DynamoDB) RestoreTableFromBackupRequest(input *RestoreTableFromBackupIn // // Returned Error Codes: // * ErrCodeTableAlreadyExistsException "TableAlreadyExistsException" -// A table with the name already exists. +// A target table with the specified name already exists. // // * ErrCodeTableInUseException "TableInUseException" -// A table by that name is either being created or deleted. +// A target table with the specified name is either being created or deleted. // // * ErrCodeBackupNotFoundException "BackupNotFoundException" // Backup not found for the given BackupARN. @@ -2563,13 +2550,8 @@ func (c *DynamoDB) RestoreTableFromBackupRequest(input *RestoreTableFromBackupIn // is no limit to the number of daily on-demand backups that can be taken. // // Up to 10 simultaneous table operations are allowed per account. These operations -// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, and RestoreTableFromBackup. -// -// For tables with secondary indexes, only one of those tables can be in the -// CREATING state at any point in time. Do not attempt to create more than one -// such table simultaneously. -// -// The total limit of tables in the ACTIVE state is 250. +// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, RestoreTableFromBackup, +// and RestoreTableToPointInTime. // // For tables with secondary indexes, only one of those tables can be in the // CREATING state at any point in time. Do not attempt to create more than one @@ -2602,6 +2584,136 @@ func (c *DynamoDB) RestoreTableFromBackupWithContext(ctx aws.Context, input *Res return out, req.Send() } +const opRestoreTableToPointInTime = "RestoreTableToPointInTime" + +// RestoreTableToPointInTimeRequest generates a "aws/request.Request" representing the +// client's request for the RestoreTableToPointInTime operation. The "output" return +// value will be populated with the request's response once the request complets +// successfuly. +// +// Use "Send" method on the returned Request to send the API call to the service. +// the "output" return value is not valid until after Send returns without error. +// +// See RestoreTableToPointInTime for more information on using the RestoreTableToPointInTime +// API call, and error handling. +// +// This method is useful when you want to inject custom logic or configuration +// into the SDK's request lifecycle. Such as custom headers, or retry logic. +// +// +// // Example sending a request using the RestoreTableToPointInTimeRequest method. +// req, resp := client.RestoreTableToPointInTimeRequest(params) +// +// err := req.Send() +// if err == nil { // resp is now filled +// fmt.Println(resp) +// } +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/RestoreTableToPointInTime +func (c *DynamoDB) RestoreTableToPointInTimeRequest(input *RestoreTableToPointInTimeInput) (req *request.Request, output *RestoreTableToPointInTimeOutput) { + op := &request.Operation{ + Name: opRestoreTableToPointInTime, + HTTPMethod: "POST", + HTTPPath: "/", + } + + if input == nil { + input = &RestoreTableToPointInTimeInput{} + } + + output = &RestoreTableToPointInTimeOutput{} + req = c.newRequest(op, input, output) + return +} + +// RestoreTableToPointInTime API operation for Amazon DynamoDB. +// +// Restores the specified table to the specified point in time within EarliestRestorableDateTime +// and LatestRestorableDateTime. You can restore your table to any point in +// time during the last 35 days with a 1-minute granularity. Any number of users +// can execute up to 4 concurrent restores (any type of restore) in a given +// account. +// +// You must manually set up the following on the restored table: +// +// * Auto scaling policies +// +// * IAM policies +// +// * Cloudwatch metrics and alarms +// +// * Tags +// +// * Stream settings +// +// * Time to Live (TTL) settings +// +// * Point in time recovery settings +// +// 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 Amazon DynamoDB's +// API operation RestoreTableToPointInTime for usage and error information. +// +// Returned Error Codes: +// * ErrCodeTableAlreadyExistsException "TableAlreadyExistsException" +// A target table with the specified name already exists. +// +// * ErrCodeTableNotFoundException "TableNotFoundException" +// A source table with the name TableName does not currently exist within the +// subscriber's account. +// +// * ErrCodeTableInUseException "TableInUseException" +// A target table with the specified name is either being created or deleted. +// +// * ErrCodeLimitExceededException "LimitExceededException" +// Up to 50 CreateBackup operations are allowed per second, per account. There +// is no limit to the number of daily on-demand backups that can be taken. +// +// Up to 10 simultaneous table operations are allowed per account. These operations +// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, RestoreTableFromBackup, +// and RestoreTableToPointInTime. +// +// For tables with secondary indexes, only one of those tables can be in the +// CREATING state at any point in time. Do not attempt to create more than one +// such table simultaneously. +// +// The total limit of tables in the ACTIVE state is 250. +// +// * ErrCodeInvalidRestoreTimeException "InvalidRestoreTimeException" +// An invalid restore time was specified. RestoreDateTime must be between EarliestRestorableDateTime +// and LatestRestorableDateTime. +// +// * ErrCodePointInTimeRecoveryUnavailableException "PointInTimeRecoveryUnavailableException" +// Point in time recovery has not yet been enabled for this source table. +// +// * ErrCodeInternalServerError "InternalServerError" +// An error occurred on the server side. +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/RestoreTableToPointInTime +func (c *DynamoDB) RestoreTableToPointInTime(input *RestoreTableToPointInTimeInput) (*RestoreTableToPointInTimeOutput, error) { + req, out := c.RestoreTableToPointInTimeRequest(input) + return out, req.Send() +} + +// RestoreTableToPointInTimeWithContext is the same as RestoreTableToPointInTime with the addition of +// the ability to pass a context and additional request options. +// +// See RestoreTableToPointInTime for details on how to use this API operation. +// +// The context must be non-nil and will be used for request cancellation. If +// the context is nil a panic will occur. In the future the SDK may create +// sub-contexts for http.Requests. See https://golang.org/pkg/context/ +// for more information on using Contexts. +func (c *DynamoDB) RestoreTableToPointInTimeWithContext(ctx aws.Context, input *RestoreTableToPointInTimeInput, opts ...request.Option) (*RestoreTableToPointInTimeOutput, error) { + req, out := c.RestoreTableToPointInTimeRequest(input) + req.SetContext(ctx) + req.ApplyOptions(opts...) + return out, req.Send() +} + const opScan = "Scan" // ScanRequest generates a "aws/request.Request" representing the @@ -2843,13 +2955,8 @@ func (c *DynamoDB) TagResourceRequest(input *TagResourceInput) (req *request.Req // is no limit to the number of daily on-demand backups that can be taken. // // Up to 10 simultaneous table operations are allowed per account. These operations -// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, and RestoreTableFromBackup. -// -// For tables with secondary indexes, only one of those tables can be in the -// CREATING state at any point in time. Do not attempt to create more than one -// such table simultaneously. -// -// The total limit of tables in the ACTIVE state is 250. +// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, RestoreTableFromBackup, +// and RestoreTableToPointInTime. // // For tables with secondary indexes, only one of those tables can be in the // CREATING state at any point in time. Do not attempt to create more than one @@ -2956,13 +3063,8 @@ func (c *DynamoDB) UntagResourceRequest(input *UntagResourceInput) (req *request // is no limit to the number of daily on-demand backups that can be taken. // // Up to 10 simultaneous table operations are allowed per account. These operations -// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, and RestoreTableFromBackup. -// -// For tables with secondary indexes, only one of those tables can be in the -// CREATING state at any point in time. Do not attempt to create more than one -// such table simultaneously. -// -// The total limit of tables in the ACTIVE state is 250. +// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, RestoreTableFromBackup, +// and RestoreTableToPointInTime. // // For tables with secondary indexes, only one of those tables can be in the // CREATING state at any point in time. Do not attempt to create more than one @@ -3004,6 +3106,103 @@ func (c *DynamoDB) UntagResourceWithContext(ctx aws.Context, input *UntagResourc return out, req.Send() } +const opUpdateContinuousBackups = "UpdateContinuousBackups" + +// UpdateContinuousBackupsRequest generates a "aws/request.Request" representing the +// client's request for the UpdateContinuousBackups operation. The "output" return +// value will be populated with the request's response once the request complets +// successfuly. +// +// Use "Send" method on the returned Request to send the API call to the service. +// the "output" return value is not valid until after Send returns without error. +// +// See UpdateContinuousBackups for more information on using the UpdateContinuousBackups +// API call, and error handling. +// +// This method is useful when you want to inject custom logic or configuration +// into the SDK's request lifecycle. Such as custom headers, or retry logic. +// +// +// // Example sending a request using the UpdateContinuousBackupsRequest method. +// req, resp := client.UpdateContinuousBackupsRequest(params) +// +// err := req.Send() +// if err == nil { // resp is now filled +// fmt.Println(resp) +// } +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateContinuousBackups +func (c *DynamoDB) UpdateContinuousBackupsRequest(input *UpdateContinuousBackupsInput) (req *request.Request, output *UpdateContinuousBackupsOutput) { + op := &request.Operation{ + Name: opUpdateContinuousBackups, + HTTPMethod: "POST", + HTTPPath: "/", + } + + if input == nil { + input = &UpdateContinuousBackupsInput{} + } + + output = &UpdateContinuousBackupsOutput{} + req = c.newRequest(op, input, output) + return +} + +// UpdateContinuousBackups API operation for Amazon DynamoDB. +// +// UpdateContinuousBackups enables or disables point in time recovery for the +// specified table. A successful UpdateContinuousBackups call returns the current +// ContinuousBackupsDescription. Continuous backups are ENABLED on all tables +// at table creation. If point in time recovery is enabled, PointInTimeRecoveryStatus +// will be set to ENABLED. +// +// Once continuous backups and point in time recovery are enabled, you can restore +// to any point in time within EarliestRestorableDateTime and LatestRestorableDateTime. +// +// LatestRestorableDateTime is typically 5 minutes before the current time. +// You can restore your table to any point in time during the last 35 days with +// a 1-minute granularity. +// +// 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 Amazon DynamoDB's +// API operation UpdateContinuousBackups for usage and error information. +// +// Returned Error Codes: +// * ErrCodeTableNotFoundException "TableNotFoundException" +// A source table with the name TableName does not currently exist within the +// subscriber's account. +// +// * ErrCodeContinuousBackupsUnavailableException "ContinuousBackupsUnavailableException" +// Backups have not yet been enabled for this table. +// +// * ErrCodeInternalServerError "InternalServerError" +// An error occurred on the server side. +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateContinuousBackups +func (c *DynamoDB) UpdateContinuousBackups(input *UpdateContinuousBackupsInput) (*UpdateContinuousBackupsOutput, error) { + req, out := c.UpdateContinuousBackupsRequest(input) + return out, req.Send() +} + +// UpdateContinuousBackupsWithContext is the same as UpdateContinuousBackups with the addition of +// the ability to pass a context and additional request options. +// +// See UpdateContinuousBackups for details on how to use this API operation. +// +// The context must be non-nil and will be used for request cancellation. If +// the context is nil a panic will occur. In the future the SDK may create +// sub-contexts for http.Requests. See https://golang.org/pkg/context/ +// for more information on using Contexts. +func (c *DynamoDB) UpdateContinuousBackupsWithContext(ctx aws.Context, input *UpdateContinuousBackupsInput, opts ...request.Option) (*UpdateContinuousBackupsOutput, error) { + req, out := c.UpdateContinuousBackupsRequest(input) + req.SetContext(ctx) + req.ApplyOptions(opts...) + return out, req.Send() +} + const opUpdateGlobalTable = "UpdateGlobalTable" // UpdateGlobalTableRequest generates a "aws/request.Request" representing the @@ -3051,8 +3250,7 @@ func (c *DynamoDB) UpdateGlobalTableRequest(input *UpdateGlobalTableInput) (req // Adds or removes replicas in the specified global table. The global table // must already exist to be able to use this operation. Any replica to be added // must be empty, must have the same name as the global table, must have the -// same key schema, must have DynamoDB Streams enabled, and cannot have any -// local secondary indexes (LSIs). +// same key schema, and must have DynamoDB Streams enabled. // // Although you can use UpdateGlobalTable to add replicas and remove replicas // in a single request, for simplicity we recommend that you issue separate @@ -3079,8 +3277,8 @@ func (c *DynamoDB) UpdateGlobalTableRequest(input *UpdateGlobalTableInput) (req // The specified replica is no longer part of the global table. // // * ErrCodeTableNotFoundException "TableNotFoundException" -// A table with the name TableName does not currently exist within the subscriber's -// account. +// A source table with the name TableName does not currently exist within the +// subscriber's account. // // See also, https://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateGlobalTable func (c *DynamoDB) UpdateGlobalTable(input *UpdateGlobalTableInput) (*UpdateGlobalTableOutput, error) { @@ -3294,13 +3492,8 @@ func (c *DynamoDB) UpdateTableRequest(input *UpdateTableInput) (req *request.Req // is no limit to the number of daily on-demand backups that can be taken. // // Up to 10 simultaneous table operations are allowed per account. These operations -// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, and RestoreTableFromBackup. -// -// For tables with secondary indexes, only one of those tables can be in the -// CREATING state at any point in time. Do not attempt to create more than one -// such table simultaneously. -// -// The total limit of tables in the ACTIVE state is 250. +// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, RestoreTableFromBackup, +// and RestoreTableToPointInTime. // // For tables with secondary indexes, only one of those tables can be in the // CREATING state at any point in time. Do not attempt to create more than one @@ -3428,13 +3621,8 @@ func (c *DynamoDB) UpdateTimeToLiveRequest(input *UpdateTimeToLiveInput) (req *r // is no limit to the number of daily on-demand backups that can be taken. // // Up to 10 simultaneous table operations are allowed per account. These operations -// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, and RestoreTableFromBackup. -// -// For tables with secondary indexes, only one of those tables can be in the -// CREATING state at any point in time. Do not attempt to create more than one -// such table simultaneously. -// -// The total limit of tables in the ACTIVE state is 250. +// include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, RestoreTableFromBackup, +// and RestoreTableToPointInTime. // // For tables with secondary indexes, only one of those tables can be in the // CREATING state at any point in time. Do not attempt to create more than one @@ -4584,8 +4772,8 @@ func (s *ConsumedCapacity) SetTableName(v string) *ConsumedCapacity { return s } -// Represents the backup and restore settings on the table when the backup was -// created. +// Represents the continuous backups and point in time recovery settings on +// the table. type ContinuousBackupsDescription struct { _ struct{} `type:"structure"` @@ -4593,6 +4781,9 @@ type ContinuousBackupsDescription struct { // // ContinuousBackupsStatus is a required field ContinuousBackupsStatus *string `type:"string" required:"true" enum:"ContinuousBackupsStatus"` + + // The description of the point in time recovery settings applied to the table. + PointInTimeRecoveryDescription *PointInTimeRecoveryDescription `type:"structure"` } // String returns the string representation @@ -4611,6 +4802,12 @@ func (s *ContinuousBackupsDescription) SetContinuousBackupsStatus(v string) *Con return s } +// SetPointInTimeRecoveryDescription sets the PointInTimeRecoveryDescription field's value. +func (s *ContinuousBackupsDescription) SetPointInTimeRecoveryDescription(v *PointInTimeRecoveryDescription) *ContinuousBackupsDescription { + s.PointInTimeRecoveryDescription = v + return s +} + type CreateBackupInput struct { _ struct{} `type:"structure"` @@ -5842,8 +6039,8 @@ func (s *DescribeBackupOutput) SetBackupDescription(v *BackupDescription) *Descr type DescribeContinuousBackupsInput struct { _ struct{} `type:"structure"` - // Name of the table for which the customer wants to check the backup and restore - // settings. + // Name of the table for which the customer wants to check the continuous backups + // and point in time recovery settings. // // TableName is a required field TableName *string `min:"3" type:"string" required:"true"` @@ -7943,6 +8140,97 @@ func (s *LocalSecondaryIndexInfo) SetProjection(v *Projection) *LocalSecondaryIn return s } +// The description of the point in time settings applied to the table. +type PointInTimeRecoveryDescription struct { + _ struct{} `type:"structure"` + + // Specifies the earliest point in time you can restore your table to. It is + // equal to the maximum of point in time recovery enabled time and CurrentTime + // - PointInTimeRecoveryPeriod. + EarliestRestorableDateTime *time.Time `type:"timestamp" timestampFormat:"unix"` + + // LatestRestorableDateTime is 5 minutes from now and there is a +/- 1 minute + // fuzziness on the restore times. + LatestRestorableDateTime *time.Time `type:"timestamp" timestampFormat:"unix"` + + // The current state of point in time recovery: + // + // * ENABLING - Point in time recovery is being enabled. + // + // * ENABLED - Point in time recovery is enabled. + // + // * DISABLED - Point in time recovery is disabled. + PointInTimeRecoveryStatus *string `type:"string" enum:"PointInTimeRecoveryStatus"` +} + +// String returns the string representation +func (s PointInTimeRecoveryDescription) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s PointInTimeRecoveryDescription) GoString() string { + return s.String() +} + +// SetEarliestRestorableDateTime sets the EarliestRestorableDateTime field's value. +func (s *PointInTimeRecoveryDescription) SetEarliestRestorableDateTime(v time.Time) *PointInTimeRecoveryDescription { + s.EarliestRestorableDateTime = &v + return s +} + +// SetLatestRestorableDateTime sets the LatestRestorableDateTime field's value. +func (s *PointInTimeRecoveryDescription) SetLatestRestorableDateTime(v time.Time) *PointInTimeRecoveryDescription { + s.LatestRestorableDateTime = &v + return s +} + +// SetPointInTimeRecoveryStatus sets the PointInTimeRecoveryStatus field's value. +func (s *PointInTimeRecoveryDescription) SetPointInTimeRecoveryStatus(v string) *PointInTimeRecoveryDescription { + s.PointInTimeRecoveryStatus = &v + return s +} + +// Represents the settings used to enable point in time recovery. +type PointInTimeRecoverySpecification struct { + _ struct{} `type:"structure"` + + // Indicates whether point in time recovery is enabled (true) or disabled (false) + // on the table. + // + // PointInTimeRecoveryEnabled is a required field + PointInTimeRecoveryEnabled *bool `type:"boolean" required:"true"` +} + +// String returns the string representation +func (s PointInTimeRecoverySpecification) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s PointInTimeRecoverySpecification) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *PointInTimeRecoverySpecification) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "PointInTimeRecoverySpecification"} + if s.PointInTimeRecoveryEnabled == nil { + invalidParams.Add(request.NewErrParamRequired("PointInTimeRecoveryEnabled")) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetPointInTimeRecoveryEnabled sets the PointInTimeRecoveryEnabled field's value. +func (s *PointInTimeRecoverySpecification) SetPointInTimeRecoveryEnabled(v bool) *PointInTimeRecoverySpecification { + s.PointInTimeRecoveryEnabled = &v + return s +} + // Represents attributes that are copied (projected) from the table into an // index. These are in addition to the primary key attributes and index key // attributes, which are automatically projected. @@ -8717,9 +9005,8 @@ type QueryInput struct { // // Items with the same partition key value are stored in sorted order by sort // key. If the sort key data type is Number, the results are stored in numeric - // order. For type String, the results are stored in order of ASCII character - // code values. For type Binary, DynamoDB treats each byte of the binary data - // as unsigned. + // order. For type String, the results are stored in order of UTF-8 bytes. For + // type Binary, DynamoDB treats each byte of the binary data as unsigned. // // If ScanIndexForward is true, DynamoDB returns the results in the order in // which they are stored (by sort key value). This is the default behavior. @@ -9267,6 +9554,106 @@ func (s *RestoreTableFromBackupOutput) SetTableDescription(v *TableDescription) return s } +type RestoreTableToPointInTimeInput struct { + _ struct{} `type:"structure"` + + // Time in the past to restore the table to. + RestoreDateTime *time.Time `type:"timestamp" timestampFormat:"unix"` + + // Name of the source table that is being restored. + // + // SourceTableName is a required field + SourceTableName *string `min:"3" type:"string" required:"true"` + + // The name of the new table to which it must be restored to. + // + // TargetTableName is a required field + TargetTableName *string `min:"3" type:"string" required:"true"` + + // Restore the table to the latest possible time. LatestRestorableDateTime is + // typically 5 minutes before the current time. + UseLatestRestorableTime *bool `type:"boolean"` +} + +// String returns the string representation +func (s RestoreTableToPointInTimeInput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s RestoreTableToPointInTimeInput) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *RestoreTableToPointInTimeInput) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "RestoreTableToPointInTimeInput"} + if s.SourceTableName == nil { + invalidParams.Add(request.NewErrParamRequired("SourceTableName")) + } + if s.SourceTableName != nil && len(*s.SourceTableName) < 3 { + invalidParams.Add(request.NewErrParamMinLen("SourceTableName", 3)) + } + if s.TargetTableName == nil { + invalidParams.Add(request.NewErrParamRequired("TargetTableName")) + } + if s.TargetTableName != nil && len(*s.TargetTableName) < 3 { + invalidParams.Add(request.NewErrParamMinLen("TargetTableName", 3)) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetRestoreDateTime sets the RestoreDateTime field's value. +func (s *RestoreTableToPointInTimeInput) SetRestoreDateTime(v time.Time) *RestoreTableToPointInTimeInput { + s.RestoreDateTime = &v + return s +} + +// SetSourceTableName sets the SourceTableName field's value. +func (s *RestoreTableToPointInTimeInput) SetSourceTableName(v string) *RestoreTableToPointInTimeInput { + s.SourceTableName = &v + return s +} + +// SetTargetTableName sets the TargetTableName field's value. +func (s *RestoreTableToPointInTimeInput) SetTargetTableName(v string) *RestoreTableToPointInTimeInput { + s.TargetTableName = &v + return s +} + +// SetUseLatestRestorableTime sets the UseLatestRestorableTime field's value. +func (s *RestoreTableToPointInTimeInput) SetUseLatestRestorableTime(v bool) *RestoreTableToPointInTimeInput { + s.UseLatestRestorableTime = &v + return s +} + +type RestoreTableToPointInTimeOutput struct { + _ struct{} `type:"structure"` + + // Represents the properties of a table. + TableDescription *TableDescription `type:"structure"` +} + +// String returns the string representation +func (s RestoreTableToPointInTimeOutput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s RestoreTableToPointInTimeOutput) GoString() string { + return s.String() +} + +// SetTableDescription sets the TableDescription field's value. +func (s *RestoreTableToPointInTimeOutput) SetTableDescription(v *TableDescription) *RestoreTableToPointInTimeOutput { + s.TableDescription = v + return s +} + // The description of the server-side encryption status on the specified table. type SSEDescription struct { _ struct{} `type:"structure"` @@ -10656,6 +11043,90 @@ func (s UntagResourceOutput) GoString() string { return s.String() } +type UpdateContinuousBackupsInput struct { + _ struct{} `type:"structure"` + + // Represents the settings used to enable point in time recovery. + // + // PointInTimeRecoverySpecification is a required field + PointInTimeRecoverySpecification *PointInTimeRecoverySpecification `type:"structure" required:"true"` + + // The name of the table. + // + // TableName is a required field + TableName *string `min:"3" type:"string" required:"true"` +} + +// String returns the string representation +func (s UpdateContinuousBackupsInput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s UpdateContinuousBackupsInput) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *UpdateContinuousBackupsInput) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "UpdateContinuousBackupsInput"} + if s.PointInTimeRecoverySpecification == nil { + invalidParams.Add(request.NewErrParamRequired("PointInTimeRecoverySpecification")) + } + if s.TableName == nil { + invalidParams.Add(request.NewErrParamRequired("TableName")) + } + if s.TableName != nil && len(*s.TableName) < 3 { + invalidParams.Add(request.NewErrParamMinLen("TableName", 3)) + } + if s.PointInTimeRecoverySpecification != nil { + if err := s.PointInTimeRecoverySpecification.Validate(); err != nil { + invalidParams.AddNested("PointInTimeRecoverySpecification", err.(request.ErrInvalidParams)) + } + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetPointInTimeRecoverySpecification sets the PointInTimeRecoverySpecification field's value. +func (s *UpdateContinuousBackupsInput) SetPointInTimeRecoverySpecification(v *PointInTimeRecoverySpecification) *UpdateContinuousBackupsInput { + s.PointInTimeRecoverySpecification = v + return s +} + +// SetTableName sets the TableName field's value. +func (s *UpdateContinuousBackupsInput) SetTableName(v string) *UpdateContinuousBackupsInput { + s.TableName = &v + return s +} + +type UpdateContinuousBackupsOutput struct { + _ struct{} `type:"structure"` + + // Represents the continuous backups and point in time recovery settings on + // the table. + ContinuousBackupsDescription *ContinuousBackupsDescription `type:"structure"` +} + +// String returns the string representation +func (s UpdateContinuousBackupsOutput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s UpdateContinuousBackupsOutput) GoString() string { + return s.String() +} + +// SetContinuousBackupsDescription sets the ContinuousBackupsDescription field's value. +func (s *UpdateContinuousBackupsOutput) SetContinuousBackupsDescription(v *ContinuousBackupsDescription) *UpdateContinuousBackupsOutput { + s.ContinuousBackupsDescription = v + return s +} + // Represents the new provisioned throughput settings to be applied to a global // secondary index. type UpdateGlobalSecondaryIndexAction struct { @@ -11597,6 +12068,14 @@ const ( KeyTypeRange = "RANGE" ) +const ( + // PointInTimeRecoveryStatusEnabled is a PointInTimeRecoveryStatus enum value + PointInTimeRecoveryStatusEnabled = "ENABLED" + + // PointInTimeRecoveryStatusDisabled is a PointInTimeRecoveryStatus enum value + PointInTimeRecoveryStatusDisabled = "DISABLED" +) + const ( // ProjectionTypeAll is a ProjectionType enum value ProjectionTypeAll = "ALL" diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/errors.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/errors.go index 4f898d967371..05b8470d2eed 100644 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/errors.go +++ b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/errors.go @@ -47,6 +47,13 @@ const ( // An error occurred on the server side. ErrCodeInternalServerError = "InternalServerError" + // ErrCodeInvalidRestoreTimeException for service response error code + // "InvalidRestoreTimeException". + // + // An invalid restore time was specified. RestoreDateTime must be between EarliestRestorableDateTime + // and LatestRestorableDateTime. + ErrCodeInvalidRestoreTimeException = "InvalidRestoreTimeException" + // ErrCodeItemCollectionSizeLimitExceededException for service response error code // "ItemCollectionSizeLimitExceededException". // @@ -61,13 +68,8 @@ const ( // is no limit to the number of daily on-demand backups that can be taken. // // Up to 10 simultaneous table operations are allowed per account. These operations - // include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, and RestoreTableFromBackup. - // - // For tables with secondary indexes, only one of those tables can be in the - // CREATING state at any point in time. Do not attempt to create more than one - // such table simultaneously. - // - // The total limit of tables in the ACTIVE state is 250. + // include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, RestoreTableFromBackup, + // and RestoreTableToPointInTime. // // For tables with secondary indexes, only one of those tables can be in the // CREATING state at any point in time. Do not attempt to create more than one @@ -76,6 +78,12 @@ const ( // The total limit of tables in the ACTIVE state is 250. ErrCodeLimitExceededException = "LimitExceededException" + // ErrCodePointInTimeRecoveryUnavailableException for service response error code + // "PointInTimeRecoveryUnavailableException". + // + // Point in time recovery has not yet been enabled for this source table. + ErrCodePointInTimeRecoveryUnavailableException = "PointInTimeRecoveryUnavailableException" + // ErrCodeProvisionedThroughputExceededException for service response error code // "ProvisionedThroughputExceededException". // @@ -117,19 +125,19 @@ const ( // ErrCodeTableAlreadyExistsException for service response error code // "TableAlreadyExistsException". // - // A table with the name already exists. + // A target table with the specified name already exists. ErrCodeTableAlreadyExistsException = "TableAlreadyExistsException" // ErrCodeTableInUseException for service response error code // "TableInUseException". // - // A table by that name is either being created or deleted. + // A target table with the specified name is either being created or deleted. ErrCodeTableInUseException = "TableInUseException" // ErrCodeTableNotFoundException for service response error code // "TableNotFoundException". // - // A table with the name TableName does not currently exist within the subscriber's - // account. + // A source table with the name TableName does not currently exist within the + // subscriber's account. ErrCodeTableNotFoundException = "TableNotFoundException" ) diff --git a/vendor/vendor.json b/vendor/vendor.json index 14828416e2f7..55f617079a88 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -39,884 +39,884 @@ "revisionTime": "2017-07-27T15:54:43Z" }, { - "checksumSHA1": "oS1f9+6Y4byjgyIKEpnzkxYU1MY=", + "checksumSHA1": "y1bmVkrw6lKwgq8z+S3GzO1F5JE=", "path": "github.com/aws/aws-sdk-go/aws", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "DtuTqKH29YnLjrIJkRYX0HQtXY0=", "path": "github.com/aws/aws-sdk-go/aws/arn", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "Y9W+4GimK4Fuxq+vyIskVYFRnX4=", "path": "github.com/aws/aws-sdk-go/aws/awserr", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "yyYr41HZ1Aq0hWc3J5ijXwYEcac=", "path": "github.com/aws/aws-sdk-go/aws/awsutil", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "hicPtITUionsA+dgs1SpsZUkQu4=", "path": "github.com/aws/aws-sdk-go/aws/client", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "ieAJ+Cvp/PKv1LpUEnUXpc3OI6E=", "path": "github.com/aws/aws-sdk-go/aws/client/metadata", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "vVSUnICaD9IaBQisCfw0n8zLwig=", "path": "github.com/aws/aws-sdk-go/aws/corehandlers", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "Y+cPwQL0dZMyqp3wI+KJWmA9KQ8=", "path": "github.com/aws/aws-sdk-go/aws/credentials", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "u3GOAJLmdvbuNUeUEcZSEAOeL/0=", "path": "github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "NUJUTWlc1sV8b7WjfiYc4JZbXl0=", "path": "github.com/aws/aws-sdk-go/aws/credentials/endpointcreds", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "JEYqmF83O5n5bHkupAzA6STm0no=", "path": "github.com/aws/aws-sdk-go/aws/credentials/stscreds", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "HogDW/Wu6ZKTDrQ2HSzG8/vj9Ag=", "path": "github.com/aws/aws-sdk-go/aws/defaults", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "pDnK93CqjQ4ROSW8Y/RuHXjv52M=", "path": "github.com/aws/aws-sdk-go/aws/ec2metadata", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "taM7fdw8T0L8klF96JgAHvKobIw=", "path": "github.com/aws/aws-sdk-go/aws/endpoints", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "xXfBg4kOE6+Z4sABLqdR49OlSNA=", "path": "github.com/aws/aws-sdk-go/aws/request", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "J66FLqo++F1PXLUU8XQqYaageSc=", "path": "github.com/aws/aws-sdk-go/aws/session", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "BqDC+Sxo3hrC6WYvwx1U4OObaT4=", "path": "github.com/aws/aws-sdk-go/aws/signer/v4", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "wjxQlU1PYxrDRFoL1Vek8Wch7jk=", "path": "github.com/aws/aws-sdk-go/internal/sdkio", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "MYLldFRnsZh21TfCkgkXCT3maPU=", "path": "github.com/aws/aws-sdk-go/internal/sdkrand", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "04ypv4x12l4q0TksA1zEVsmgpvw=", "path": "github.com/aws/aws-sdk-go/internal/shareddefaults", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "NStHCXEvYqG72GknZyv1jaKaeH0=", "path": "github.com/aws/aws-sdk-go/private/protocol", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "GQuRJY72iGQrufDqIaB50zG27u0=", "path": "github.com/aws/aws-sdk-go/private/protocol/ec2query", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "yHfT5DTbeCLs4NE2Rgnqrhe15ls=", "path": "github.com/aws/aws-sdk-go/private/protocol/json/jsonutil", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "R00RL5jJXRYq1iiK1+PGvMfvXyM=", "path": "github.com/aws/aws-sdk-go/private/protocol/jsonrpc", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "SBBVYdLcocjdPzMWgDuR8vcOfDQ=", "path": "github.com/aws/aws-sdk-go/private/protocol/query", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "9V1PvtFQ9MObZTc3sa86WcuOtOU=", "path": "github.com/aws/aws-sdk-go/private/protocol/query/queryutil", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "pkeoOfZpHRvFG/AOZeTf0lwtsFg=", "path": "github.com/aws/aws-sdk-go/private/protocol/rest", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "Rpu8KBtHZgvhkwHxUfaky+qW+G4=", "path": "github.com/aws/aws-sdk-go/private/protocol/restjson", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "ODo+ko8D6unAxZuN1jGzMcN4QCc=", "path": "github.com/aws/aws-sdk-go/private/protocol/restxml", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "0qYPUga28aQVkxZgBR3Z86AbGUQ=", "path": "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "F6mth+G7dXN1GI+nktaGo8Lx8aE=", "path": "github.com/aws/aws-sdk-go/private/signer/v2", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "Ih4il2OyFyaSuoMv6hhvPUN8Gn4=", "path": "github.com/aws/aws-sdk-go/service/acm", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "DPl/OkvEUjrd+XKqX73l6nUNw3U=", "path": "github.com/aws/aws-sdk-go/service/apigateway", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "tsOPYVkOiuYDJTziSRkP7p1TL70=", "path": "github.com/aws/aws-sdk-go/service/applicationautoscaling", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "lyjaWzlpAp6CacdNZTe351CRp5c=", "path": "github.com/aws/aws-sdk-go/service/appsync", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "wrOVdI/6ZTZ/H0Kxjh3bBEZtVzk=", "path": "github.com/aws/aws-sdk-go/service/athena", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "GhemRVzpnrN6HAgm1NdAgESY8CQ=", "path": "github.com/aws/aws-sdk-go/service/autoscaling", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "P5gDOoqIdVjMU77e5Nhy48QLpS4=", "path": "github.com/aws/aws-sdk-go/service/batch", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "BrC9UCeefniH5UN7x0PFr8A9l6Y=", "path": "github.com/aws/aws-sdk-go/service/budgets", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "EoaTzMilW+OIi5eETJUpd+giyTc=", "path": "github.com/aws/aws-sdk-go/service/cloud9", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "yuFNzmUIWppfji/Xx6Aao0EE4cY=", "path": "github.com/aws/aws-sdk-go/service/cloudformation", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "0nPnGWlegQG7bn/iIIfjJFoljyU=", "path": "github.com/aws/aws-sdk-go/service/cloudfront", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "XJAlmauOOHsHEUW7n0XO/eEpcWI=", "path": "github.com/aws/aws-sdk-go/service/cloudsearch", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "VTc9UOMqIwuhWJ6oGQDsMkTW09I=", "path": "github.com/aws/aws-sdk-go/service/cloudtrail", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "ItXljM1vG/0goVleodRgbfYgyxQ=", "path": "github.com/aws/aws-sdk-go/service/cloudwatch", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "x25KEvGmuQ0Uuoduo/CVe37ELC8=", "path": "github.com/aws/aws-sdk-go/service/cloudwatchevents", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "HHct8eQygkIJ+vrQpKhB0IEDymQ=", "path": "github.com/aws/aws-sdk-go/service/cloudwatchlogs", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "LHcxaQJ77WMlug2cnyXlTzJJUSo=", "path": "github.com/aws/aws-sdk-go/service/codebuild", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "AQwpqKKc52nnI5F50K73Zx5luoQ=", "path": "github.com/aws/aws-sdk-go/service/codecommit", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "wvXGTyWPjtgC4OjXb80IxYdpqmE=", "path": "github.com/aws/aws-sdk-go/service/codedeploy", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "V1Y05qfjN4xOCy+GnPWSCqIeZb4=", "path": "github.com/aws/aws-sdk-go/service/codepipeline", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "Ju8efcqcIgggB7N8io/as9ERVdc=", "path": "github.com/aws/aws-sdk-go/service/cognitoidentity", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "jeCyZm4iJmOLbVOe/70QNkII+qU=", "path": "github.com/aws/aws-sdk-go/service/cognitoidentityprovider", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "OhbpZoCd+Vg3pLOEE0MVH9T22eY=", "path": "github.com/aws/aws-sdk-go/service/configservice", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "45sgs1urdRiXDb35iuAhQPzl0e4=", "path": "github.com/aws/aws-sdk-go/service/databasemigrationservice", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "bu1R1eKCK2fc5+hMcXmagr3iIik=", "path": "github.com/aws/aws-sdk-go/service/dax", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "EaEfUc3nt1sS/cdfSYGq+JtSVKs=", "path": "github.com/aws/aws-sdk-go/service/devicefarm", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "LRdh5oXUe2yURIk5FDH6ceEZGMo=", "path": "github.com/aws/aws-sdk-go/service/directconnect", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "a7itHIwtyXtOGQ0KsiefmsHgu4s=", "path": "github.com/aws/aws-sdk-go/service/directoryservice", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { - "checksumSHA1": "8JiVrxMjFSdBOfVWCy1QU+JzB08=", + "checksumSHA1": "D93YWdEE2D9HtggwUKUNmV7J86E=", "path": "github.com/aws/aws-sdk-go/service/dynamodb", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "SOmBkudpfGbt3Pb3I1bzuXV9FvQ=", "path": "github.com/aws/aws-sdk-go/service/ec2", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "PcnSiFF2p2xOsvITrsglyWp20YA=", "path": "github.com/aws/aws-sdk-go/service/ecr", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "VRx8MtqfED2uZVOi6ldb5P145TI=", "path": "github.com/aws/aws-sdk-go/service/ecs", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "4XmkiujbDA68x39KGgURR1+uPiQ=", "path": "github.com/aws/aws-sdk-go/service/efs", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "o73xT1zFo3C+giQwKcRj02OAZhM=", "path": "github.com/aws/aws-sdk-go/service/elasticache", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "C6OWsuCjBYnqjR5PwDFEA8l1hWg=", "path": "github.com/aws/aws-sdk-go/service/elasticbeanstalk", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "VYGtTaSiajfKOVTbi9/SNmbiIac=", "path": "github.com/aws/aws-sdk-go/service/elasticsearchservice", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "SZ7yLDZ6RvMhpWe0Goyem64kgyA=", "path": "github.com/aws/aws-sdk-go/service/elastictranscoder", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "iRI32eUYQfumh0LybzZ+5iWV3jE=", "path": "github.com/aws/aws-sdk-go/service/elb", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "ufCsoZUQK13j8Y+m25yxhC2XteQ=", "path": "github.com/aws/aws-sdk-go/service/elbv2", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "5x77vwxya74Qu5YEq75/lhyYkqY=", "path": "github.com/aws/aws-sdk-go/service/emr", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "t7BmfpJqmQ7Y0EYcj/CR9Aup9go=", "path": "github.com/aws/aws-sdk-go/service/firehose", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "h37wXo80exgME9QqHkeLTyG88ZM=", "path": "github.com/aws/aws-sdk-go/service/gamelift", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "20HMsQ2tH47zknjFIUQLi/ZOBvc=", "path": "github.com/aws/aws-sdk-go/service/glacier", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "K1s4cEA/LcK+NAZAFUDOr/dW9IY=", "path": "github.com/aws/aws-sdk-go/service/glue", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "tU7rdC0LAUOKNp2uERUXi3hU1sQ=", "path": "github.com/aws/aws-sdk-go/service/guardduty", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "I8CWKTI9BLrIF9ZKf6SpWhG+LXM=", "path": "github.com/aws/aws-sdk-go/service/iam", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "45gdBZuM7PWLQzWuBasytvZZpK0=", "path": "github.com/aws/aws-sdk-go/service/inspector", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "skj7upwPc4zfJbYT+iPY+cmumG0=", "path": "github.com/aws/aws-sdk-go/service/iot", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "DfzNze8B3ME2tV3TtXP7eQXUjD0=", "path": "github.com/aws/aws-sdk-go/service/kinesis", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "Vqq049R2eveVD15emT9vKTyBsIg=", "path": "github.com/aws/aws-sdk-go/service/kms", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "lAgaKbwpyflY7+t4V3EeH18RwgA=", "path": "github.com/aws/aws-sdk-go/service/lambda", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "shckWClBSciJH+cFYCY5kDCbBXI=", "path": "github.com/aws/aws-sdk-go/service/lexmodelbuildingservice", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "2dy15/1bnS80cwKZiwnEai1d7O8=", "path": "github.com/aws/aws-sdk-go/service/lightsail", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "998zv0rs9SBCd9EoAnIi9cKv7uo=", "path": "github.com/aws/aws-sdk-go/service/mediaconvert", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "/Oo64hSOdIKbN4dmZ7EAQRfr12w=", "path": "github.com/aws/aws-sdk-go/service/medialive", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "mzoPurfrAAB102onq4FPlwZ5Bec=", "path": "github.com/aws/aws-sdk-go/service/mediapackage", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "yXPMyEsghtSFxu9AbiTFCzisGrQ=", "path": "github.com/aws/aws-sdk-go/service/mediastore", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "wU7VITDzy1ubXo+zrG4HNyl5GJI=", "path": "github.com/aws/aws-sdk-go/service/mediastoredata", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "kMMVqLsxKIzBQeDyWJ0N2U/PKLc=", "path": "github.com/aws/aws-sdk-go/service/mq", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "QuOSKqV8nFvvzN4wcsToltMFI1Y=", "path": "github.com/aws/aws-sdk-go/service/opsworks", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "vSNXu8VAbPuFoTTjtVEpldKDZHA=", "path": "github.com/aws/aws-sdk-go/service/organizations", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "g5UtpGido/A6wsB7pDwY+RQ3Ha8=", "path": "github.com/aws/aws-sdk-go/service/rds", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "/F1EdnLahy5V5+EjvRQ3C0JhIyw=", "path": "github.com/aws/aws-sdk-go/service/redshift", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "p2x3SXLzi1PXnyMpPUJUntpS1hQ=", "path": "github.com/aws/aws-sdk-go/service/route53", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "/MR2uoycqymJLdO3Bu1pTkZCpDY=", "path": "github.com/aws/aws-sdk-go/service/s3", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "XSHs3VHLi/mXGDN0zLO/NNCVpw4=", "path": "github.com/aws/aws-sdk-go/service/sagemaker", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "JrQMIue45k6Nk738T347pe9X0c0=", "path": "github.com/aws/aws-sdk-go/service/servicecatalog", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "fmnQo2GajqI9eEn6tcEGiJ9A66E=", "path": "github.com/aws/aws-sdk-go/service/servicediscovery", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "j+R3E5MeBM87zbLVQhcuqlHsxes=", "path": "github.com/aws/aws-sdk-go/service/ses", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "u3AMeFxtHGtiJCxDeIm4dAwzBIc=", "path": "github.com/aws/aws-sdk-go/service/sfn", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "B3CgAFSREebpsFoFOo4vrQ6u04w=", "path": "github.com/aws/aws-sdk-go/service/simpledb", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "9Qj8yLl67q9uxBUCc0PT20YiP1M=", "path": "github.com/aws/aws-sdk-go/service/sns", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "XmEJe50M8MddNEkwbZoC+YvRjgg=", "path": "github.com/aws/aws-sdk-go/service/sqs", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "ULmsQAt5z5ZxGHZC/r7enBs1HvM=", "path": "github.com/aws/aws-sdk-go/service/ssm", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "tH1Pzc7jUUGJv47Cy6uuWl/86bU=", "path": "github.com/aws/aws-sdk-go/service/sts", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "Uw4pOUxSMbx4xBHUcOUkNhtnywE=", "path": "github.com/aws/aws-sdk-go/service/swf", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "dBDZ2w/7ZEdk2UZ6PWFmk/cGSPw=", "path": "github.com/aws/aws-sdk-go/service/waf", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "hOobCqlfwCl/iPGetELNIDsns1U=", "path": "github.com/aws/aws-sdk-go/service/wafregional", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "FVK4fHBkjOIaCRIY4DleqSKtZKs=", "path": "github.com/aws/aws-sdk-go/service/workspaces", - "revision": "c8c4e0c0514d87f930c1342fef390db5329928b7", - "revisionTime": "2018-03-23T20:51:09Z", - "version": "v1.13.20", - "versionExact": "v1.13.20" + "revision": "fb28e64a158b01377883badcc176216ac0fde3dd", + "revisionTime": "2018-03-26T21:59:32Z", + "version": "v1.13.21", + "versionExact": "v1.13.21" }, { "checksumSHA1": "usT4LCSQItkFvFOQT7cBlkCuGaE=",