provider/aws: Bump the AWS SDK version to 1.4.2 (#8285)

This commit is contained in:
Paul Stack 2016-08-20 10:16:03 +01:00 committed by GitHub
parent 19ecb40c48
commit 994ae08eb8
7 changed files with 2468 additions and 425 deletions

View File

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

File diff suppressed because it is too large Load Diff

View File

@ -11,11 +11,11 @@ import (
"github.com/aws/aws-sdk-go/private/protocol/restjson"
)
// Amazon API Gateway helps developers deliver robust, secure and scalable mobile
// and web application backends. Amazon API Gateway allows developers to securely
// connect mobile and web applications to APIs that run on AWS Lambda, Amazon
// EC2, or other publicly addressable web services that are hosted outside of
// AWS.
// Amazon API Gateway helps developers deliver robust, secure, and scalable
// mobile and web application back ends. Amazon API Gateway allows developers
// to securely connect mobile and web applications to APIs that run on AWS Lambda,
// Amazon EC2, or other publicly addressable web services that are hosted outside
// of AWS.
//The service client's operations are safe to be used concurrently.
// It is not safe to mutate any of the client's properties though.
type APIGateway struct {

View File

@ -1274,12 +1274,17 @@ func (c *ECS) RegisterTaskDefinitionRequest(input *RegisterTaskDefinitionInput)
// see Amazon ECS Task Definitions (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html)
// in the Amazon EC2 Container Service Developer Guide.
//
// You may also specify an IAM role for your task with the taskRoleArn parameter.
// You can specify an IAM role for your task with the taskRoleArn parameter.
// When you specify an IAM role for a task, its containers can then use the
// latest versions of the AWS CLI or SDKs to make API requests to the AWS services
// that are specified in the IAM policy associated with the role. For more information,
// see IAM Roles for Tasks (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html)
// in the Amazon EC2 Container Service Developer Guide.
//
// You can specify a Docker networking mode for the containers in your task
// definition with the networkMode parameter. The available network modes correspond
// to those described in Network settings (https://docs.docker.com/engine/reference/run/#/network-settings)
// in the Docker run reference.
func (c *ECS) RegisterTaskDefinition(input *RegisterTaskDefinitionInput) (*RegisterTaskDefinitionOutput, error) {
req, out := c.RegisterTaskDefinitionRequest(input)
err := req.Send()
@ -1827,8 +1832,8 @@ type ContainerDefinition struct {
_ struct{} `type:"structure"`
// The command that is passed to the container. This parameter maps to Cmd in
// the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the COMMAND parameter to docker run (https://docs.docker.com/reference/commandline/run/).
// For more information, see https://docs.docker.com/reference/builder/#cmd
// (https://docs.docker.com/reference/builder/#cmd).
@ -1839,8 +1844,8 @@ type ContainerDefinition struct {
// amount of CPU to reserve for a container, and containers share unallocated
// CPU units with other containers on the instance with the same ratio as their
// allocated amount. This parameter maps to CpuShares in the Create a container
// (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --cpu-shares option to docker run (https://docs.docker.com/reference/commandline/run/).
//
// You can determine the number of CPU units that are available per EC2 instance
@ -1876,25 +1881,25 @@ type ContainerDefinition struct {
Cpu *int64 `locationName:"cpu" type:"integer"`
// When this parameter is true, networking is disabled within the container.
// This parameter maps to NetworkDisabled in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/).
// This parameter maps to NetworkDisabled in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/).
DisableNetworking *bool `locationName:"disableNetworking" type:"boolean"`
// A list of DNS search domains that are presented to the container. This parameter
// maps to DnsSearch in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// maps to DnsSearch in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --dns-search option to docker run (https://docs.docker.com/reference/commandline/run/).
DnsSearchDomains []*string `locationName:"dnsSearchDomains" type:"list"`
// A list of DNS servers that are presented to the container. This parameter
// maps to Dns in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// maps to Dns in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --dns option to docker run (https://docs.docker.com/reference/commandline/run/).
DnsServers []*string `locationName:"dnsServers" type:"list"`
// A key/value map of labels to add to the container. This parameter maps to
// Labels in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// Labels in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --label option to docker run (https://docs.docker.com/reference/commandline/run/).
// This parameter requires version 1.18 of the Docker Remote API or greater
// on your container instance. To check the Docker Remote API version on your
@ -1904,8 +1909,8 @@ type ContainerDefinition struct {
// A list of strings to provide custom labels for SELinux and AppArmor multi-level
// security systems. This parameter maps to SecurityOpt in the Create a container
// (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --security-opt option to docker run (https://docs.docker.com/reference/commandline/run/).
//
// The Amazon ECS container agent running on a container instance must register
@ -1921,16 +1926,16 @@ type ContainerDefinition struct {
// agent or enter your commands and arguments as command array items instead.
//
// The entry point that is passed to the container. This parameter maps to
// Entrypoint in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// Entrypoint in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --entrypoint option to docker run (https://docs.docker.com/reference/commandline/run/).
// For more information, see https://docs.docker.com/reference/builder/#entrypoint
// (https://docs.docker.com/reference/builder/#entrypoint).
EntryPoint []*string `locationName:"entryPoint" type:"list"`
// The environment variables to pass to a container. This parameter maps to
// Env in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// Env in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --env option to docker run (https://docs.docker.com/reference/commandline/run/).
//
// We do not recommend using plain text environment variables for sensitive
@ -1953,14 +1958,14 @@ type ContainerDefinition struct {
// A list of hostnames and IP address mappings to append to the /etc/hosts file
// on the container. This parameter maps to ExtraHosts in the Create a container
// (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --add-host option to docker run (https://docs.docker.com/reference/commandline/run/).
ExtraHosts []*HostEntry `locationName:"extraHosts" type:"list"`
// The hostname to use for your container. This parameter maps to Hostname in
// the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --hostname option to docker run (https://docs.docker.com/reference/commandline/run/).
Hostname *string `locationName:"hostname" type:"string"`
@ -1969,8 +1974,8 @@ type ContainerDefinition struct {
// Other repositories are specified with repository-url/image:tag . Up to 255
// letters (uppercase and lowercase), numbers, hyphens, underscores, colons,
// periods, forward slashes, and number signs are allowed. This parameter maps
// to Image in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// to Image in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the IMAGE parameter of docker run (https://docs.docker.com/reference/commandline/run/).
//
// Images in official repositories on Docker Hub use a single name (for example,
@ -1989,8 +1994,8 @@ type ContainerDefinition struct {
// Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores
// are allowed for each name and alias. For more information on linking Docker
// containers, see https://docs.docker.com/userguide/dockerlinks/ (https://docs.docker.com/userguide/dockerlinks/).
// This parameter maps to Links in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// This parameter maps to Links in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --link option to docker run (https://docs.docker.com/reference/commandline/run/).
//
// Containers that are collocated on a single container instance may be able
@ -2000,8 +2005,8 @@ type ContainerDefinition struct {
Links []*string `locationName:"links" type:"list"`
// The log configuration specification for the container. This parameter maps
// to LogConfig in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// to LogConfig in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --log-driver option to docker run (https://docs.docker.com/reference/commandline/run/).
// By default, containers use the same logging driver that the Docker daemon
// uses; however the container may use a different logging driver than the Docker
@ -2030,19 +2035,49 @@ type ContainerDefinition struct {
// in the Amazon EC2 Container Service Developer Guide.
LogConfiguration *LogConfiguration `locationName:"logConfiguration" type:"structure"`
// The number of MiB of memory to reserve for the container. You must specify
// a non-zero integer for this parameter; the Docker daemon reserves a minimum
// of 4 MiB of memory for a container, so you should not specify fewer than
// 4 MiB of memory for your containers. If your container attempts to exceed
// the memory allocated here, the container is killed. This parameter maps to
// Memory in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// The hard limit (in MiB) of memory to present to the container. If your container
// attempts to exceed the memory specified here, the container is killed. This
// parameter maps to Memory in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --memory option to docker run (https://docs.docker.com/reference/commandline/run/).
//
// You must specify a non-zero integer for one or both of memory or memoryReservation
// in container definitions. If you specify both, memory must be greater than
// memoryReservation. If you specify memoryReservation, then that value is subtracted
// from the available memory resources for the container instance on which the
// container is placed; otherwise, the value of memory is used.
//
// The Docker daemon reserves a minimum of 4 MiB of memory for a container,
// so you should not specify fewer than 4 MiB of memory for your containers.
Memory *int64 `locationName:"memory" type:"integer"`
// The soft limit (in MiB) of memory to reserve for the container. When system
// memory is under heavy contention, Docker attempts to keep the container memory
// to this soft limit; however, your container can consume more memory when
// it needs to, up to either the hard limit specified with the memory parameter
// (if applicable), or all of the available memory on the container instance,
// whichever comes first. This parameter maps to MemoryReservation in the Create
// a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --memory-reservation option to docker run (https://docs.docker.com/reference/commandline/run/).
//
// You must specify a non-zero integer for one or both of memory or memoryReservation
// in container definitions. If you specify both, memory must be greater than
// memoryReservation. If you specify memoryReservation, then that value is subtracted
// from the available memory resources for the container instance on which the
// container is placed; otherwise, the value of memory is used.
//
// For example, if your container normally uses 128 MiB of memory, but occasionally
// bursts to 256 MiB of memory for short periods of time, you can set a memoryReservation
// of 128 MiB, and a memory hard limit of 300 MiB. This configuration would
// allow the container to only reserve 128 MiB of memory from the remaining
// resources on the container instance, but also allow the container to consume
// more memory resources when needed.
MemoryReservation *int64 `locationName:"memoryReservation" type:"integer"`
// The mount points for data volumes in your container. This parameter maps
// to Volumes in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// to Volumes in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --volume option to docker run (https://docs.docker.com/reference/commandline/run/).
MountPoints []*MountPoint `locationName:"mountPoints" type:"list"`
@ -2050,16 +2085,20 @@ type ContainerDefinition struct {
// in a task definition, the name of one container can be entered in the links
// of another container to connect the containers. Up to 255 letters (uppercase
// and lowercase), numbers, hyphens, and underscores are allowed. This parameter
// maps to name in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// maps to name in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --name option to docker run (https://docs.docker.com/reference/commandline/run/).
Name *string `locationName:"name" type:"string"`
// The list of port mappings for the container. Port mappings allow containers
// to access ports on the host container instance to send or receive traffic.
// This parameter maps to PortBindings in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// This parameter maps to PortBindings in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --publish option to docker run (https://docs.docker.com/reference/commandline/run/).
// If the network mode of a task definition is set to none, then you cannot
// specify port mappings. If the network mode of a task definition is set to
// host, then host ports must either be undefined or they must match the container
// port in the port mapping.
//
// After a task reaches the RUNNING status, manual and automatic host and
// container port assignments are visible in the Network Bindings section of
@ -2069,21 +2108,21 @@ type ContainerDefinition struct {
// When this parameter is true, the container is given elevated privileges on
// the host container instance (similar to the root user). This parameter maps
// to Privileged in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// to Privileged in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --privileged option to docker run (https://docs.docker.com/reference/commandline/run/).
Privileged *bool `locationName:"privileged" type:"boolean"`
// When this parameter is true, the container is given read-only access to its
// root file system. This parameter maps to ReadonlyRootfs in the Create a container
// (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --read-only option to docker run.
ReadonlyRootFilesystem *bool `locationName:"readonlyRootFilesystem" type:"boolean"`
// A list of ulimits to set in the container. This parameter maps to Ulimits
// in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --ulimit option to docker run (https://docs.docker.com/reference/commandline/run/).
// Valid naming values are displayed in the Ulimit data type. This parameter
// requires version 1.18 of the Docker Remote API or greater on your container
@ -2093,20 +2132,20 @@ type ContainerDefinition struct {
Ulimits []*Ulimit `locationName:"ulimits" type:"list"`
// The user name to use inside the container. This parameter maps to User in
// the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --user option to docker run (https://docs.docker.com/reference/commandline/run/).
User *string `locationName:"user" type:"string"`
// Data volumes to mount from another container. This parameter maps to VolumesFrom
// in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --volumes-from option to docker run (https://docs.docker.com/reference/commandline/run/).
VolumesFrom []*VolumeFrom `locationName:"volumesFrom" type:"list"`
// The working directory in which to run commands inside the container. This
// parameter maps to WorkingDir in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// parameter maps to WorkingDir in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.23/)
// and the --workdir option to docker run (https://docs.docker.com/reference/commandline/run/).
WorkingDirectory *string `locationName:"workingDirectory" type:"string"`
}
@ -3788,6 +3827,23 @@ type RegisterTaskDefinitionInput struct {
// hyphens, and underscores are allowed.
Family *string `locationName:"family" type:"string" required:"true"`
// The Docker networking mode to use for the containers in the task. The valid
// values are none, bridge, and host.
//
// The default Docker network mode is bridge. If the network mode is set to
// none, you cannot specify port mappings in your container definitions, and
// the task's containers do not have external connectivity. The host network
// mode offers the highest networking performance for containers because they
// use the host network stack instead of the virtualized network stack provided
// by the bridge mode; however, exposed container ports are mapped directly
// to the corresponding host port, so you cannot take advantage of dynamic host
// port mappings or run multiple instantiations of the same task on a single
// container instance if port mappings are used.
//
// For more information, see Network settings (https://docs.docker.com/engine/reference/run/#network-settings)
// in the Docker run reference.
NetworkMode *string `locationName:"networkMode" type:"string" enum:"NetworkMode"`
// The Amazon Resource Name (ARN) of the IAM role that containers in this task
// can assume. All containers in this task are granted the permissions that
// are specified in this role.
@ -4389,6 +4445,18 @@ type TaskDefinition struct {
// The family of your task definition, used as the definition name.
Family *string `locationName:"family" type:"string"`
// The Docker networking mode to use for the containers in the task. The valid
// values are none, bridge, and host.
//
// If the network mode is none, the containers do not have external connectivity.
// The default Docker network mode is bridge. The host network mode offers the
// highest networking performance for containers because it uses the host network
// stack instead of the virtualized network stack provided by the bridge mode.
//
// For more information, see Network settings (https://docs.docker.com/engine/reference/run/#network-settings)
// in the Docker run reference.
NetworkMode *string `locationName:"networkMode" type:"string" enum:"NetworkMode"`
// The container instance attributes required by your task.
RequiresAttributes []*Attribute `locationName:"requiresAttributes" type:"list"`
@ -4727,6 +4795,17 @@ const (
LogDriverFluentd = "fluentd"
// @enum LogDriver
LogDriverAwslogs = "awslogs"
// @enum LogDriver
LogDriverSplunk = "splunk"
)
const (
// @enum NetworkMode
NetworkModeBridge = "bridge"
// @enum NetworkMode
NetworkModeHost = "host"
// @enum NetworkMode
NetworkModeNone = "none"
)
const (

View File

@ -4005,9 +4005,9 @@ type TargetGroupAttribute struct {
// The name of the attribute.
//
// deregistration_delay.timeout_seconds - The time to wait for in-flight
// requests to complete while deregistering a target. The state of a deregistering
// target is draining. The range is 0-3600 seconds. The default value is 300
// deregistration_delay.timeout_seconds - The amount time for Elastic Load
// Balancing to wait before changing the state of a deregistering target from
// draining to unused. The range is 0-3600 seconds. The default value is 300
// seconds.
//
// stickiness.enabled - Indicates whether sticky sessions are enabled.

View File

@ -3421,7 +3421,7 @@ type ImportKeyMaterialInput struct {
// expires, AWS KMS deletes the key material and the CMK becomes unusable. You
// must omit this parameter when the ExpirationModel parameter is set to KEY_MATERIAL_DOES_NOT_EXPIRE.
// Otherwise it is required.
ValidTo *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`
ValidTo *time.Time `type:"timestamp" timestampFormat:"unix"`
}
// String returns the string representation
@ -3455,9 +3455,6 @@ func (s *ImportKeyMaterialInput) Validate() error {
if s.KeyId != nil && len(*s.KeyId) < 1 {
invalidParams.Add(request.NewErrParamMinLen("KeyId", 1))
}
if s.ValidTo == nil {
invalidParams.Add(request.NewErrParamRequired("ValidTo"))
}
if invalidParams.Len() > 0 {
return invalidParams

425
vendor/vendor.json vendored
View File

@ -347,417 +347,554 @@
{
"checksumSHA1": "QhFYdDb2z6DMbZPsDi9oCQS9nRY=",
"path": "github.com/aws/aws-sdk-go",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z",
"version": "v1.3.1"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "k4BkX61fhl/oX9X0lP7GFSvdz1s=",
"checksumSHA1": "dSo0vFXJGuTtd6H80q8ZczLszJM=",
"path": "github.com/aws/aws-sdk-go/aws",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "Y9W+4GimK4Fuxq+vyIskVYFRnX4=",
"path": "github.com/aws/aws-sdk-go/aws/awserr",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "dkfyy7aRNZ6BmUZ4ZdLIcMMXiPA=",
"path": "github.com/aws/aws-sdk-go/aws/awsutil",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "RsYlRfQceaAgqjIrExwNsb/RBEM=",
"path": "github.com/aws/aws-sdk-go/aws/client",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "ieAJ+Cvp/PKv1LpUEnUXpc3OI6E=",
"path": "github.com/aws/aws-sdk-go/aws/client/metadata",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "gNWirlrTfSLbOe421hISBAhTqa4=",
"path": "github.com/aws/aws-sdk-go/aws/corehandlers",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "dNZNaOPfBPnzE2CBnfhXXZ9g9jU=",
"path": "github.com/aws/aws-sdk-go/aws/credentials",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "KQiUK/zr3mqnAXD7x/X55/iNme0=",
"path": "github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "NUJUTWlc1sV8b7WjfiYc4JZbXl0=",
"path": "github.com/aws/aws-sdk-go/aws/credentials/endpointcreds",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "4Ipx+5xN0gso+cENC2MHMWmQlR4=",
"path": "github.com/aws/aws-sdk-go/aws/credentials/stscreds",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "nCMd1XKjgV21bEl7J8VZFqTV8PE=",
"path": "github.com/aws/aws-sdk-go/aws/defaults",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "U0SthWum+t9ACanK7SDJOg3dO6M=",
"path": "github.com/aws/aws-sdk-go/aws/ec2metadata",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "NyUg1P8ZS/LHAAQAk/4C5O4X3og=",
"path": "github.com/aws/aws-sdk-go/aws/request",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "tBdFneml1Vn7uvezcktsa+hUsGg=",
"path": "github.com/aws/aws-sdk-go/aws/session",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "7lla+sckQeF18wORAGuU2fFMlp4=",
"path": "github.com/aws/aws-sdk-go/aws/signer/v4",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "Bm6UrYb2QCzpYseLwwgw6aetgRc=",
"path": "github.com/aws/aws-sdk-go/private/endpoints",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "wk7EyvDaHwb5qqoOP/4d3cV0708=",
"path": "github.com/aws/aws-sdk-go/private/protocol",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "uNmSKXAF8B9HWEciW+iyUwZ99qQ=",
"path": "github.com/aws/aws-sdk-go/private/protocol/ec2query",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "L7xWYwx0jNQnzlYHwBS+1q6DcCI=",
"path": "github.com/aws/aws-sdk-go/private/protocol/json/jsonutil",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "H9TymcQkQnXSXSVfjggiiS4bpzM=",
"path": "github.com/aws/aws-sdk-go/private/protocol/jsonrpc",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "isoix7lTx4qIq2zI2xFADtti5SI=",
"path": "github.com/aws/aws-sdk-go/private/protocol/query",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "5xzix1R8prUyWxgLnzUQoxTsfik=",
"path": "github.com/aws/aws-sdk-go/private/protocol/query/queryutil",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "TW/7U+/8ormL7acf6z2rv2hDD+s=",
"path": "github.com/aws/aws-sdk-go/private/protocol/rest",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "oUOTWZIpPJiGjc9p/hntdBDvS10=",
"path": "github.com/aws/aws-sdk-go/private/protocol/restjson",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "Y6Db2GGfGD9LPpcJIPj8vXE8BbQ=",
"path": "github.com/aws/aws-sdk-go/private/protocol/restxml",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "eUEkjyMPAuekKBE4ou+nM9tXEas=",
"path": "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "F6mth+G7dXN1GI+nktaGo8Lx8aE=",
"path": "github.com/aws/aws-sdk-go/private/signer/v2",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "Eo9yODN5U99BK0pMzoqnBm7PCrY=",
"path": "github.com/aws/aws-sdk-go/private/waiter",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "j8CUd3jhZ8K+cI8fy785NmqJyzg=",
"checksumSHA1": "DXwm+kmVCiuvvGCcUTeZD/L31Kk=",
"path": "github.com/aws/aws-sdk-go/service/apigateway",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "qoTWohhN8wMZvdMAbwi+B5YhQJ0=",
"path": "github.com/aws/aws-sdk-go/service/applicationautoscaling",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "ygJl5okbywr9j3Cl2GTI/e8f94c=",
"path": "github.com/aws/aws-sdk-go/service/autoscaling",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "vp/AYdsQnZtoPqtX86VsgmLIx1w=",
"path": "github.com/aws/aws-sdk-go/service/cloudformation",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "CpWQcLIxUTtkF6NBRg0QwdeSA/k=",
"path": "github.com/aws/aws-sdk-go/service/cloudfront",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "eCFTaV9GKqv/UEzwRgFFUaFz098=",
"path": "github.com/aws/aws-sdk-go/service/cloudtrail",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "G9CmCfw00Bjz0TtJsEnxGE6mv/0=",
"path": "github.com/aws/aws-sdk-go/service/cloudwatch",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "mWNJKpt18ASs9/RhnIjILcsGlng=",
"path": "github.com/aws/aws-sdk-go/service/cloudwatchevents",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "sP/qEaDICVBV3rRw2sl759YI0iw=",
"path": "github.com/aws/aws-sdk-go/service/cloudwatchlogs",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "p5a/DcdUvhTx0PCRR+/CRXk9g6c=",
"path": "github.com/aws/aws-sdk-go/service/codecommit",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "N8Sgq+xG2vYJdKBikM3yQuIBZfs=",
"path": "github.com/aws/aws-sdk-go/service/codedeploy",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "i4hrcsFXLAQXzaxvWh6+BG8XcIU=",
"path": "github.com/aws/aws-sdk-go/service/directoryservice",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "y+pZPK8hcTDwq1zHuRduWE14flw=",
"path": "github.com/aws/aws-sdk-go/service/dynamodb",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "lJYBdjCwoqPpmmjNyW2yYk9VGiY=",
"path": "github.com/aws/aws-sdk-go/service/ec2",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "RUfkmRJpf1l6rHJfh/86gtG4Was=",
"path": "github.com/aws/aws-sdk-go/service/ecr",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "n6llxIMIGbjTer/33Zmz4cNKVQA=",
"checksumSHA1": "KRHODSkYmdWutb+y13JhuKlonNY=",
"path": "github.com/aws/aws-sdk-go/service/ecs",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "1vOgFGxLhjNe6BK3RJaV1OqisCs=",
"path": "github.com/aws/aws-sdk-go/service/efs",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "rjSScNzMTvEHv7Lk5KcxDpNU5EE=",
"path": "github.com/aws/aws-sdk-go/service/elasticache",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "RZF1yHtJhAqaMwbeAM/6BdLLavk=",
"path": "github.com/aws/aws-sdk-go/service/elasticbeanstalk",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "VAlXnW+WxxWRcCv4xsCoox2kgE0=",
"path": "github.com/aws/aws-sdk-go/service/elasticsearchservice",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "qHuJHGUAuuizD9834MP3gVupfdo=",
"path": "github.com/aws/aws-sdk-go/service/elastictranscoder",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "YiNiSOILzSOaKB4JwdM4SDw7daM=",
"path": "github.com/aws/aws-sdk-go/service/elb",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "DLD6/EwnTkIR6HGaYKYs96lCD+Q=",
"checksumSHA1": "DdsbJgngbL7Ce18ipxreRsf3lYo=",
"path": "github.com/aws/aws-sdk-go/service/elbv2",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "MA6U/Vj0D00yihMHD6bXKyjtfeE=",
"path": "github.com/aws/aws-sdk-go/service/emr",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "TtIAgZ+evpkKB5bBYCB69k0wZoU=",
"path": "github.com/aws/aws-sdk-go/service/firehose",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "B1EtgBrv//gYqA+Sp6a/SK2zLO4=",
"path": "github.com/aws/aws-sdk-go/service/glacier",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "kXJ9ycLAIj0PFSFbfrA/LR/hIi8=",
"path": "github.com/aws/aws-sdk-go/service/iam",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "2n5/m0ClE4OyQRNdjfLwg+nSY3o=",
"path": "github.com/aws/aws-sdk-go/service/kinesis",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "IUiewu7NPRaPPGtWkXHkvVU+80c=",
"checksumSHA1": "l6GbB/V5dPb3l+Nrb70wzyrYAgc=",
"path": "github.com/aws/aws-sdk-go/service/kms",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "Qpi347xz5FIQISq73dZSdIf47AU=",
"path": "github.com/aws/aws-sdk-go/service/lambda",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "aLwDFgrPzIBidURxso1ujcr2pDs=",
"path": "github.com/aws/aws-sdk-go/service/opsworks",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "abtQbJdjxwPxvt4p/X0My6FtfZI=",
"path": "github.com/aws/aws-sdk-go/service/rds",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "mgImZ/bluUOY9GpQ/oAnscIXwrA=",
"path": "github.com/aws/aws-sdk-go/service/redshift",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "y6jKUvrpTJxj5uh6OqQ4FujhCHU=",
"path": "github.com/aws/aws-sdk-go/service/route53",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "imxJucuPrgaPRMPtAgsu+Y7soB4=",
"path": "github.com/aws/aws-sdk-go/service/s3",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "o+bjuT6ycywUf+vXY9hYK4Z3okE=",
"path": "github.com/aws/aws-sdk-go/service/ses",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "DW5kDRWLA2yAgYh9vsI+0uVqq/Q=",
"path": "github.com/aws/aws-sdk-go/service/simpledb",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "+ic7vevBfganFLENR29pJaEf4Tw=",
"path": "github.com/aws/aws-sdk-go/service/sns",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "oLAlquYlQzgYFS9ochS/iQ9+uXY=",
"path": "github.com/aws/aws-sdk-go/service/sqs",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"checksumSHA1": "nH/itbdeFHpl4ysegdtgww9bFSA=",
"path": "github.com/aws/aws-sdk-go/service/sts",
"revision": "f80e7d0182a463dff0c0da6bbed57f21369d4346",
"revisionTime": "2016-08-11T16:24:59Z"
"revision": "35c21ff262580265c1d77095d6f712605fd0c3f4",
"revisionTime": "2016-08-16T21:54:33Z",
"version": "v1.4.2",
"versionExact": "v1.4.2"
},
{
"path": "github.com/bgentry/speakeasy",