provider/aws: Bump SDK package version to 1.2.7 (#7799)

This commit is contained in:
Paul Stack 2016-07-25 11:47:44 +01:00 committed by Radek Simko
parent afeb3f16a9
commit 3c63453e2c
4 changed files with 562 additions and 407 deletions

View File

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

View File

@ -1606,14 +1606,14 @@ func (s ContinueUpdateRollbackOutput) GoString() string {
type CreateChangeSetInput struct {
_ struct{} `type:"structure"`
// A list of capabilities that you must specify before AWS CloudFormation can
// update certain stacks. Some stack templates might include resources that
// can affect permissions in your AWS account, for example, by creating new
// AWS Identity and Access Management (IAM) users. For those stacks, you must
// explicitly acknowledge their capabilities by specifying this parameter.
// A list of values that you must specify before AWS CloudFormation can update
// certain stacks. Some stack templates might include resources that can affect
// permissions in your AWS account, for example, by creating new AWS Identity
// and Access Management (IAM) users. For those stacks, you must explicitly
// acknowledge their capabilities by specifying this parameter.
//
// Currently, the only valid value is CAPABILITY_IAM, which is required for
// the following resources: AWS::IAM::AccessKey (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html),
// The only valid values are CAPABILITY_IAM and CAPABILITY_NAMED_IAM. The following
// resources require you to specify this parameter: AWS::IAM::AccessKey (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html),
// AWS::IAM::Group (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html),
// AWS::IAM::InstanceProfile (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html),
// AWS::IAM::Policy (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html),
@ -1622,8 +1622,14 @@ type CreateChangeSetInput struct {
// and AWS::IAM::UserToGroupAddition (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html).
// If your stack template contains these resources, we recommend that you review
// all permissions associated with them and edit their permissions if necessary.
// If your template contains any of the listed resources and you don't specify
// this parameter, this action returns an InsufficientCapabilities error.
//
// If you have IAM resources, you can specify either capability. If you have
// IAM resources with custom names, you must specify CAPABILITY_NAMED_IAM. If
// you don't specify this parameter, this action returns an InsufficientCapabilities
// error.
//
// For more information, see Acknowledging IAM Resources in AWS CloudFormation
// Templates (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities).
Capabilities []*string `type:"list"`
// The name of the change set. The name must be unique among all change sets
@ -1763,14 +1769,14 @@ func (s CreateChangeSetOutput) GoString() string {
type CreateStackInput struct {
_ struct{} `type:"structure"`
// A list of capabilities that you must specify before AWS CloudFormation can
// create certain stacks. Some stack templates might include resources that
// can affect permissions in your AWS account, for example, by creating new
// AWS Identity and Access Management (IAM) users. For those stacks, you must
// explicitly acknowledge their capabilities by specifying this parameter.
// A list of values that you must specify before AWS CloudFormation can create
// certain stacks. Some stack templates might include resources that can affect
// permissions in your AWS account, for example, by creating new AWS Identity
// and Access Management (IAM) users. For those stacks, you must explicitly
// acknowledge their capabilities by specifying this parameter.
//
// Currently, the only valid value is CAPABILITY_IAM, which is required for
// the following resources: AWS::IAM::AccessKey (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html),
// The only valid values are CAPABILITY_IAM and CAPABILITY_NAMED_IAM. The following
// resources require you to specify this parameter: AWS::IAM::AccessKey (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html),
// AWS::IAM::Group (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html),
// AWS::IAM::InstanceProfile (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html),
// AWS::IAM::Policy (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html),
@ -1779,8 +1785,14 @@ type CreateStackInput struct {
// and AWS::IAM::UserToGroupAddition (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html).
// If your stack template contains these resources, we recommend that you review
// all permissions associated with them and edit their permissions if necessary.
// If your template contains any of the listed resources and you don't specify
// this parameter, this action returns an InsufficientCapabilities error.
//
// If you have IAM resources, you can specify either capability. If you have
// IAM resources with custom names, you must specify CAPABILITY_NAMED_IAM. If
// you don't specify this parameter, this action returns an InsufficientCapabilities
// error.
//
// For more information, see Acknowledging IAM Resources in AWS CloudFormation
// Templates (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities).
Capabilities []*string `type:"list"`
// Set to true to disable rollback of the stack if stack creation failed. You
@ -2778,11 +2790,14 @@ func (s *GetTemplateSummaryInput) Validate() error {
type GetTemplateSummaryOutput struct {
_ struct{} `type:"structure"`
// The capabilities found within the template. Currently, AWS CloudFormation
// supports only the CAPABILITY_IAM capability. If your template contains IAM
// resources, you must specify the CAPABILITY_IAM value for this parameter when
// you use the CreateStack or UpdateStack actions with your template; otherwise,
// those actions return an InsufficientCapabilities error.
// The capabilities found within the template. If your template contains IAM
// resources, you must specify the CAPABILITY_IAM or CAPABILITY_NAMED_IAM value
// for this parameter when you use the CreateStack or UpdateStack actions with
// your template; otherwise, those actions return an InsufficientCapabilities
// error.
//
// For more information, see Acknowledging IAM Resources in AWS CloudFormation
// Templates (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities).
Capabilities []*string `type:"list"`
// The list of resources that generated the values in the Capabilities response
@ -3744,14 +3759,14 @@ func (s TemplateParameter) GoString() string {
type UpdateStackInput struct {
_ struct{} `type:"structure"`
// A list of capabilities that you must specify before AWS CloudFormation can
// update certain stacks. Some stack templates might include resources that
// can affect permissions in your AWS account, for example, by creating new
// AWS Identity and Access Management (IAM) users. For those stacks, you must
// explicitly acknowledge their capabilities by specifying this parameter.
// A list of values that you must specify before AWS CloudFormation can update
// certain stacks. Some stack templates might include resources that can affect
// permissions in your AWS account, for example, by creating new AWS Identity
// and Access Management (IAM) users. For those stacks, you must explicitly
// acknowledge their capabilities by specifying this parameter.
//
// Currently, the only valid value is CAPABILITY_IAM, which is required for
// the following resources: AWS::IAM::AccessKey (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html),
// The only valid values are CAPABILITY_IAM and CAPABILITY_NAMED_IAM. The following
// resources require you to specify this parameter: AWS::IAM::AccessKey (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html),
// AWS::IAM::Group (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html),
// AWS::IAM::InstanceProfile (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html),
// AWS::IAM::Policy (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html),
@ -3760,8 +3775,14 @@ type UpdateStackInput struct {
// and AWS::IAM::UserToGroupAddition (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html).
// If your stack template contains these resources, we recommend that you review
// all permissions associated with them and edit their permissions if necessary.
// If your template contains any of the listed resources and you don't specify
// this parameter, this action returns an InsufficientCapabilities error.
//
// If you have IAM resources, you can specify either capability. If you have
// IAM resources with custom names, you must specify CAPABILITY_NAMED_IAM. If
// you don't specify this parameter, this action returns an InsufficientCapabilities
// error.
//
// For more information, see Acknowledging IAM Resources in AWS CloudFormation
// Templates (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities).
Capabilities []*string `type:"list"`
// Amazon Simple Notification Service topic Amazon Resource Names (ARNs) that
@ -3969,11 +3990,14 @@ func (s *ValidateTemplateInput) Validate() error {
type ValidateTemplateOutput struct {
_ struct{} `type:"structure"`
// The capabilities found within the template. Currently, AWS CloudFormation
// supports only the CAPABILITY_IAM capability. If your template contains IAM
// resources, you must specify the CAPABILITY_IAM value for this parameter when
// you use the CreateStack or UpdateStack actions with your template; otherwise,
// those actions return an InsufficientCapabilities error.
// The capabilities found within the template. If your template contains IAM
// resources, you must specify the CAPABILITY_IAM or CAPABILITY_NAMED_IAM value
// for this parameter when you use the CreateStack or UpdateStack actions with
// your template; otherwise, those actions return an InsufficientCapabilities
// error.
//
// For more information, see Acknowledging IAM Resources in AWS CloudFormation
// Templates (http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities).
Capabilities []*string `type:"list"`
// The list of resources that generated the values in the Capabilities response
@ -4000,6 +4024,8 @@ func (s ValidateTemplateOutput) GoString() string {
const (
// @enum Capability
CapabilityCapabilityIam = "CAPABILITY_IAM"
// @enum Capability
CapabilityCapabilityNamedIam = "CAPABILITY_NAMED_IAM"
)
const (

View File

@ -1131,10 +1131,10 @@ type AudioCodecOptions struct {
// Specify the AAC profile for the output file. Elastic Transcoder supports
// the following profiles:
//
// auto: If you specify auto, Elastic Transcoder will select the profile
// based on the bit rate selected for the output file. AAC-LC: The most common
// AAC profile. Use for bit rates larger than 64 kbps. HE-AAC: Not supported
// on some older players and devices. Use for bit rates between 40 and 80 kbps.
// auto: If you specify auto, Elastic Transcoder will select the profile based
// on the bit rate selected for the output file. AAC-LC: The most common AAC
// profile. Use for bit rates larger than 64 kbps. HE-AAC: Not supported on
// some older players and devices. Use for bit rates between 40 and 80 kbps.
// HE-AACv2: Not supported on some players and devices. Use for bit rates less
// than 48 kbps. All outputs in a Smooth playlist must have the same value
// for Profile.
@ -1185,12 +1185,12 @@ type AudioParameters struct {
// follows:
//
// 0 channels with any input: Audio omitted from the output 1, 2, or auto
// channels with no audio input: Audio omitted from the output 1 channel
// with any input with audio: One track with one channel, downmixed if necessary
// channels with no audio input: Audio omitted from the output 1 channel with
// any input with audio: One track with one channel, downmixed if necessary
// 2 channels with one track with one channel: One track with two identical
// channels 2 or auto channels with two tracks with one channel each: One
// track with two channels 2 or auto channels with one track with two channels:
// One track with two channels 2 channels with one track with multiple channels:
// channels 2 or auto channels with two tracks with one channel each: One track
// with two channels 2 or auto channels with one track with two channels: One
// track with two channels 2 channels with one track with multiple channels:
// One track with two channels auto channels with one track with one channel:
// One track with one channel auto channels with one track with multiple channels:
// One track with multiple channels When you specify OneChannelPerTrack, Elastic
@ -1201,25 +1201,25 @@ type AudioParameters struct {
// are as follows:
//
// 0 channels with any input: Audio omitted from the output 1, 2, or auto
// channels with no audio input: Audio omitted from the output 1 channel
// with any input with audio: One track with one channel, downmixed if necessary
// channels with no audio input: Audio omitted from the output 1 channel with
// any input with audio: One track with one channel, downmixed if necessary
// 2 channels with one track with one channel: Two tracks with one identical
// channel each 2 or auto channels with two tracks with one channel each:
// Two tracks with one channel each 2 or auto channels with one track with
// two channels: Two tracks with one channel each 2 channels with one track
// with multiple channels: Two tracks with one channel each auto channels
// with one track with one channel: One track with one channel auto channels
// with one track with multiple channels: Up to eight tracks with one channel
// each When you specify OneChannelPerTrackWithMosTo8Tracks, Elastic Transcoder
// creates eight single-channel tracks for your output. All tracks that do not
// contain audio data from an input channel are MOS, or Mit Out Sound, tracks.
// channel each 2 or auto channels with two tracks with one channel each: Two
// tracks with one channel each 2 or auto channels with one track with two
// channels: Two tracks with one channel each 2 channels with one track with
// multiple channels: Two tracks with one channel each auto channels with one
// track with one channel: One track with one channel auto channels with one
// track with multiple channels: Up to eight tracks with one channel each When
// you specify OneChannelPerTrackWithMosTo8Tracks, Elastic Transcoder creates
// eight single-channel tracks for your output. All tracks that do not contain
// audio data from an input channel are MOS, or Mit Out Sound, tracks.
//
// The outputs of OneChannelPerTrackWithMosTo8Tracks for a specific channel
// value and inputs are as follows:
//
// 0 channels with any input: Audio omitted from the output 1, 2, or auto
// channels with no audio input: Audio omitted from the output 1 channel
// with any input with audio: One track with one channel, downmixed if necessary,
// channels with no audio input: Audio omitted from the output 1 channel with
// any input with audio: One track with one channel, downmixed if necessary,
// plus six MOS tracks 2 channels with one track with one channel: Two tracks
// with one identical channel each, plus six MOS tracks 2 or auto channels
// with two tracks with one channel each: Two tracks with one channel each,
@ -1979,15 +1979,15 @@ type CreatePipelineInput struct {
// object.
//
// Bucket: The Amazon S3 bucket in which you want Elastic Transcoder to save
// transcoded files and playlists. Permissions (Optional): The Permissions
// object specifies which users you want to have access to transcoded files
// and the type of access you want them to have. You can grant permissions to
// a maximum of 30 users and/or predefined Amazon S3 groups. Grantee Type:
// Specify the type of value that appears in the Grantee object: Canonical:
// The value in the Grantee object is either the canonical user ID for an AWS
// account or an origin access identity for an Amazon CloudFront distribution.
// For more information about canonical user IDs, see Access Control List (ACL)
// Overview in the Amazon Simple Storage Service Developer Guide. For more information
// transcoded files and playlists. Permissions (Optional): The Permissions object
// specifies which users you want to have access to transcoded files and the
// type of access you want them to have. You can grant permissions to a maximum
// of 30 users and/or predefined Amazon S3 groups. Grantee Type: Specify the
// type of value that appears in the Grantee object: Canonical: The value in
// the Grantee object is either the canonical user ID for an AWS account or
// an origin access identity for an Amazon CloudFront distribution. For more
// information about canonical user IDs, see Access Control List (ACL) Overview
// in the Amazon Simple Storage Service Developer Guide. For more information
// about using CloudFront origin access identities to require that users use
// CloudFront URLs instead of Amazon S3 URLs, see Using an Origin Access Identity
// to Restrict Access to Your Amazon S3 Content. A canonical user ID is not
@ -2003,8 +2003,8 @@ type CreatePipelineInput struct {
// Permissions are granted on the files that Elastic Transcoder adds to the
// bucket, including playlists and video files. Valid values include: READ:
// The grantee can read the objects and metadata for objects that Elastic Transcoder
// adds to the Amazon S3 bucket. READ_ACP: The grantee can read the object
// ACL for objects that Elastic Transcoder adds to the Amazon S3 bucket. WRITE_ACP:
// adds to the Amazon S3 bucket. READ_ACP: The grantee can read the object ACL
// for objects that Elastic Transcoder adds to the Amazon S3 bucket. WRITE_ACP:
// The grantee can write the ACL for the objects that Elastic Transcoder adds
// to the Amazon S3 bucket. FULL_CONTROL: The grantee has READ, READ_ACP, and
// WRITE_ACP permissions for the objects that Elastic Transcoder adds to the
@ -2034,8 +2034,8 @@ type CreatePipelineInput struct {
// a Topic in the Amazon Simple Notification Service Developer Guide. Completed:
// The topic ARN for the Amazon SNS topic that you want to notify when Elastic
// Transcoder has finished processing a job in this pipeline. This is the ARN
// that Amazon SNS returned when you created the topic. Warning: The topic
// ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder
// that Amazon SNS returned when you created the topic. Warning: The topic ARN
// for the Amazon SNS topic that you want to notify when Elastic Transcoder
// encounters a warning condition while processing a job in this pipeline. This
// is the ARN that Amazon SNS returned when you created the topic. Error: The
// topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder
@ -2086,9 +2086,9 @@ type CreatePipelineInput struct {
// Canonical: The value in the Grantee object is either the canonical user
// ID for an AWS account or an origin access identity for an Amazon CloudFront
// distribution. A canonical user ID is not the same as an AWS account number.
// Email: The value in the Grantee object is the registered email address
// of an AWS account. Group: The value in the Grantee object is one of the
// following predefined Amazon S3 groups: AllUsers, AuthenticatedUsers, or LogDelivery.
// Email: The value in the Grantee object is the registered email address of
// an AWS account. Group: The value in the Grantee object is one of the following
// predefined Amazon S3 groups: AllUsers, AuthenticatedUsers, or LogDelivery.
// Grantee: The AWS user or group that you want to have access to thumbnail
// files. To identify the user or group, you can specify the canonical user
// ID for an AWS account, an origin access identity for a CloudFront distribution,
@ -2097,14 +2097,14 @@ type CreatePipelineInput struct {
// you specified in Grantee. Permissions are granted on the thumbnail files
// that Elastic Transcoder adds to the bucket. Valid values include: READ:
// The grantee can read the thumbnails and metadata for objects that Elastic
// Transcoder adds to the Amazon S3 bucket. READ_ACP: The grantee can read
// the object ACL for thumbnails that Elastic Transcoder adds to the Amazon
// S3 bucket. WRITE_ACP: The grantee can write the ACL for the thumbnails
// that Elastic Transcoder adds to the Amazon S3 bucket. FULL_CONTROL: The
// grantee has READ, READ_ACP, and WRITE_ACP permissions for the thumbnails
// that Elastic Transcoder adds to the Amazon S3 bucket. StorageClass: The
// Amazon S3 storage class, Standard or ReducedRedundancy, that you want Elastic
// Transcoder to assign to the thumbnails that it stores in your Amazon S3 bucket.
// Transcoder adds to the Amazon S3 bucket. READ_ACP: The grantee can read the
// object ACL for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.
// WRITE_ACP: The grantee can write the ACL for the thumbnails that Elastic
// Transcoder adds to the Amazon S3 bucket. FULL_CONTROL: The grantee has READ,
// READ_ACP, and WRITE_ACP permissions for the thumbnails that Elastic Transcoder
// adds to the Amazon S3 bucket. StorageClass: The Amazon S3 storage class,
// Standard or ReducedRedundancy, that you want Elastic Transcoder to assign
// to the thumbnails that it stores in your Amazon S3 bucket.
ThumbnailConfig *PipelineOutputConfig `type:"structure"`
}
@ -3350,26 +3350,25 @@ type Pipeline struct {
// and ThumbnailConfig, or you specify OutputBucket.
//
// Bucket: The Amazon S3 bucket in which you want Elastic Transcoder to save
// transcoded files and playlists. Permissions: A list of the users and/or
// predefined Amazon S3 groups you want to have access to transcoded files and
// playlists, and the type of access that you want them to have. GranteeType:
// The type of value that appears in the Grantee object: Canonical: Either
// the canonical user ID for an AWS account or an origin access identity for
// an Amazon CloudFront distribution. Email: The registered email address of
// an AWS account. Group: One of the following predefined Amazon S3 groups:
// AllUsers, AuthenticatedUsers, or LogDelivery. Grantee: The AWS user or
// group that you want to have access to transcoded files and playlists. Access:
// The permission that you want to give to the AWS user that is listed in Grantee.
// Valid values include: READ: The grantee can read the objects and metadata
// for objects that Elastic Transcoder adds to the Amazon S3 bucket. READ_ACP:
// The grantee can read the object ACL for objects that Elastic Transcoder adds
// to the Amazon S3 bucket. WRITE_ACP: The grantee can write the ACL for the
// objects that Elastic Transcoder adds to the Amazon S3 bucket. FULL_CONTROL:
// The grantee has READ, READ_ACP, and WRITE_ACP permissions for the objects
// that Elastic Transcoder adds to the Amazon S3 bucket. StorageClass:
// The Amazon S3 storage class, Standard or ReducedRedundancy, that you want
// Elastic Transcoder to assign to the video files and playlists that it stores
// in your Amazon S3 bucket.
// transcoded files and playlists. Permissions: A list of the users and/or predefined
// Amazon S3 groups you want to have access to transcoded files and playlists,
// and the type of access that you want them to have. GranteeType: The type
// of value that appears in the Grantee object: Canonical: Either the canonical
// user ID for an AWS account or an origin access identity for an Amazon CloudFront
// distribution. Email: The registered email address of an AWS account. Group:
// One of the following predefined Amazon S3 groups: AllUsers, AuthenticatedUsers,
// or LogDelivery. Grantee: The AWS user or group that you want to have access
// to transcoded files and playlists. Access: The permission that you want to
// give to the AWS user that is listed in Grantee. Valid values include: READ:
// The grantee can read the objects and metadata for objects that Elastic Transcoder
// adds to the Amazon S3 bucket. READ_ACP: The grantee can read the object ACL
// for objects that Elastic Transcoder adds to the Amazon S3 bucket. WRITE_ACP:
// The grantee can write the ACL for the objects that Elastic Transcoder adds
// to the Amazon S3 bucket. FULL_CONTROL: The grantee has READ, READ_ACP, and
// WRITE_ACP permissions for the objects that Elastic Transcoder adds to the
// Amazon S3 bucket. StorageClass: The Amazon S3 storage class, Standard
// or ReducedRedundancy, that you want Elastic Transcoder to assign to the video
// files and playlists that it stores in your Amazon S3 bucket.
ContentConfig *PipelineOutputConfig `type:"structure"`
// The identifier for the pipeline. You use this value to identify the pipeline
@ -3412,8 +3411,8 @@ type Pipeline struct {
// The current status of the pipeline:
//
// Active: The pipeline is processing jobs. Paused: The pipeline is not
// currently processing jobs.
// Active: The pipeline is processing jobs. Paused: The pipeline is not currently
// processing jobs.
Status *string `type:"string"`
// Information about the Amazon S3 bucket in which you want Elastic Transcoder
@ -3427,20 +3426,19 @@ type Pipeline struct {
// in the Grantee object: Canonical: Either the canonical user ID for an AWS
// account or an origin access identity for an Amazon CloudFront distribution.
// A canonical user ID is not the same as an AWS account number. Email: The
// registered email address of an AWS account. Group: One of the following
// predefined Amazon S3 groups: AllUsers, AuthenticatedUsers, or LogDelivery.
// Grantee: The AWS user or group that you want to have access to thumbnail
// files. Access: The permission that you want to give to the AWS user that
// is listed in Grantee. Valid values include: READ: The grantee can read
// the thumbnails and metadata for thumbnails that Elastic Transcoder adds to
// the Amazon S3 bucket. READ_ACP: The grantee can read the object ACL for
// thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. WRITE_ACP:
// The grantee can write the ACL for the thumbnails that Elastic Transcoder
// adds to the Amazon S3 bucket. FULL_CONTROL: The grantee has READ, READ_ACP,
// and WRITE_ACP permissions for the thumbnails that Elastic Transcoder adds
// to the Amazon S3 bucket. StorageClass: The Amazon S3 storage class,
// Standard or ReducedRedundancy, that you want Elastic Transcoder to assign
// to the thumbnails that it stores in your Amazon S3 bucket.
// registered email address of an AWS account. Group: One of the following predefined
// Amazon S3 groups: AllUsers, AuthenticatedUsers, or LogDelivery. Grantee:
// The AWS user or group that you want to have access to thumbnail files. Access:
// The permission that you want to give to the AWS user that is listed in Grantee.
// Valid values include: READ: The grantee can read the thumbnails and metadata
// for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. READ_ACP:
// The grantee can read the object ACL for thumbnails that Elastic Transcoder
// adds to the Amazon S3 bucket. WRITE_ACP: The grantee can write the ACL for
// the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. FULL_CONTROL:
// The grantee has READ, READ_ACP, and WRITE_ACP permissions for the thumbnails
// that Elastic Transcoder adds to the Amazon S3 bucket. StorageClass: The
// Amazon S3 storage class, Standard or ReducedRedundancy, that you want Elastic
// Transcoder to assign to the thumbnails that it stores in your Amazon S3 bucket.
ThumbnailConfig *PipelineOutputConfig `type:"structure"`
}
@ -3758,9 +3756,9 @@ type PresetWatermark struct {
// The horizontal position of the watermark unless you specify a non-zero value
// for HorizontalOffset: Left: The left edge of the watermark is aligned with
// the left border of the video. Right: The right edge of the watermark is
// aligned with the right border of the video. Center: The watermark is centered
// between the left and right borders.
// the left border of the video. Right: The right edge of the watermark is aligned
// with the right border of the video. Center: The watermark is centered between
// the left and right borders.
HorizontalAlign *string `type:"string"`
// The amount by which you want the horizontal position of the watermark to
@ -3820,8 +3818,8 @@ type PresetWatermark struct {
// Transcoder stretches the watermark to match the values that you specified
// for MaxWidth and MaxHeight. If the relative proportions of the watermark
// and the values of MaxWidth and MaxHeight are different, the watermark will
// be distorted. ShrinkToFit: Elastic Transcoder scales the watermark down
// so that its dimensions match the values that you specified for at least one
// be distorted. ShrinkToFit: Elastic Transcoder scales the watermark down so
// that its dimensions match the values that you specified for at least one
// of MaxWidth and MaxHeight without exceeding either value. If you specify
// this option, Elastic Transcoder does not scale the watermark up.
SizingPolicy *string `type:"string"`
@ -3840,10 +3838,10 @@ type PresetWatermark struct {
Target *string `type:"string"`
// The vertical position of the watermark unless you specify a non-zero value
// for VerticalOffset: Top: The top edge of the watermark is aligned with
// the top border of the video. Bottom: The bottom edge of the watermark is
// aligned with the bottom border of the video. Center: The watermark is centered
// between the top and bottom borders.
// for VerticalOffset: Top: The top edge of the watermark is aligned with the
// top border of the video. Bottom: The bottom edge of the watermark is aligned
// with the bottom border of the video. Center: The watermark is centered between
// the top and bottom borders.
VerticalAlign *string `type:"string"`
// VerticalOffset The amount by which you want the vertical position of the
@ -4291,15 +4289,15 @@ type UpdatePipelineInput struct {
// object.
//
// Bucket: The Amazon S3 bucket in which you want Elastic Transcoder to save
// transcoded files and playlists. Permissions (Optional): The Permissions
// object specifies which users you want to have access to transcoded files
// and the type of access you want them to have. You can grant permissions to
// a maximum of 30 users and/or predefined Amazon S3 groups. Grantee Type:
// Specify the type of value that appears in the Grantee object: Canonical:
// The value in the Grantee object is either the canonical user ID for an AWS
// account or an origin access identity for an Amazon CloudFront distribution.
// For more information about canonical user IDs, see Access Control List (ACL)
// Overview in the Amazon Simple Storage Service Developer Guide. For more information
// transcoded files and playlists. Permissions (Optional): The Permissions object
// specifies which users you want to have access to transcoded files and the
// type of access you want them to have. You can grant permissions to a maximum
// of 30 users and/or predefined Amazon S3 groups. Grantee Type: Specify the
// type of value that appears in the Grantee object: Canonical: The value in
// the Grantee object is either the canonical user ID for an AWS account or
// an origin access identity for an Amazon CloudFront distribution. For more
// information about canonical user IDs, see Access Control List (ACL) Overview
// in the Amazon Simple Storage Service Developer Guide. For more information
// about using CloudFront origin access identities to require that users use
// CloudFront URLs instead of Amazon S3 URLs, see Using an Origin Access Identity
// to Restrict Access to Your Amazon S3 Content. A canonical user ID is not
@ -4315,8 +4313,8 @@ type UpdatePipelineInput struct {
// Permissions are granted on the files that Elastic Transcoder adds to the
// bucket, including playlists and video files. Valid values include: READ:
// The grantee can read the objects and metadata for objects that Elastic Transcoder
// adds to the Amazon S3 bucket. READ_ACP: The grantee can read the object
// ACL for objects that Elastic Transcoder adds to the Amazon S3 bucket. WRITE_ACP:
// adds to the Amazon S3 bucket. READ_ACP: The grantee can read the object ACL
// for objects that Elastic Transcoder adds to the Amazon S3 bucket. WRITE_ACP:
// The grantee can write the ACL for the objects that Elastic Transcoder adds
// to the Amazon S3 bucket. FULL_CONTROL: The grantee has READ, READ_ACP, and
// WRITE_ACP permissions for the objects that Elastic Transcoder adds to the
@ -4369,9 +4367,9 @@ type UpdatePipelineInput struct {
// Canonical: The value in the Grantee object is either the canonical user
// ID for an AWS account or an origin access identity for an Amazon CloudFront
// distribution. A canonical user ID is not the same as an AWS account number.
// Email: The value in the Grantee object is the registered email address
// of an AWS account. Group: The value in the Grantee object is one of the
// following predefined Amazon S3 groups: AllUsers, AuthenticatedUsers, or LogDelivery.
// Email: The value in the Grantee object is the registered email address of
// an AWS account. Group: The value in the Grantee object is one of the following
// predefined Amazon S3 groups: AllUsers, AuthenticatedUsers, or LogDelivery.
// Grantee: The AWS user or group that you want to have access to thumbnail
// files. To identify the user or group, you can specify the canonical user
// ID for an AWS account, an origin access identity for a CloudFront distribution,
@ -4380,14 +4378,14 @@ type UpdatePipelineInput struct {
// you specified in Grantee. Permissions are granted on the thumbnail files
// that Elastic Transcoder adds to the bucket. Valid values include: READ:
// The grantee can read the thumbnails and metadata for objects that Elastic
// Transcoder adds to the Amazon S3 bucket. READ_ACP: The grantee can read
// the object ACL for thumbnails that Elastic Transcoder adds to the Amazon
// S3 bucket. WRITE_ACP: The grantee can write the ACL for the thumbnails
// that Elastic Transcoder adds to the Amazon S3 bucket. FULL_CONTROL: The
// grantee has READ, READ_ACP, and WRITE_ACP permissions for the thumbnails
// that Elastic Transcoder adds to the Amazon S3 bucket. StorageClass: The
// Amazon S3 storage class, Standard or ReducedRedundancy, that you want Elastic
// Transcoder to assign to the thumbnails that it stores in your Amazon S3 bucket.
// Transcoder adds to the Amazon S3 bucket. READ_ACP: The grantee can read the
// object ACL for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.
// WRITE_ACP: The grantee can write the ACL for the thumbnails that Elastic
// Transcoder adds to the Amazon S3 bucket. FULL_CONTROL: The grantee has READ,
// READ_ACP, and WRITE_ACP permissions for the thumbnails that Elastic Transcoder
// adds to the Amazon S3 bucket. StorageClass: The Amazon S3 storage class,
// Standard or ReducedRedundancy, that you want Elastic Transcoder to assign
// to the thumbnails that it stores in your Amazon S3 bucket.
ThumbnailConfig *PipelineOutputConfig `type:"structure"`
}
@ -4442,8 +4440,8 @@ type UpdatePipelineNotificationsInput struct {
// Amazon SNS console. Progressing: The topic ARN for the Amazon Simple Notification
// Service (Amazon SNS) topic that you want to notify when Elastic Transcoder
// has started to process jobs that are added to this pipeline. This is the
// ARN that Amazon SNS returned when you created the topic. Completed: The
// topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder
// ARN that Amazon SNS returned when you created the topic. Completed: The topic
// ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder
// has finished processing a job. This is the ARN that Amazon SNS returned when
// you created the topic. Warning: The topic ARN for the Amazon SNS topic that
// you want to notify when Elastic Transcoder encounters a warning condition.
@ -4825,9 +4823,9 @@ type VideoParameters struct {
// The width and height of the video in the output file, in pixels. Valid
// values are auto and width x height:
//
// auto: Elastic Transcoder attempts to preserve the width and height of
// the input file, subject to the following rules. width x height: The width
// and height of the output video in pixels. Note the following about specifying
// auto: Elastic Transcoder attempts to preserve the width and height of the
// input file, subject to the following rules. width x height: The width and
// height of the output video in pixels. Note the following about specifying
// the width and height:
//
// The width must be an even integer between 128 and 4096, inclusive. The
@ -4850,21 +4848,20 @@ type VideoParameters struct {
// other value. Fill: Elastic Transcoder scales the output video so it matches
// the value that you specified in either MaxWidth or MaxHeight and matches
// or exceeds the other value. Elastic Transcoder centers the output video and
// then crops it in the dimension (if any) that exceeds the maximum value.
// Stretch: Elastic Transcoder stretches the output video to match the values
// that you specified for MaxWidth and MaxHeight. If the relative proportions
// of the input video and the output video are different, the output video will
// be distorted. Keep: Elastic Transcoder does not scale the output video.
// If either dimension of the input video exceeds the values that you specified
// for MaxWidth and MaxHeight, Elastic Transcoder crops the output video. ShrinkToFit:
// Elastic Transcoder scales the output video down so that its dimensions match
// the values that you specified for at least one of MaxWidth and MaxHeight
// without exceeding either value. If you specify this option, Elastic Transcoder
// does not scale the video up. ShrinkToFill: Elastic Transcoder scales the
// output video down so that its dimensions match the values that you specified
// for at least one of MaxWidth and MaxHeight without dropping below either
// value. If you specify this option, Elastic Transcoder does not scale the
// video up.
// then crops it in the dimension (if any) that exceeds the maximum value. Stretch:
// Elastic Transcoder stretches the output video to match the values that you
// specified for MaxWidth and MaxHeight. If the relative proportions of the
// input video and the output video are different, the output video will be
// distorted. Keep: Elastic Transcoder does not scale the output video. If either
// dimension of the input video exceeds the values that you specified for MaxWidth
// and MaxHeight, Elastic Transcoder crops the output video. ShrinkToFit: Elastic
// Transcoder scales the output video down so that its dimensions match the
// values that you specified for at least one of MaxWidth and MaxHeight without
// exceeding either value. If you specify this option, Elastic Transcoder does
// not scale the video up. ShrinkToFill: Elastic Transcoder scales the output
// video down so that its dimensions match the values that you specified for
// at least one of MaxWidth and MaxHeight without dropping below either value.
// If you specify this option, Elastic Transcoder does not scale the video up.
SizingPolicy *string `type:"string"`
// Settings for the size, location, and opacity of graphics that you want Elastic

400
vendor/vendor.json vendored
View File

@ -277,458 +277,590 @@
"revision": "4239b77079c7b5d1243b7b4736304ce8ddb6f0f2"
},
{
"checksumSHA1": "zrKMMpGfvfCUU07ydetOaOKum5U=",
"checksumSHA1": "4AOg5/w5X4YYFGRV+V0pLKAhe8c=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/aws",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "AWg3FBA1NTPdIVZipaQf/rGx38o=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/aws/awserr",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "dkfyy7aRNZ6BmUZ4ZdLIcMMXiPA=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/aws/awsutil",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "RsYlRfQceaAgqjIrExwNsb/RBEM=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/aws/client",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "ieAJ+Cvp/PKv1LpUEnUXpc3OI6E=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/aws/client/metadata",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "gNWirlrTfSLbOe421hISBAhTqa4=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/aws/corehandlers",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "EiauD48zRlXIFvAENgZ+PXSEnT0=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/aws/credentials",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "KQiUK/zr3mqnAXD7x/X55/iNme0=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "NUJUTWlc1sV8b7WjfiYc4JZbXl0=",
"path": "github.com/aws/aws-sdk-go/aws/credentials/endpointcreds",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "svFeyM3oQkk0nfQ0pguDjMgV2M4=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/aws/defaults",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "U0SthWum+t9ACanK7SDJOg3dO6M=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/aws/ec2metadata",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "NyUg1P8ZS/LHAAQAk/4C5O4X3og=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/aws/request",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "46SVikiXo5xuy/CS6mM1XVTUU7w=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/aws/session",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "0HzXzMByDLiJSqrMEqbg5URAx0o=",
"path": "github.com/aws/aws-sdk-go/aws/signer/v4",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "sgft7A0lRCVD7QBogydg46lr3NM=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/private/endpoints",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "wk7EyvDaHwb5qqoOP/4d3cV0708=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/private/protocol",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "G1he3uSmd1h8ZRnKOIWuDrWp2zQ=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/private/protocol/ec2query",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "gHqZ41fSrCEUftkImHKGW+cKxFk=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/private/protocol/json/jsonutil",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "MPzz1x/qt6f2R/JW6aELbm/qT4k=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/private/protocol/jsonrpc",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "nHHyS4+VgZOV7F3Xu87crArmbds=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/private/protocol/query",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "5xzix1R8prUyWxgLnzUQoxTsfik=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/private/protocol/query/queryutil",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "TW/7U+/8ormL7acf6z2rv2hDD+s=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/private/protocol/rest",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "ayzKZc+f+OrjOtE2bz4+lrlKR7c=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/private/protocol/restjson",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "ttxyyPnlmMDqX+sY10BwbwwA+jo=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/private/protocol/restxml",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "LsCIsjbzX2r3n/AhpNJvAC5ueNA=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "F6mth+G7dXN1GI+nktaGo8Lx8aE=",
"path": "github.com/aws/aws-sdk-go/private/signer/v2",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/private/signer/v4",
"revision": "2cc71659118a868dc7544a7ef0808eb42d487011"
"revision": "2cc71659118a868dc7544a7ef0808eb42d487011",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "Eo9yODN5U99BK0pMzoqnBm7PCrY=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/private/waiter",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "lD48Br3S98XvKfKID0QiTbBgC1M=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/apigateway",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "AUA6op9dlm0X4vv1YPFnIFs6404=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/autoscaling",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "HMNQSV7Om3yvNiougcTrfZVJFbE=",
"checksumSHA1": "vp/AYdsQnZtoPqtX86VsgmLIx1w=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/cloudformation",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "4deSd9La3EF2Cmq+tD5rcvhfTGQ=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/cloudfront",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "eCFTaV9GKqv/UEzwRgFFUaFz098=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/cloudtrail",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "b9W5mR0lazSwYV6Pl8HNslokIpo=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/cloudwatch",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "mWNJKpt18ASs9/RhnIjILcsGlng=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/cloudwatchevents",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "Q6xeArbCzOunYsn2tFyTA5LN1Cg=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/cloudwatchlogs",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "p5a/DcdUvhTx0PCRR+/CRXk9g6c=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/codecommit",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "p9BTPHO+J8OdzK2btdcGGAaTmhk=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/codedeploy",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "t1fZO+x4OG6e7T8HIi2Yr2wR9D4=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/directoryservice",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "y+pZPK8hcTDwq1zHuRduWE14flw=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/dynamodb",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "gqlYKqMKCuQ3fzNTyDw6jiG1sCs=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/ec2",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "IEHq+VLH1fud1oQ4MXj1nqfpgUY=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/ecr",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "sHPoLMWXO5tM63ipuxVXduuRypI=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/ecs",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "1vOgFGxLhjNe6BK3RJaV1OqisCs=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/efs",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "rjSScNzMTvEHv7Lk5KcxDpNU5EE=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/elasticache",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "RZF1yHtJhAqaMwbeAM/6BdLLavk=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/elasticbeanstalk",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "TAuizMIsvgeuZhmGTYPA7LOXHvY=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/elasticsearchservice",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "B/g+Usd8rImjgUpVPLyNTL0LaUQ=",
"checksumSHA1": "qHuJHGUAuuizD9834MP3gVupfdo=",
"path": "github.com/aws/aws-sdk-go/service/elastictranscoder",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "1c9xsISLQWKSrORIpdokCCWCe2M=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/elb",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "bvVmHWxCOk0Cmw333zQ5jutPCZQ=",
"comment": "v1.1.15",
"path": "github.com/aws/aws-sdk-go/service/emr",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "TtIAgZ+evpkKB5bBYCB69k0wZoU=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/firehose",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "B1EtgBrv//gYqA+Sp6a/SK2zLO4=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/glacier",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "kXJ9ycLAIj0PFSFbfrA/LR/hIi8=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/iam",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "2n5/m0ClE4OyQRNdjfLwg+nSY3o=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/kinesis",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "/cFX1/Gr6M+r9232gLIV+4np7Po=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/kms",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "jM0EhAIybh0fyLHxrmVSmG3JLmU=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/lambda",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "aLwDFgrPzIBidURxso1ujcr2pDs=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/opsworks",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "w0aQAtZ42oGeVOqwwG15OBGoU1s=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/rds",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "mgImZ/bluUOY9GpQ/oAnscIXwrA=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/redshift",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "6ejP+X+O9e6y40GICj9Vcn1MuBY=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/route53",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "68YN+UopWOSISIcQQ6zSVbyaDzQ=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/s3",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "X9g/Vdq939ijN2gcumwOyYfHM2U=",
"path": "github.com/aws/aws-sdk-go/service/ses",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "DW5kDRWLA2yAgYh9vsI+0uVqq/Q=",
"path": "github.com/aws/aws-sdk-go/service/simpledb",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "+ic7vevBfganFLENR29pJaEf4Tw=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/sns",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "oLAlquYlQzgYFS9ochS/iQ9+uXY=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/sqs",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"checksumSHA1": "6a2WM0r/rXUxFjxH73jYL88LBSw=",
"comment": "v1.1.23",
"path": "github.com/aws/aws-sdk-go/service/sts",
"revision": "3c37d29820480639ff03fd66df00a0f27984f88d",
"revisionTime": "2016-07-13T21:13:24Z"
"revision": "565027b24171359f23f883d0fc48c228cdde301d",
"revisionTime": "2016-07-21T22:15:38Z",
"version": "v1.2.7",
"versionExact": "v1.2.7"
},
{
"path": "github.com/bgentry/speakeasy",