2016-01-29 20:53:56 +01:00
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package ecs provides a client for Amazon EC2 Container Service.
package ecs
import (
2016-05-05 03:06:27 +02:00
"fmt"
2016-01-29 20:53:56 +01:00
"time"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
)
const opCreateCluster = "CreateCluster"
2016-07-15 15:49:02 +02:00
// CreateClusterRequest generates a "aws/request.Request" representing the
// client's request for the CreateCluster operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See CreateCluster for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CreateCluster method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the CreateClusterRequest method.
// req, resp := client.CreateClusterRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) CreateClusterRequest ( input * CreateClusterInput ) ( req * request . Request , output * CreateClusterOutput ) {
op := & request . Operation {
Name : opCreateCluster ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateClusterInput { }
}
req = c . newRequest ( op , input , output )
output = & CreateClusterOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// CreateCluster API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Creates a new Amazon ECS cluster. By default, your account receives a default
// cluster when you launch your first container instance. However, you can create
// your own cluster with a unique name with the CreateCluster action.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation CreateCluster for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) CreateCluster ( input * CreateClusterInput ) ( * CreateClusterOutput , error ) {
req , out := c . CreateClusterRequest ( input )
err := req . Send ( )
return out , err
}
const opCreateService = "CreateService"
2016-07-15 15:49:02 +02:00
// CreateServiceRequest generates a "aws/request.Request" representing the
// client's request for the CreateService operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See CreateService for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CreateService method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the CreateServiceRequest method.
// req, resp := client.CreateServiceRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) CreateServiceRequest ( input * CreateServiceInput ) ( req * request . Request , output * CreateServiceOutput ) {
op := & request . Operation {
Name : opCreateService ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateServiceInput { }
}
req = c . newRequest ( op , input , output )
output = & CreateServiceOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// CreateService API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Runs and maintains a desired number of tasks from a specified task definition.
// If the number of tasks running in a service drops below desiredCount, Amazon
2016-11-19 19:41:01 +01:00
// ECS spawns another copy of the task in the specified cluster. To update an
// existing service, see UpdateService.
2016-01-29 20:53:56 +01:00
//
2016-07-15 15:49:02 +02:00
// In addition to maintaining the desired count of tasks in your service, you
// can optionally run your service behind a load balancer. The load balancer
// distributes traffic across the tasks that are associated with the service.
2016-08-11 19:01:51 +02:00
// For more information, see Service Load Balancing (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-load-balancing.html)
// in the Amazon EC2 Container Service Developer Guide.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// You can optionally specify a deployment configuration for your service. During
// a deployment (which is triggered by changing the task definition or the desired
// count of a service with an UpdateService operation), the service scheduler
// uses the minimumHealthyPercent and maximumPercent parameters to determine
// the deployment strategy.
//
// The minimumHealthyPercent represents a lower limit on the number of your
// service's tasks that must remain in the RUNNING state during a deployment,
// as a percentage of the desiredCount (rounded up to the nearest integer).
// This parameter enables you to deploy without using additional cluster capacity.
// For example, if your service has a desiredCount of four tasks and a minimumHealthyPercent
// of 50%, the scheduler may stop two existing tasks to free up cluster capacity
// before starting two new tasks. Tasks for services that do not use a load
// balancer are considered healthy if they are in the RUNNING state; tasks for
// services that do use a load balancer are considered healthy if they are in
// the RUNNING state and the container instance it is hosted on is reported
// as healthy by the load balancer. The default value for minimumHealthyPercent
// is 50% in the console and 100% for the AWS CLI, the AWS SDKs, and the APIs.
//
// The maximumPercent parameter represents an upper limit on the number of your
// service's tasks that are allowed in the RUNNING or PENDING state during a
// deployment, as a percentage of the desiredCount (rounded down to the nearest
// integer). This parameter enables you to define the deployment batch size.
// For example, if your service has a desiredCount of four tasks and a maximumPercent
// value of 200%, the scheduler may start four new tasks before stopping the
2016-01-29 20:53:56 +01:00
// four older tasks (provided that the cluster resources required to do this
// are available). The default value for maximumPercent is 200%.
//
// When the service scheduler launches new tasks, it attempts to balance them
// across the Availability Zones in your cluster with the following logic:
//
2016-11-19 19:41:01 +01:00
// * Determine which of the container instances in your cluster can support
// your service's task definition (for example, they have the required CPU,
// memory, ports, and container instance attributes).
2016-01-29 20:53:56 +01:00
//
2016-11-19 19:41:01 +01:00
// * Sort the valid container instances by the fewest number of running tasks
// for this service in the same Availability Zone as the instance. For example,
// if zone A has one running service task and zones B and C each have zero,
// valid container instances in either zone B or C are considered optimal
// for placement.
2016-01-29 20:53:56 +01:00
//
2016-11-19 19:41:01 +01:00
// * Place the new service task on a valid container instance in an optimal
// Availability Zone (based on the previous steps), favoring container instances
// with the fewest number of running tasks for this service.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation CreateService for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) CreateService ( input * CreateServiceInput ) ( * CreateServiceOutput , error ) {
req , out := c . CreateServiceRequest ( input )
err := req . Send ( )
return out , err
}
const opDeleteCluster = "DeleteCluster"
2016-07-15 15:49:02 +02:00
// DeleteClusterRequest generates a "aws/request.Request" representing the
// client's request for the DeleteCluster operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DeleteCluster for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DeleteCluster method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DeleteClusterRequest method.
// req, resp := client.DeleteClusterRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DeleteClusterRequest ( input * DeleteClusterInput ) ( req * request . Request , output * DeleteClusterOutput ) {
op := & request . Operation {
Name : opDeleteCluster ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteClusterInput { }
}
req = c . newRequest ( op , input , output )
output = & DeleteClusterOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// DeleteCluster API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Deletes the specified cluster. You must deregister all container instances
// from this cluster before you may delete it. You can list the container instances
// in a cluster with ListContainerInstances and deregister them with DeregisterContainerInstance.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation DeleteCluster for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
// * ClusterContainsContainerInstancesException
// You cannot delete a cluster that has registered container instances. You
// must first deregister the container instances before you can delete the cluster.
// For more information, see DeregisterContainerInstance.
//
// * ClusterContainsServicesException
// You cannot delete a cluster that contains services. You must first update
// the service to reduce its desired task count to 0 and then delete the service.
// For more information, see UpdateService and DeleteService.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DeleteCluster ( input * DeleteClusterInput ) ( * DeleteClusterOutput , error ) {
req , out := c . DeleteClusterRequest ( input )
err := req . Send ( )
return out , err
}
const opDeleteService = "DeleteService"
2016-07-15 15:49:02 +02:00
// DeleteServiceRequest generates a "aws/request.Request" representing the
// client's request for the DeleteService operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DeleteService for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DeleteService method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DeleteServiceRequest method.
// req, resp := client.DeleteServiceRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DeleteServiceRequest ( input * DeleteServiceInput ) ( req * request . Request , output * DeleteServiceOutput ) {
op := & request . Operation {
Name : opDeleteService ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteServiceInput { }
}
req = c . newRequest ( op , input , output )
output = & DeleteServiceOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// DeleteService API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Deletes a specified service within a cluster. You can delete a service if
// you have no running tasks in it and the desired task count is zero. If the
// service is actively maintaining tasks, you cannot delete it, and you must
// update the service to a desired task count of zero. For more information,
// see UpdateService.
//
2016-11-19 19:41:01 +01:00
// When you delete a service, if there are still running tasks that require
2016-01-29 20:53:56 +01:00
// cleanup, the service status moves from ACTIVE to DRAINING, and the service
// is no longer visible in the console or in ListServices API operations. After
// the tasks have stopped, then the service status moves from DRAINING to INACTIVE.
// Services in the DRAINING or INACTIVE status can still be viewed with DescribeServices
// API operations; however, in the future, INACTIVE services may be cleaned
// up and purged from Amazon ECS record keeping, and DescribeServices API operations
// on those services will return a ServiceNotFoundException error.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation DeleteService for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
// * ServiceNotFoundException
// The specified service could not be found. You can view your available services
// with ListServices. Amazon ECS services are cluster-specific and region-specific.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DeleteService ( input * DeleteServiceInput ) ( * DeleteServiceOutput , error ) {
req , out := c . DeleteServiceRequest ( input )
err := req . Send ( )
return out , err
}
const opDeregisterContainerInstance = "DeregisterContainerInstance"
2016-07-15 15:49:02 +02:00
// DeregisterContainerInstanceRequest generates a "aws/request.Request" representing the
// client's request for the DeregisterContainerInstance operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DeregisterContainerInstance for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DeregisterContainerInstance method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DeregisterContainerInstanceRequest method.
// req, resp := client.DeregisterContainerInstanceRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DeregisterContainerInstanceRequest ( input * DeregisterContainerInstanceInput ) ( req * request . Request , output * DeregisterContainerInstanceOutput ) {
op := & request . Operation {
Name : opDeregisterContainerInstance ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeregisterContainerInstanceInput { }
}
req = c . newRequest ( op , input , output )
output = & DeregisterContainerInstanceOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// DeregisterContainerInstance API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Deregisters an Amazon ECS container instance from the specified cluster.
// This instance is no longer available to run tasks.
//
// If you intend to use the container instance for some other purpose after
// deregistration, you should stop all of the tasks running on the container
// instance before deregistration to avoid any orphaned tasks from consuming
// resources.
//
2016-11-19 19:41:01 +01:00
// Deregistering a container instance removes the instance from a cluster, but
// it does not terminate the EC2 instance; if you are finished using the instance,
// be sure to terminate it in the Amazon EC2 console to stop billing.
2016-01-29 20:53:56 +01:00
//
2016-11-19 19:41:01 +01:00
// If you terminate a running container instance, Amazon ECS automatically deregisters
// the instance from your cluster (stopped container instances or instances
// with disconnected agents are not automatically deregistered when terminated).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation DeregisterContainerInstance for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DeregisterContainerInstance ( input * DeregisterContainerInstanceInput ) ( * DeregisterContainerInstanceOutput , error ) {
req , out := c . DeregisterContainerInstanceRequest ( input )
err := req . Send ( )
return out , err
}
const opDeregisterTaskDefinition = "DeregisterTaskDefinition"
2016-07-15 15:49:02 +02:00
// DeregisterTaskDefinitionRequest generates a "aws/request.Request" representing the
// client's request for the DeregisterTaskDefinition operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DeregisterTaskDefinition for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DeregisterTaskDefinition method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DeregisterTaskDefinitionRequest method.
// req, resp := client.DeregisterTaskDefinitionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DeregisterTaskDefinitionRequest ( input * DeregisterTaskDefinitionInput ) ( req * request . Request , output * DeregisterTaskDefinitionOutput ) {
op := & request . Operation {
Name : opDeregisterTaskDefinition ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeregisterTaskDefinitionInput { }
}
req = c . newRequest ( op , input , output )
output = & DeregisterTaskDefinitionOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// DeregisterTaskDefinition API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Deregisters the specified task definition by family and revision. Upon deregistration,
// the task definition is marked as INACTIVE. Existing tasks and services that
// reference an INACTIVE task definition continue to run without disruption.
// Existing services that reference an INACTIVE task definition can still scale
// up or down by modifying the service's desired count.
//
// You cannot use an INACTIVE task definition to run new tasks or create new
// services, and you cannot update an existing service to reference an INACTIVE
// task definition (although there may be up to a 10 minute window following
// deregistration where these restrictions have not yet taken effect).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation DeregisterTaskDefinition for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DeregisterTaskDefinition ( input * DeregisterTaskDefinitionInput ) ( * DeregisterTaskDefinitionOutput , error ) {
req , out := c . DeregisterTaskDefinitionRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeClusters = "DescribeClusters"
2016-07-15 15:49:02 +02:00
// DescribeClustersRequest generates a "aws/request.Request" representing the
// client's request for the DescribeClusters operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DescribeClusters for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeClusters method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeClustersRequest method.
// req, resp := client.DescribeClustersRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DescribeClustersRequest ( input * DescribeClustersInput ) ( req * request . Request , output * DescribeClustersOutput ) {
op := & request . Operation {
Name : opDescribeClusters ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeClustersInput { }
}
req = c . newRequest ( op , input , output )
output = & DescribeClustersOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// DescribeClusters API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Describes one or more of your clusters.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation DescribeClusters for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DescribeClusters ( input * DescribeClustersInput ) ( * DescribeClustersOutput , error ) {
req , out := c . DescribeClustersRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeContainerInstances = "DescribeContainerInstances"
2016-07-15 15:49:02 +02:00
// DescribeContainerInstancesRequest generates a "aws/request.Request" representing the
// client's request for the DescribeContainerInstances operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DescribeContainerInstances for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeContainerInstances method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeContainerInstancesRequest method.
// req, resp := client.DescribeContainerInstancesRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DescribeContainerInstancesRequest ( input * DescribeContainerInstancesInput ) ( req * request . Request , output * DescribeContainerInstancesOutput ) {
op := & request . Operation {
Name : opDescribeContainerInstances ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeContainerInstancesInput { }
}
req = c . newRequest ( op , input , output )
output = & DescribeContainerInstancesOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// DescribeContainerInstances API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Describes Amazon EC2 Container Service container instances. Returns metadata
// about registered and remaining resources on each container instance requested.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation DescribeContainerInstances for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DescribeContainerInstances ( input * DescribeContainerInstancesInput ) ( * DescribeContainerInstancesOutput , error ) {
req , out := c . DescribeContainerInstancesRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeServices = "DescribeServices"
2016-07-15 15:49:02 +02:00
// DescribeServicesRequest generates a "aws/request.Request" representing the
// client's request for the DescribeServices operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DescribeServices for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeServices method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeServicesRequest method.
// req, resp := client.DescribeServicesRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DescribeServicesRequest ( input * DescribeServicesInput ) ( req * request . Request , output * DescribeServicesOutput ) {
op := & request . Operation {
Name : opDescribeServices ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeServicesInput { }
}
req = c . newRequest ( op , input , output )
output = & DescribeServicesOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// DescribeServices API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Describes the specified services running in your cluster.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation DescribeServices for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DescribeServices ( input * DescribeServicesInput ) ( * DescribeServicesOutput , error ) {
req , out := c . DescribeServicesRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeTaskDefinition = "DescribeTaskDefinition"
2016-07-15 15:49:02 +02:00
// DescribeTaskDefinitionRequest generates a "aws/request.Request" representing the
// client's request for the DescribeTaskDefinition operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DescribeTaskDefinition for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeTaskDefinition method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeTaskDefinitionRequest method.
// req, resp := client.DescribeTaskDefinitionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DescribeTaskDefinitionRequest ( input * DescribeTaskDefinitionInput ) ( req * request . Request , output * DescribeTaskDefinitionOutput ) {
op := & request . Operation {
Name : opDescribeTaskDefinition ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeTaskDefinitionInput { }
}
req = c . newRequest ( op , input , output )
output = & DescribeTaskDefinitionOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// DescribeTaskDefinition API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Describes a task definition. You can specify a family and revision to find
// information about a specific task definition, or you can simply specify the
// family to find the latest ACTIVE revision in that family.
//
2016-11-19 19:41:01 +01:00
// You can only describe INACTIVE task definitions while an active task or service
// references them.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation DescribeTaskDefinition for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DescribeTaskDefinition ( input * DescribeTaskDefinitionInput ) ( * DescribeTaskDefinitionOutput , error ) {
req , out := c . DescribeTaskDefinitionRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeTasks = "DescribeTasks"
2016-07-15 15:49:02 +02:00
// DescribeTasksRequest generates a "aws/request.Request" representing the
// client's request for the DescribeTasks operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DescribeTasks for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeTasks method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeTasksRequest method.
// req, resp := client.DescribeTasksRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DescribeTasksRequest ( input * DescribeTasksInput ) ( req * request . Request , output * DescribeTasksOutput ) {
op := & request . Operation {
Name : opDescribeTasks ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeTasksInput { }
}
req = c . newRequest ( op , input , output )
output = & DescribeTasksOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// DescribeTasks API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Describes a specified task or tasks.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation DescribeTasks for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DescribeTasks ( input * DescribeTasksInput ) ( * DescribeTasksOutput , error ) {
req , out := c . DescribeTasksRequest ( input )
err := req . Send ( )
return out , err
}
const opDiscoverPollEndpoint = "DiscoverPollEndpoint"
2016-07-15 15:49:02 +02:00
// DiscoverPollEndpointRequest generates a "aws/request.Request" representing the
// client's request for the DiscoverPollEndpoint operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DiscoverPollEndpoint for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DiscoverPollEndpoint method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DiscoverPollEndpointRequest method.
// req, resp := client.DiscoverPollEndpointRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DiscoverPollEndpointRequest ( input * DiscoverPollEndpointInput ) ( req * request . Request , output * DiscoverPollEndpointOutput ) {
op := & request . Operation {
Name : opDiscoverPollEndpoint ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DiscoverPollEndpointInput { }
}
req = c . newRequest ( op , input , output )
output = & DiscoverPollEndpointOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// DiscoverPollEndpoint API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// This action is only used by the Amazon EC2 Container Service agent, and it
// is not intended for use outside of the agent.
//
2016-11-19 19:41:01 +01:00
// Returns an endpoint for the Amazon EC2 Container Service agent to poll for
// updates.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation DiscoverPollEndpoint for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) DiscoverPollEndpoint ( input * DiscoverPollEndpointInput ) ( * DiscoverPollEndpointOutput , error ) {
req , out := c . DiscoverPollEndpointRequest ( input )
err := req . Send ( )
return out , err
}
const opListClusters = "ListClusters"
2016-07-15 15:49:02 +02:00
// ListClustersRequest generates a "aws/request.Request" representing the
// client's request for the ListClusters operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ListClusters for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListClusters method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListClustersRequest method.
// req, resp := client.ListClustersRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListClustersRequest ( input * ListClustersInput ) ( req * request . Request , output * ListClustersOutput ) {
op := & request . Operation {
Name : opListClusters ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
Paginator : & request . Paginator {
InputTokens : [ ] string { "nextToken" } ,
OutputTokens : [ ] string { "nextToken" } ,
LimitToken : "maxResults" ,
TruncationToken : "" ,
} ,
}
if input == nil {
input = & ListClustersInput { }
}
req = c . newRequest ( op , input , output )
output = & ListClustersOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// ListClusters API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Returns a list of existing clusters.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation ListClusters for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListClusters ( input * ListClustersInput ) ( * ListClustersOutput , error ) {
req , out := c . ListClustersRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
// ListClustersPages iterates over the pages of a ListClusters operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListClusters method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListClusters operation.
// pageNum := 0
// err := client.ListClustersPages(params,
// func(page *ListClustersOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListClustersPages ( input * ListClustersInput , fn func ( p * ListClustersOutput , lastPage bool ) ( shouldContinue bool ) ) error {
page , _ := c . ListClustersRequest ( input )
page . Handlers . Build . PushBack ( request . MakeAddToUserAgentFreeFormHandler ( "Paginator" ) )
return page . EachPage ( func ( p interface { } , lastPage bool ) bool {
return fn ( p . ( * ListClustersOutput ) , lastPage )
} )
}
const opListContainerInstances = "ListContainerInstances"
2016-07-15 15:49:02 +02:00
// ListContainerInstancesRequest generates a "aws/request.Request" representing the
// client's request for the ListContainerInstances operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ListContainerInstances for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListContainerInstances method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListContainerInstancesRequest method.
// req, resp := client.ListContainerInstancesRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListContainerInstancesRequest ( input * ListContainerInstancesInput ) ( req * request . Request , output * ListContainerInstancesOutput ) {
op := & request . Operation {
Name : opListContainerInstances ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
Paginator : & request . Paginator {
InputTokens : [ ] string { "nextToken" } ,
OutputTokens : [ ] string { "nextToken" } ,
LimitToken : "maxResults" ,
TruncationToken : "" ,
} ,
}
if input == nil {
input = & ListContainerInstancesInput { }
}
req = c . newRequest ( op , input , output )
output = & ListContainerInstancesOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// ListContainerInstances API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Returns a list of container instances in a specified cluster.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation ListContainerInstances for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListContainerInstances ( input * ListContainerInstancesInput ) ( * ListContainerInstancesOutput , error ) {
req , out := c . ListContainerInstancesRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
// ListContainerInstancesPages iterates over the pages of a ListContainerInstances operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListContainerInstances method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListContainerInstances operation.
// pageNum := 0
// err := client.ListContainerInstancesPages(params,
// func(page *ListContainerInstancesOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListContainerInstancesPages ( input * ListContainerInstancesInput , fn func ( p * ListContainerInstancesOutput , lastPage bool ) ( shouldContinue bool ) ) error {
page , _ := c . ListContainerInstancesRequest ( input )
page . Handlers . Build . PushBack ( request . MakeAddToUserAgentFreeFormHandler ( "Paginator" ) )
return page . EachPage ( func ( p interface { } , lastPage bool ) bool {
return fn ( p . ( * ListContainerInstancesOutput ) , lastPage )
} )
}
const opListServices = "ListServices"
2016-07-15 15:49:02 +02:00
// ListServicesRequest generates a "aws/request.Request" representing the
// client's request for the ListServices operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ListServices for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListServices method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListServicesRequest method.
// req, resp := client.ListServicesRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListServicesRequest ( input * ListServicesInput ) ( req * request . Request , output * ListServicesOutput ) {
op := & request . Operation {
Name : opListServices ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
Paginator : & request . Paginator {
InputTokens : [ ] string { "nextToken" } ,
OutputTokens : [ ] string { "nextToken" } ,
LimitToken : "maxResults" ,
TruncationToken : "" ,
} ,
}
if input == nil {
input = & ListServicesInput { }
}
req = c . newRequest ( op , input , output )
output = & ListServicesOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// ListServices API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Lists the services that are running in a specified cluster.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation ListServices for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListServices ( input * ListServicesInput ) ( * ListServicesOutput , error ) {
req , out := c . ListServicesRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
// ListServicesPages iterates over the pages of a ListServices operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListServices method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListServices operation.
// pageNum := 0
// err := client.ListServicesPages(params,
// func(page *ListServicesOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListServicesPages ( input * ListServicesInput , fn func ( p * ListServicesOutput , lastPage bool ) ( shouldContinue bool ) ) error {
page , _ := c . ListServicesRequest ( input )
page . Handlers . Build . PushBack ( request . MakeAddToUserAgentFreeFormHandler ( "Paginator" ) )
return page . EachPage ( func ( p interface { } , lastPage bool ) bool {
return fn ( p . ( * ListServicesOutput ) , lastPage )
} )
}
const opListTaskDefinitionFamilies = "ListTaskDefinitionFamilies"
2016-07-15 15:49:02 +02:00
// ListTaskDefinitionFamiliesRequest generates a "aws/request.Request" representing the
// client's request for the ListTaskDefinitionFamilies operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ListTaskDefinitionFamilies for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListTaskDefinitionFamilies method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListTaskDefinitionFamiliesRequest method.
// req, resp := client.ListTaskDefinitionFamiliesRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListTaskDefinitionFamiliesRequest ( input * ListTaskDefinitionFamiliesInput ) ( req * request . Request , output * ListTaskDefinitionFamiliesOutput ) {
op := & request . Operation {
Name : opListTaskDefinitionFamilies ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
Paginator : & request . Paginator {
InputTokens : [ ] string { "nextToken" } ,
OutputTokens : [ ] string { "nextToken" } ,
LimitToken : "maxResults" ,
TruncationToken : "" ,
} ,
}
if input == nil {
input = & ListTaskDefinitionFamiliesInput { }
}
req = c . newRequest ( op , input , output )
output = & ListTaskDefinitionFamiliesOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// ListTaskDefinitionFamilies API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Returns a list of task definition families that are registered to your account
// (which may include task definition families that no longer have any ACTIVE
2016-07-15 15:49:02 +02:00
// task definition revisions).
//
// You can filter out task definition families that do not contain any ACTIVE
// task definition revisions by setting the status parameter to ACTIVE. You
// can also filter the results with the familyPrefix parameter.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation ListTaskDefinitionFamilies for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListTaskDefinitionFamilies ( input * ListTaskDefinitionFamiliesInput ) ( * ListTaskDefinitionFamiliesOutput , error ) {
req , out := c . ListTaskDefinitionFamiliesRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
// ListTaskDefinitionFamiliesPages iterates over the pages of a ListTaskDefinitionFamilies operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListTaskDefinitionFamilies method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListTaskDefinitionFamilies operation.
// pageNum := 0
// err := client.ListTaskDefinitionFamiliesPages(params,
// func(page *ListTaskDefinitionFamiliesOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListTaskDefinitionFamiliesPages ( input * ListTaskDefinitionFamiliesInput , fn func ( p * ListTaskDefinitionFamiliesOutput , lastPage bool ) ( shouldContinue bool ) ) error {
page , _ := c . ListTaskDefinitionFamiliesRequest ( input )
page . Handlers . Build . PushBack ( request . MakeAddToUserAgentFreeFormHandler ( "Paginator" ) )
return page . EachPage ( func ( p interface { } , lastPage bool ) bool {
return fn ( p . ( * ListTaskDefinitionFamiliesOutput ) , lastPage )
} )
}
const opListTaskDefinitions = "ListTaskDefinitions"
2016-07-15 15:49:02 +02:00
// ListTaskDefinitionsRequest generates a "aws/request.Request" representing the
// client's request for the ListTaskDefinitions operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ListTaskDefinitions for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListTaskDefinitions method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListTaskDefinitionsRequest method.
// req, resp := client.ListTaskDefinitionsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListTaskDefinitionsRequest ( input * ListTaskDefinitionsInput ) ( req * request . Request , output * ListTaskDefinitionsOutput ) {
op := & request . Operation {
Name : opListTaskDefinitions ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
Paginator : & request . Paginator {
InputTokens : [ ] string { "nextToken" } ,
OutputTokens : [ ] string { "nextToken" } ,
LimitToken : "maxResults" ,
TruncationToken : "" ,
} ,
}
if input == nil {
input = & ListTaskDefinitionsInput { }
}
req = c . newRequest ( op , input , output )
output = & ListTaskDefinitionsOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// ListTaskDefinitions API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Returns a list of task definitions that are registered to your account. You
// can filter the results by family name with the familyPrefix parameter or
// by status with the status parameter.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation ListTaskDefinitions for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListTaskDefinitions ( input * ListTaskDefinitionsInput ) ( * ListTaskDefinitionsOutput , error ) {
req , out := c . ListTaskDefinitionsRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
// ListTaskDefinitionsPages iterates over the pages of a ListTaskDefinitions operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListTaskDefinitions method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListTaskDefinitions operation.
// pageNum := 0
// err := client.ListTaskDefinitionsPages(params,
// func(page *ListTaskDefinitionsOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListTaskDefinitionsPages ( input * ListTaskDefinitionsInput , fn func ( p * ListTaskDefinitionsOutput , lastPage bool ) ( shouldContinue bool ) ) error {
page , _ := c . ListTaskDefinitionsRequest ( input )
page . Handlers . Build . PushBack ( request . MakeAddToUserAgentFreeFormHandler ( "Paginator" ) )
return page . EachPage ( func ( p interface { } , lastPage bool ) bool {
return fn ( p . ( * ListTaskDefinitionsOutput ) , lastPage )
} )
}
const opListTasks = "ListTasks"
2016-07-15 15:49:02 +02:00
// ListTasksRequest generates a "aws/request.Request" representing the
// client's request for the ListTasks operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ListTasks for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListTasks method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListTasksRequest method.
// req, resp := client.ListTasksRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListTasksRequest ( input * ListTasksInput ) ( req * request . Request , output * ListTasksOutput ) {
op := & request . Operation {
Name : opListTasks ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
Paginator : & request . Paginator {
InputTokens : [ ] string { "nextToken" } ,
OutputTokens : [ ] string { "nextToken" } ,
LimitToken : "maxResults" ,
TruncationToken : "" ,
} ,
}
if input == nil {
input = & ListTasksInput { }
}
req = c . newRequest ( op , input , output )
output = & ListTasksOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// ListTasks API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Returns a list of tasks for a specified cluster. You can filter the results
// by family name, by a particular container instance, or by the desired status
// of the task with the family, containerInstance, and desiredStatus parameters.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// Recently-stopped tasks might appear in the returned results. Currently, stopped
// tasks appear in the returned results for at least one hour.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation ListTasks for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
// * ServiceNotFoundException
// The specified service could not be found. You can view your available services
// with ListServices. Amazon ECS services are cluster-specific and region-specific.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListTasks ( input * ListTasksInput ) ( * ListTasksOutput , error ) {
req , out := c . ListTasksRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
// ListTasksPages iterates over the pages of a ListTasks operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListTasks method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListTasks operation.
// pageNum := 0
// err := client.ListTasksPages(params,
// func(page *ListTasksOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) ListTasksPages ( input * ListTasksInput , fn func ( p * ListTasksOutput , lastPage bool ) ( shouldContinue bool ) ) error {
page , _ := c . ListTasksRequest ( input )
page . Handlers . Build . PushBack ( request . MakeAddToUserAgentFreeFormHandler ( "Paginator" ) )
return page . EachPage ( func ( p interface { } , lastPage bool ) bool {
return fn ( p . ( * ListTasksOutput ) , lastPage )
} )
}
const opRegisterContainerInstance = "RegisterContainerInstance"
2016-07-15 15:49:02 +02:00
// RegisterContainerInstanceRequest generates a "aws/request.Request" representing the
// client's request for the RegisterContainerInstance operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See RegisterContainerInstance for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the RegisterContainerInstance method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the RegisterContainerInstanceRequest method.
// req, resp := client.RegisterContainerInstanceRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) RegisterContainerInstanceRequest ( input * RegisterContainerInstanceInput ) ( req * request . Request , output * RegisterContainerInstanceOutput ) {
op := & request . Operation {
Name : opRegisterContainerInstance ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & RegisterContainerInstanceInput { }
}
req = c . newRequest ( op , input , output )
output = & RegisterContainerInstanceOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// RegisterContainerInstance API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// This action is only used by the Amazon EC2 Container Service agent, and it
// is not intended for use outside of the agent.
//
2016-11-19 19:41:01 +01:00
// Registers an EC2 instance into the specified cluster. This instance becomes
2016-01-29 20:53:56 +01:00
// available to place containers on.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation RegisterContainerInstance for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) RegisterContainerInstance ( input * RegisterContainerInstanceInput ) ( * RegisterContainerInstanceOutput , error ) {
req , out := c . RegisterContainerInstanceRequest ( input )
err := req . Send ( )
return out , err
}
const opRegisterTaskDefinition = "RegisterTaskDefinition"
2016-07-15 15:49:02 +02:00
// RegisterTaskDefinitionRequest generates a "aws/request.Request" representing the
// client's request for the RegisterTaskDefinition operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See RegisterTaskDefinition for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the RegisterTaskDefinition method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the RegisterTaskDefinitionRequest method.
// req, resp := client.RegisterTaskDefinitionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) RegisterTaskDefinitionRequest ( input * RegisterTaskDefinitionInput ) ( req * request . Request , output * RegisterTaskDefinitionOutput ) {
op := & request . Operation {
Name : opRegisterTaskDefinition ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & RegisterTaskDefinitionInput { }
}
req = c . newRequest ( op , input , output )
output = & RegisterTaskDefinitionOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// RegisterTaskDefinition API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Registers a new task definition from the supplied family and containerDefinitions.
// Optionally, you can add data volumes to your containers with the volumes
// parameter. For more information about task definition parameters and defaults,
// see Amazon ECS Task Definitions (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html)
// in the Amazon EC2 Container Service Developer Guide.
2016-07-15 15:49:02 +02:00
//
2016-08-20 11:16:03 +02:00
// You can specify an IAM role for your task with the taskRoleArn parameter.
2016-07-15 15:49:02 +02:00
// 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.
2016-08-20 11:16:03 +02:00
//
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation RegisterTaskDefinition for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) RegisterTaskDefinition ( input * RegisterTaskDefinitionInput ) ( * RegisterTaskDefinitionOutput , error ) {
req , out := c . RegisterTaskDefinitionRequest ( input )
err := req . Send ( )
return out , err
}
const opRunTask = "RunTask"
2016-07-15 15:49:02 +02:00
// RunTaskRequest generates a "aws/request.Request" representing the
// client's request for the RunTask operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See RunTask for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the RunTask method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the RunTaskRequest method.
// req, resp := client.RunTaskRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) RunTaskRequest ( input * RunTaskInput ) ( req * request . Request , output * RunTaskOutput ) {
op := & request . Operation {
Name : opRunTask ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & RunTaskInput { }
}
req = c . newRequest ( op , input , output )
output = & RunTaskOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// RunTask API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Start a task using random placement and the default Amazon ECS scheduler.
// To use your own scheduler or place a task on a specific container instance,
// use StartTask instead.
//
2016-11-19 19:41:01 +01:00
// The count parameter is limited to 10 tasks per call.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation RunTask for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) RunTask ( input * RunTaskInput ) ( * RunTaskOutput , error ) {
req , out := c . RunTaskRequest ( input )
err := req . Send ( )
return out , err
}
const opStartTask = "StartTask"
2016-07-15 15:49:02 +02:00
// StartTaskRequest generates a "aws/request.Request" representing the
// client's request for the StartTask operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See StartTask for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the StartTask method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the StartTaskRequest method.
// req, resp := client.StartTaskRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) StartTaskRequest ( input * StartTaskInput ) ( req * request . Request , output * StartTaskOutput ) {
op := & request . Operation {
Name : opStartTask ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & StartTaskInput { }
}
req = c . newRequest ( op , input , output )
output = & StartTaskOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// StartTask API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Starts a new task from the specified task definition on the specified container
// instance or instances. To use the default Amazon ECS scheduler to place your
// task, use RunTask instead.
//
2016-11-19 19:41:01 +01:00
// The list of container instances to start tasks on is limited to 10.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation StartTask for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) StartTask ( input * StartTaskInput ) ( * StartTaskOutput , error ) {
req , out := c . StartTaskRequest ( input )
err := req . Send ( )
return out , err
}
const opStopTask = "StopTask"
2016-07-15 15:49:02 +02:00
// StopTaskRequest generates a "aws/request.Request" representing the
// client's request for the StopTask operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See StopTask for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the StopTask method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the StopTaskRequest method.
// req, resp := client.StopTaskRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) StopTaskRequest ( input * StopTaskInput ) ( req * request . Request , output * StopTaskOutput ) {
op := & request . Operation {
Name : opStopTask ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & StopTaskInput { }
}
req = c . newRequest ( op , input , output )
output = & StopTaskOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// StopTask API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Stops a running task.
//
// When StopTask is called on a task, the equivalent of docker stop is issued
// to the containers running in the task. This results in a SIGTERM and a 30-second
// timeout, after which SIGKILL is sent and the containers are forcibly stopped.
// If the container handles the SIGTERM gracefully and exits within 30 seconds
// from receiving it, no SIGKILL is sent.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation StopTask for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) StopTask ( input * StopTaskInput ) ( * StopTaskOutput , error ) {
req , out := c . StopTaskRequest ( input )
err := req . Send ( )
return out , err
}
const opSubmitContainerStateChange = "SubmitContainerStateChange"
2016-07-15 15:49:02 +02:00
// SubmitContainerStateChangeRequest generates a "aws/request.Request" representing the
// client's request for the SubmitContainerStateChange operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See SubmitContainerStateChange for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the SubmitContainerStateChange method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the SubmitContainerStateChangeRequest method.
// req, resp := client.SubmitContainerStateChangeRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) SubmitContainerStateChangeRequest ( input * SubmitContainerStateChangeInput ) ( req * request . Request , output * SubmitContainerStateChangeOutput ) {
op := & request . Operation {
Name : opSubmitContainerStateChange ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & SubmitContainerStateChangeInput { }
}
req = c . newRequest ( op , input , output )
output = & SubmitContainerStateChangeOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// SubmitContainerStateChange API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// This action is only used by the Amazon EC2 Container Service agent, and it
// is not intended for use outside of the agent.
//
2016-11-19 19:41:01 +01:00
// Sent to acknowledge that a container changed states.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation SubmitContainerStateChange for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) SubmitContainerStateChange ( input * SubmitContainerStateChangeInput ) ( * SubmitContainerStateChangeOutput , error ) {
req , out := c . SubmitContainerStateChangeRequest ( input )
err := req . Send ( )
return out , err
}
const opSubmitTaskStateChange = "SubmitTaskStateChange"
2016-07-15 15:49:02 +02:00
// SubmitTaskStateChangeRequest generates a "aws/request.Request" representing the
// client's request for the SubmitTaskStateChange operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See SubmitTaskStateChange for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the SubmitTaskStateChange method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the SubmitTaskStateChangeRequest method.
// req, resp := client.SubmitTaskStateChangeRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) SubmitTaskStateChangeRequest ( input * SubmitTaskStateChangeInput ) ( req * request . Request , output * SubmitTaskStateChangeOutput ) {
op := & request . Operation {
Name : opSubmitTaskStateChange ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & SubmitTaskStateChangeInput { }
}
req = c . newRequest ( op , input , output )
output = & SubmitTaskStateChangeOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// SubmitTaskStateChange API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// This action is only used by the Amazon EC2 Container Service agent, and it
// is not intended for use outside of the agent.
//
2016-11-19 19:41:01 +01:00
// Sent to acknowledge that a task changed states.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation SubmitTaskStateChange for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) SubmitTaskStateChange ( input * SubmitTaskStateChangeInput ) ( * SubmitTaskStateChangeOutput , error ) {
req , out := c . SubmitTaskStateChangeRequest ( input )
err := req . Send ( )
return out , err
}
const opUpdateContainerAgent = "UpdateContainerAgent"
2016-07-15 15:49:02 +02:00
// UpdateContainerAgentRequest generates a "aws/request.Request" representing the
// client's request for the UpdateContainerAgent operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See UpdateContainerAgent for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the UpdateContainerAgent method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the UpdateContainerAgentRequest method.
// req, resp := client.UpdateContainerAgentRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) UpdateContainerAgentRequest ( input * UpdateContainerAgentInput ) ( req * request . Request , output * UpdateContainerAgentOutput ) {
op := & request . Operation {
Name : opUpdateContainerAgent ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & UpdateContainerAgentInput { }
}
req = c . newRequest ( op , input , output )
output = & UpdateContainerAgentOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// UpdateContainerAgent API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Updates the Amazon ECS container agent on a specified container instance.
// Updating the Amazon ECS container agent does not interrupt running tasks
// or services on the container instance. The process for updating the agent
// differs depending on whether your container instance was launched with the
// Amazon ECS-optimized AMI or another operating system.
//
2016-11-19 19:41:01 +01:00
// UpdateContainerAgent requires the Amazon ECS-optimized AMI or Amazon Linux
2016-01-29 20:53:56 +01:00
// with the ecs-init service installed and running. For help updating the Amazon
// ECS container agent on other operating systems, see Manually Updating the
// Amazon ECS Container Agent (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html#manually_update_agent)
// in the Amazon EC2 Container Service Developer Guide.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation UpdateContainerAgent for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
// * UpdateInProgressException
// There is already a current Amazon ECS container agent update in progress
// on the specified container instance. If the container agent becomes disconnected
// while it is in a transitional stage, such as PENDING or STAGING, the update
// process can get stuck in that state. However, when the agent reconnects,
// it resumes where it stopped previously.
//
// * NoUpdateAvailableException
// There is no update available for this Amazon ECS container agent. This could
// be because the agent is already running the latest version, or it is so old
// that there is no update path to the current version.
//
// * MissingVersionException
// Amazon ECS is unable to determine the current version of the Amazon ECS container
// agent on the container instance and does not have enough information to proceed
// with an update. This could be because the agent running on the container
// instance is an older or custom version that does not use our version information.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) UpdateContainerAgent ( input * UpdateContainerAgentInput ) ( * UpdateContainerAgentOutput , error ) {
req , out := c . UpdateContainerAgentRequest ( input )
err := req . Send ( )
return out , err
}
const opUpdateService = "UpdateService"
2016-07-15 15:49:02 +02:00
// UpdateServiceRequest generates a "aws/request.Request" representing the
// client's request for the UpdateService operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See UpdateService for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the UpdateService method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the UpdateServiceRequest method.
// req, resp := client.UpdateServiceRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) UpdateServiceRequest ( input * UpdateServiceInput ) ( req * request . Request , output * UpdateServiceOutput ) {
op := & request . Operation {
Name : opUpdateService ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & UpdateServiceInput { }
}
req = c . newRequest ( op , input , output )
output = & UpdateServiceOutput { }
req . Data = output
return
}
2016-10-17 23:21:08 +02:00
// UpdateService API operation for Amazon EC2 Container Service.
//
2016-01-29 20:53:56 +01:00
// Modifies the desired count, deployment configuration, or task definition
// used in a service.
//
// You can add to or subtract from the number of instantiations of a task definition
// in a service by specifying the cluster that the service is running in and
// a new desiredCount parameter.
//
// You can use UpdateService to modify your task definition and deploy a new
// version of your service.
//
// You can also update the deployment configuration of a service. When a deployment
// is triggered by updating the task definition of a service, the service scheduler
// uses the deployment configuration parameters, minimumHealthyPercent and maximumPercent,
// to determine the deployment strategy.
//
// If the minimumHealthyPercent is below 100%, the scheduler can ignore the
// desiredCount temporarily during a deployment. For example, if your service
// has a desiredCount of four tasks, a minimumHealthyPercent of 50% allows the
// scheduler to stop two existing tasks before starting two new tasks. Tasks
// for services that do not use a load balancer are considered healthy if they
// are in the RUNNING state; tasks for services that do use a load balancer
// are considered healthy if they are in the RUNNING state and the container
// instance it is hosted on is reported as healthy by the load balancer.
//
2016-11-19 19:41:01 +01:00
// The maximumPercent parameter represents an upper limit on the number of running
// tasks during a deployment, which enables you to define the deployment batch
// size. For example, if your service has a desiredCount of four tasks, a maximumPercent
// value of 200% starts four new tasks before stopping the four older tasks
// (provided that the cluster resources required to do this are available).
2016-01-29 20:53:56 +01:00
//
// When UpdateService stops a task during a deployment, the equivalent of docker
// stop is issued to the containers running in the task. This results in a SIGTERM
// and a 30-second timeout, after which SIGKILL is sent and the containers are
// forcibly stopped. If the container handles the SIGTERM gracefully and exits
// within 30 seconds from receiving it, no SIGKILL is sent.
//
// When the service scheduler launches new tasks, it attempts to balance them
// across the Availability Zones in your cluster with the following logic:
//
2016-11-19 19:41:01 +01:00
// * Determine which of the container instances in your cluster can support
// your service's task definition (for example, they have the required CPU,
// memory, ports, and container instance attributes).
2016-01-29 20:53:56 +01:00
//
2016-11-19 19:41:01 +01:00
// * Sort the valid container instances by the fewest number of running tasks
// for this service in the same Availability Zone as the instance. For example,
// if zone A has one running service task and zones B and C each have zero,
// valid container instances in either zone B or C are considered optimal
// for placement.
2016-01-29 20:53:56 +01:00
//
2016-11-19 19:41:01 +01:00
// * Place the new service task on a valid container instance in an optimal
// Availability Zone (based on the previous steps), favoring container instances
// with the fewest number of running tasks for this service.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon EC2 Container Service's
// API operation UpdateService for usage and error information.
//
// Returned Error Codes:
// * ServerException
// These errors are usually caused by a server issue.
//
// * ClientException
// These errors are usually caused by a client action, such as using an action
// or resource on behalf of a user that doesn't have permission to use the action
// or resource, or specifying an identifier that is not valid.
//
// * InvalidParameterException
// The specified parameter is invalid. Review the available parameters for the
// API request.
//
// * ClusterNotFoundException
// The specified cluster could not be found. You can view your available clusters
// with ListClusters. Amazon ECS clusters are region-specific.
//
// * ServiceNotFoundException
// The specified service could not be found. You can view your available services
// with ListServices. Amazon ECS services are cluster-specific and region-specific.
//
// * ServiceNotActiveException
// The specified service is not active. You cannot update a service that is
// not active. If you have previously deleted a service, you can re-create it
// with CreateService.
//
2016-01-29 20:53:56 +01:00
func ( c * ECS ) UpdateService ( input * UpdateServiceInput ) ( * UpdateServiceOutput , error ) {
req , out := c . UpdateServiceRequest ( input )
err := req . Send ( )
return out , err
}
// The attributes applicable to a container instance when it is registered.
type Attribute struct {
_ struct { } ` type:"structure" `
// The name of the container instance attribute.
2016-10-17 23:21:08 +02:00
//
// Name is a required field
2016-01-29 20:53:56 +01:00
Name * string ` locationName:"name" type:"string" required:"true" `
// The value of the container instance attribute (at this time, the value here
// is Null, but this could change in future revisions for expandability).
Value * string ` locationName:"value" type:"string" `
}
// String returns the string representation
func ( s Attribute ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Attribute ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * Attribute ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "Attribute" }
if s . Name == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Name" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetName sets the Name field's value.
func ( s * Attribute ) SetName ( v string ) * Attribute {
s . Name = & v
return s
}
// SetValue sets the Value field's value.
func ( s * Attribute ) SetValue ( v string ) * Attribute {
s . Value = & v
return s
}
2016-01-29 20:53:56 +01:00
// A regional grouping of one or more container instances on which you can run
// task requests. Each account receives a default cluster the first time you
// use the Amazon ECS service, but you may also create other clusters. Clusters
// may contain more than one instance type simultaneously.
type Cluster struct {
_ struct { } ` type:"structure" `
// The number of services that are running on the cluster in an ACTIVE state.
// You can view these services with ListServices.
ActiveServicesCount * int64 ` locationName:"activeServicesCount" type:"integer" `
// The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains
// the arn:aws:ecs namespace, followed by the region of the cluster, the AWS
// account ID of the cluster owner, the cluster namespace, and then the cluster
2016-11-19 19:41:01 +01:00
// name. For example, arn:aws:ecs:region:012345678910:cluster/test..
2016-01-29 20:53:56 +01:00
ClusterArn * string ` locationName:"clusterArn" type:"string" `
// A user-generated string that you use to identify your cluster.
ClusterName * string ` locationName:"clusterName" type:"string" `
// The number of tasks in the cluster that are in the PENDING state.
PendingTasksCount * int64 ` locationName:"pendingTasksCount" type:"integer" `
// The number of container instances registered into the cluster.
RegisteredContainerInstancesCount * int64 ` locationName:"registeredContainerInstancesCount" type:"integer" `
// The number of tasks in the cluster that are in the RUNNING state.
RunningTasksCount * int64 ` locationName:"runningTasksCount" type:"integer" `
// The status of the cluster. The valid values are ACTIVE or INACTIVE. ACTIVE
// indicates that you can register container instances with the cluster and
// the associated instances can accept tasks.
Status * string ` locationName:"status" type:"string" `
}
// String returns the string representation
func ( s Cluster ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Cluster ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetActiveServicesCount sets the ActiveServicesCount field's value.
func ( s * Cluster ) SetActiveServicesCount ( v int64 ) * Cluster {
s . ActiveServicesCount = & v
return s
}
// SetClusterArn sets the ClusterArn field's value.
func ( s * Cluster ) SetClusterArn ( v string ) * Cluster {
s . ClusterArn = & v
return s
}
// SetClusterName sets the ClusterName field's value.
func ( s * Cluster ) SetClusterName ( v string ) * Cluster {
s . ClusterName = & v
return s
}
// SetPendingTasksCount sets the PendingTasksCount field's value.
func ( s * Cluster ) SetPendingTasksCount ( v int64 ) * Cluster {
s . PendingTasksCount = & v
return s
}
// SetRegisteredContainerInstancesCount sets the RegisteredContainerInstancesCount field's value.
func ( s * Cluster ) SetRegisteredContainerInstancesCount ( v int64 ) * Cluster {
s . RegisteredContainerInstancesCount = & v
return s
}
// SetRunningTasksCount sets the RunningTasksCount field's value.
func ( s * Cluster ) SetRunningTasksCount ( v int64 ) * Cluster {
s . RunningTasksCount = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * Cluster ) SetStatus ( v string ) * Cluster {
s . Status = & v
return s
}
2016-01-29 20:53:56 +01:00
// A Docker container that is part of a task.
type Container struct {
_ struct { } ` type:"structure" `
// The Amazon Resource Name (ARN) of the container.
ContainerArn * string ` locationName:"containerArn" type:"string" `
// The exit code returned from the container.
ExitCode * int64 ` locationName:"exitCode" type:"integer" `
// The last known status of the container.
LastStatus * string ` locationName:"lastStatus" type:"string" `
// The name of the container.
Name * string ` locationName:"name" type:"string" `
// The network bindings associated with the container.
NetworkBindings [ ] * NetworkBinding ` locationName:"networkBindings" type:"list" `
// A short (255 max characters) human-readable string to provide additional
// detail about a running or stopped container.
Reason * string ` locationName:"reason" type:"string" `
// The Amazon Resource Name (ARN) of the task.
TaskArn * string ` locationName:"taskArn" type:"string" `
}
// String returns the string representation
func ( s Container ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Container ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetContainerArn sets the ContainerArn field's value.
func ( s * Container ) SetContainerArn ( v string ) * Container {
s . ContainerArn = & v
return s
}
// SetExitCode sets the ExitCode field's value.
func ( s * Container ) SetExitCode ( v int64 ) * Container {
s . ExitCode = & v
return s
}
// SetLastStatus sets the LastStatus field's value.
func ( s * Container ) SetLastStatus ( v string ) * Container {
s . LastStatus = & v
return s
}
// SetName sets the Name field's value.
func ( s * Container ) SetName ( v string ) * Container {
s . Name = & v
return s
}
// SetNetworkBindings sets the NetworkBindings field's value.
func ( s * Container ) SetNetworkBindings ( v [ ] * NetworkBinding ) * Container {
s . NetworkBindings = v
return s
}
// SetReason sets the Reason field's value.
func ( s * Container ) SetReason ( v string ) * Container {
s . Reason = & v
return s
}
// SetTaskArn sets the TaskArn field's value.
func ( s * Container ) SetTaskArn ( v string ) * Container {
s . TaskArn = & v
return s
}
2016-01-29 20:53:56 +01:00
// Container definitions are used in task definitions to describe the different
// containers that are launched as part of a task.
type ContainerDefinition struct {
_ struct { } ` type:"structure" `
// The command that is passed to the container. This parameter maps to Cmd in
2016-11-19 19:41:01 +01:00
// the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the COMMAND parameter to docker run (https://docs.docker.com/engine/reference/run/).
// For more information, see https://docs.docker.com/engine/reference/builder/#cmd
// (https://docs.docker.com/engine/reference/builder/#cmd).
2016-01-29 20:53:56 +01:00
Command [ ] * string ` locationName:"command" type:"list" `
// The number of cpu units reserved for the container. A container instance
// has 1,024 cpu units for every CPU core. This parameter specifies the minimum
// 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
2016-11-19 19:41:01 +01:00
// (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --cpu-shares option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
//
2016-11-19 19:41:01 +01:00
// You can determine the number of CPU units that are available per EC2 instance
2016-01-29 20:53:56 +01:00
// type by multiplying the vCPUs listed for that instance type on the Amazon
// EC2 Instances (http://aws.amazon.com/ec2/instance-types/) detail page by
// 1,024.
//
2016-11-19 19:41:01 +01:00
// For example, if you run a single-container task on a single-core instance
2016-01-29 20:53:56 +01:00
// type with 512 CPU units specified for that container, and that is the only
// task running on the container instance, that container could use the full
// 1,024 CPU unit share at any given time. However, if you launched another
// copy of the same task on that container instance, each task would be guaranteed
// a minimum of 512 CPU units when needed, and each container could float to
// higher CPU usage if the other container was not using it, but if both tasks
// were 100% active all of the time, they would be limited to 512 CPU units.
//
// The Docker daemon on the container instance uses the CPU value to calculate
// the relative CPU share ratios for running containers. For more information,
2016-11-19 19:41:01 +01:00
// see CPU share constraint (https://docs.docker.com/engine/reference/run/#cpu-share-constraint)
2016-01-29 20:53:56 +01:00
// in the Docker documentation. The minimum valid CPU share value that the Linux
// kernel allows is 2; however, the CPU parameter is not required, and you can
// use CPU values below 2 in your container definitions. For CPU values below
// 2 (including null), the behavior varies based on your Amazon ECS container
// agent version:
//
2016-11-19 19:41:01 +01:00
// * Agent versions less than or equal to 1.1.0: Null and zero CPU values
// are passed to Docker as 0, which Docker then converts to 1,024 CPU shares.
// CPU values of 1 are passed to Docker as 1, which the Linux kernel converts
// to 2 CPU shares.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Agent versions greater than or equal to 1.2.0: Null, zero, and CPU values
// of 1 are passed to Docker as 2.
2016-01-29 20:53:56 +01:00
Cpu * int64 ` locationName:"cpu" type:"integer" `
// When this parameter is true, networking is disabled within the container.
2016-11-19 19:41:01 +01:00
// This parameter maps to NetworkDisabled in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/).
2016-01-29 20:53:56 +01:00
DisableNetworking * bool ` locationName:"disableNetworking" type:"boolean" `
// A list of DNS search domains that are presented to the container. This parameter
2016-11-19 19:41:01 +01:00
// maps to DnsSearch in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --dns-search option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
DnsSearchDomains [ ] * string ` locationName:"dnsSearchDomains" type:"list" `
// A list of DNS servers that are presented to the container. This parameter
2016-11-19 19:41:01 +01:00
// maps to Dns in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --dns option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
DnsServers [ ] * string ` locationName:"dnsServers" type:"list" `
// A key/value map of labels to add to the container. This parameter maps to
2016-11-19 19:41:01 +01:00
// Labels in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --label option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
// 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
// container instance, log into your container instance and run the following
// command: sudo docker version | grep "Server API version"
DockerLabels map [ string ] * string ` locationName:"dockerLabels" type:"map" `
// 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
2016-11-19 19:41:01 +01:00
// (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --security-opt option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
//
2016-11-19 19:41:01 +01:00
// The Amazon ECS container agent running on a container instance must register
2016-01-29 20:53:56 +01:00
// with the ECS_SELINUX_CAPABLE=true or ECS_APPARMOR_CAPABLE=true environment
// variables before containers placed on that instance can use these security
// options. For more information, see Amazon ECS Container Agent Configuration
2016-07-15 15:49:02 +02:00
// (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html)
2016-01-29 20:53:56 +01:00
// in the Amazon EC2 Container Service Developer Guide.
DockerSecurityOptions [ ] * string ` locationName:"dockerSecurityOptions" type:"list" `
// Early versions of the Amazon ECS container agent do not properly handle entryPoint
// parameters. If you have problems using entryPoint, update your container
// agent or enter your commands and arguments as command array items instead.
//
2016-11-19 19:41:01 +01:00
// The entry point that is passed to the container. This parameter maps to Entrypoint
// in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --entrypoint option to docker run (https://docs.docker.com/engine/reference/run/).
// For more information, see https://docs.docker.com/engine/reference/builder/#entrypoint
// (https://docs.docker.com/engine/reference/builder/#entrypoint).
2016-01-29 20:53:56 +01:00
EntryPoint [ ] * string ` locationName:"entryPoint" type:"list" `
// The environment variables to pass to a container. This parameter maps to
2016-11-19 19:41:01 +01:00
// Env in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --env option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
//
2016-11-19 19:41:01 +01:00
// We do not recommend using plain text environment variables for sensitive
2016-01-29 20:53:56 +01:00
// information, such as credential data.
Environment [ ] * KeyValuePair ` locationName:"environment" type:"list" `
2016-07-15 15:49:02 +02:00
// If the essential parameter of a container is marked as true, and that container
// fails or stops for any reason, all other containers that are part of the
// task are stopped. If the essential parameter of a container is marked as
// false, then its failure does not affect the rest of the containers in a task.
// If this parameter is omitted, a container is assumed to be essential.
2016-01-29 20:53:56 +01:00
//
2016-07-15 15:49:02 +02:00
// All tasks must have at least one essential container. If you have an application
// that is composed of multiple containers, you should group containers that
// are used for a common purpose into components, and separate the different
// components into multiple task definitions. For more information, see Application
// Architecture (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/application_architecture.html)
// in the Amazon EC2 Container Service Developer Guide.
2016-01-29 20:53:56 +01:00
Essential * bool ` locationName:"essential" type:"boolean" `
// 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
2016-11-19 19:41:01 +01:00
// (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --add-host option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
ExtraHosts [ ] * HostEntry ` locationName:"extraHosts" type:"list" `
// The hostname to use for your container. This parameter maps to Hostname in
2016-11-19 19:41:01 +01:00
// the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --hostname option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
Hostname * string ` locationName:"hostname" type:"string" `
// The image used to start a container. This string is passed directly to the
// Docker daemon. Images in the Docker Hub registry are available by default.
2016-11-19 19:41:01 +01:00
// Other repositories are specified with repository-url/image:tag. Up to 255
2016-01-29 20:53:56 +01:00
// letters (uppercase and lowercase), numbers, hyphens, underscores, colons,
// periods, forward slashes, and number signs are allowed. This parameter maps
2016-11-19 19:41:01 +01:00
// to Image in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the IMAGE parameter of docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
//
2016-11-19 19:41:01 +01:00
// * Images in official repositories on Docker Hub use a single name (for
// example, ubuntu or mongo).
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Images in other repositories on Docker Hub are qualified with an organization
// name (for example, amazon/amazon-ecs-agent).
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Images in other online repositories are qualified further by a domain
// name (for example, quay.io/assemblyline/ubuntu).
2016-01-29 20:53:56 +01:00
Image * string ` locationName:"image" type:"string" `
// The link parameter allows containers to communicate with each other without
// the need for port mappings, using the name parameter and optionally, an alias
// for the link. This construct is analogous to name:alias in Docker links.
// Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores
// are allowed for each name and alias. For more information on linking Docker
2016-11-19 19:41:01 +01:00
// containers, see https://docs.docker.com/engine/userguide/networking/default_network/dockerlinks/
// (https://docs.docker.com/engine/userguide/networking/default_network/dockerlinks/).
// This parameter maps to Links in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --link option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
//
2016-11-19 19:41:01 +01:00
// Containers that are collocated on a single container instance may be able
2016-01-29 20:53:56 +01:00
// to communicate with each other without requiring links or host port mappings.
// Network isolation is achieved on the container instance using security groups
// and VPC settings.
Links [ ] * string ` locationName:"links" type:"list" `
// The log configuration specification for the container. This parameter maps
2016-11-19 19:41:01 +01:00
// to LogConfig in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --log-driver option to docker run (https://docs.docker.com/engine/reference/run/).
2016-07-15 15:49:02 +02:00
// 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
// daemon by specifying a log driver with this parameter in the container definition.
// To use a different logging driver for a container, the log system must be
// configured properly on the container instance (or on a different log server
// for remote logging options). For more information on the options for different
// supported log drivers, see Configure logging drivers (https://docs.docker.com/engine/admin/logging/overview/)
// in the Docker documentation.
//
2016-11-19 19:41:01 +01:00
// Amazon ECS currently supports a subset of the logging drivers available to
// the Docker daemon (shown in the LogConfiguration data type). Currently unsupported
// log drivers may be available in future releases of the Amazon ECS container
// agent.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// This parameter requires version 1.18 of the Docker Remote API or greater
2016-07-15 15:49:02 +02:00
// on your container instance. To check the Docker Remote API version on your
// container instance, log into your container instance and run the following
// command: sudo docker version | grep "Server API version"
2016-01-29 20:53:56 +01:00
//
2016-11-19 19:41:01 +01:00
// The Amazon ECS container agent running on a container instance must register
2016-01-29 20:53:56 +01:00
// the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS
// environment variable before containers placed on that instance can use these
// log configuration options. For more information, see Amazon ECS Container
2016-07-15 15:49:02 +02:00
// Agent Configuration (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html)
2016-01-29 20:53:56 +01:00
// in the Amazon EC2 Container Service Developer Guide.
LogConfiguration * LogConfiguration ` locationName:"logConfiguration" type:"structure" `
2016-08-20 11:16:03 +02:00
// 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
2016-11-19 19:41:01 +01:00
// parameter maps to Memory in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --memory option to docker run (https://docs.docker.com/engine/reference/run/).
2016-08-20 11:16:03 +02:00
//
// 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.
2016-01-29 20:53:56 +01:00
Memory * int64 ` locationName:"memory" type:"integer" `
2016-08-20 11:16:03 +02:00
// 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
2016-11-19 19:41:01 +01:00
// a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --memory-reservation option to docker run (https://docs.docker.com/engine/reference/run/).
2016-08-20 11:16:03 +02:00
//
// 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" `
2016-01-29 20:53:56 +01:00
// The mount points for data volumes in your container. This parameter maps
2016-11-19 19:41:01 +01:00
// to Volumes in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --volume option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
MountPoints [ ] * MountPoint ` locationName:"mountPoints" type:"list" `
// The name of a container. If you are linking multiple containers together
// 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
2016-11-19 19:41:01 +01:00
// maps to name in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --name option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
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.
2016-11-19 19:41:01 +01:00
// This parameter maps to PortBindings in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --publish option to docker run (https://docs.docker.com/engine/reference/run/).
2016-08-20 11:16:03 +02:00
// 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.
2016-01-29 20:53:56 +01:00
//
2016-11-19 19:41:01 +01:00
// After a task reaches the RUNNING status, manual and automatic host and container
// port assignments are visible in the Network Bindings section of a container
// description of a selected task in the Amazon ECS console, or the networkBindings
// section DescribeTasks responses.
2016-01-29 20:53:56 +01:00
PortMappings [ ] * PortMapping ` locationName:"portMappings" type:"list" `
// When this parameter is true, the container is given elevated privileges on
// the host container instance (similar to the root user). This parameter maps
2016-11-19 19:41:01 +01:00
// to Privileged in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --privileged option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
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
2016-11-19 19:41:01 +01:00
// (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
2016-01-29 20:53:56 +01:00
// 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
2016-11-19 19:41:01 +01:00
// in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --ulimit option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
// 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
// instance. To check the Docker Remote API version on your container instance,
// log into your container instance and run the following command: sudo docker
// version | grep "Server API version"
Ulimits [ ] * Ulimit ` locationName:"ulimits" type:"list" `
// The user name to use inside the container. This parameter maps to User in
2016-11-19 19:41:01 +01:00
// the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --user option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
User * string ` locationName:"user" type:"string" `
// Data volumes to mount from another container. This parameter maps to VolumesFrom
2016-11-19 19:41:01 +01:00
// in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --volumes-from option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
VolumesFrom [ ] * VolumeFrom ` locationName:"volumesFrom" type:"list" `
// The working directory in which to run commands inside the container. This
2016-11-19 19:41:01 +01:00
// parameter maps to WorkingDir in the Create a container (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/engine/reference/api/docker_remote_api_v1.23/)
// and the --workdir option to docker run (https://docs.docker.com/engine/reference/run/).
2016-01-29 20:53:56 +01:00
WorkingDirectory * string ` locationName:"workingDirectory" type:"string" `
}
// String returns the string representation
func ( s ContainerDefinition ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ContainerDefinition ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ContainerDefinition ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ContainerDefinition" }
if s . ExtraHosts != nil {
for i , v := range s . ExtraHosts {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "ExtraHosts" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if s . LogConfiguration != nil {
if err := s . LogConfiguration . Validate ( ) ; err != nil {
invalidParams . AddNested ( "LogConfiguration" , err . ( request . ErrInvalidParams ) )
}
}
if s . Ulimits != nil {
for i , v := range s . Ulimits {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "Ulimits" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCommand sets the Command field's value.
func ( s * ContainerDefinition ) SetCommand ( v [ ] * string ) * ContainerDefinition {
s . Command = v
return s
}
// SetCpu sets the Cpu field's value.
func ( s * ContainerDefinition ) SetCpu ( v int64 ) * ContainerDefinition {
s . Cpu = & v
return s
}
// SetDisableNetworking sets the DisableNetworking field's value.
func ( s * ContainerDefinition ) SetDisableNetworking ( v bool ) * ContainerDefinition {
s . DisableNetworking = & v
return s
}
// SetDnsSearchDomains sets the DnsSearchDomains field's value.
func ( s * ContainerDefinition ) SetDnsSearchDomains ( v [ ] * string ) * ContainerDefinition {
s . DnsSearchDomains = v
return s
}
// SetDnsServers sets the DnsServers field's value.
func ( s * ContainerDefinition ) SetDnsServers ( v [ ] * string ) * ContainerDefinition {
s . DnsServers = v
return s
}
// SetDockerLabels sets the DockerLabels field's value.
func ( s * ContainerDefinition ) SetDockerLabels ( v map [ string ] * string ) * ContainerDefinition {
s . DockerLabels = v
return s
}
// SetDockerSecurityOptions sets the DockerSecurityOptions field's value.
func ( s * ContainerDefinition ) SetDockerSecurityOptions ( v [ ] * string ) * ContainerDefinition {
s . DockerSecurityOptions = v
return s
}
// SetEntryPoint sets the EntryPoint field's value.
func ( s * ContainerDefinition ) SetEntryPoint ( v [ ] * string ) * ContainerDefinition {
s . EntryPoint = v
return s
}
// SetEnvironment sets the Environment field's value.
func ( s * ContainerDefinition ) SetEnvironment ( v [ ] * KeyValuePair ) * ContainerDefinition {
s . Environment = v
return s
}
// SetEssential sets the Essential field's value.
func ( s * ContainerDefinition ) SetEssential ( v bool ) * ContainerDefinition {
s . Essential = & v
return s
}
// SetExtraHosts sets the ExtraHosts field's value.
func ( s * ContainerDefinition ) SetExtraHosts ( v [ ] * HostEntry ) * ContainerDefinition {
s . ExtraHosts = v
return s
}
// SetHostname sets the Hostname field's value.
func ( s * ContainerDefinition ) SetHostname ( v string ) * ContainerDefinition {
s . Hostname = & v
return s
}
// SetImage sets the Image field's value.
func ( s * ContainerDefinition ) SetImage ( v string ) * ContainerDefinition {
s . Image = & v
return s
}
// SetLinks sets the Links field's value.
func ( s * ContainerDefinition ) SetLinks ( v [ ] * string ) * ContainerDefinition {
s . Links = v
return s
}
// SetLogConfiguration sets the LogConfiguration field's value.
func ( s * ContainerDefinition ) SetLogConfiguration ( v * LogConfiguration ) * ContainerDefinition {
s . LogConfiguration = v
return s
}
// SetMemory sets the Memory field's value.
func ( s * ContainerDefinition ) SetMemory ( v int64 ) * ContainerDefinition {
s . Memory = & v
return s
}
// SetMemoryReservation sets the MemoryReservation field's value.
func ( s * ContainerDefinition ) SetMemoryReservation ( v int64 ) * ContainerDefinition {
s . MemoryReservation = & v
return s
}
// SetMountPoints sets the MountPoints field's value.
func ( s * ContainerDefinition ) SetMountPoints ( v [ ] * MountPoint ) * ContainerDefinition {
s . MountPoints = v
return s
}
// SetName sets the Name field's value.
func ( s * ContainerDefinition ) SetName ( v string ) * ContainerDefinition {
s . Name = & v
return s
}
// SetPortMappings sets the PortMappings field's value.
func ( s * ContainerDefinition ) SetPortMappings ( v [ ] * PortMapping ) * ContainerDefinition {
s . PortMappings = v
return s
}
// SetPrivileged sets the Privileged field's value.
func ( s * ContainerDefinition ) SetPrivileged ( v bool ) * ContainerDefinition {
s . Privileged = & v
return s
}
// SetReadonlyRootFilesystem sets the ReadonlyRootFilesystem field's value.
func ( s * ContainerDefinition ) SetReadonlyRootFilesystem ( v bool ) * ContainerDefinition {
s . ReadonlyRootFilesystem = & v
return s
}
// SetUlimits sets the Ulimits field's value.
func ( s * ContainerDefinition ) SetUlimits ( v [ ] * Ulimit ) * ContainerDefinition {
s . Ulimits = v
return s
}
// SetUser sets the User field's value.
func ( s * ContainerDefinition ) SetUser ( v string ) * ContainerDefinition {
s . User = & v
return s
}
// SetVolumesFrom sets the VolumesFrom field's value.
func ( s * ContainerDefinition ) SetVolumesFrom ( v [ ] * VolumeFrom ) * ContainerDefinition {
s . VolumesFrom = v
return s
}
// SetWorkingDirectory sets the WorkingDirectory field's value.
func ( s * ContainerDefinition ) SetWorkingDirectory ( v string ) * ContainerDefinition {
s . WorkingDirectory = & v
return s
}
2016-01-29 20:53:56 +01:00
// An EC2 instance that is running the Amazon ECS agent and has been registered
// with a cluster.
type ContainerInstance struct {
_ struct { } ` type:"structure" `
// This parameter returns true if the agent is actually connected to Amazon
// ECS. Registered instances with an agent that may be unhealthy or stopped
// return false, and instances without a connected agent cannot accept placement
// requests.
AgentConnected * bool ` locationName:"agentConnected" type:"boolean" `
// The status of the most recent agent update. If an update has never been requested,
// this value is NULL.
AgentUpdateStatus * string ` locationName:"agentUpdateStatus" type:"string" enum:"AgentUpdateStatus" `
// The attributes set for the container instance by the Amazon ECS container
// agent at instance registration.
Attributes [ ] * Attribute ` locationName:"attributes" type:"list" `
// The Amazon Resource Name (ARN) of the container instance. The ARN contains
// the arn:aws:ecs namespace, followed by the region of the container instance,
// the AWS account ID of the container instance owner, the container-instance
2016-11-19 19:41:01 +01:00
// namespace, and then the container instance ID. For example, arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID.
2016-01-29 20:53:56 +01:00
ContainerInstanceArn * string ` locationName:"containerInstanceArn" type:"string" `
// The EC2 instance ID of the container instance.
Ec2InstanceId * string ` locationName:"ec2InstanceId" type:"string" `
// The number of tasks on the container instance that are in the PENDING status.
PendingTasksCount * int64 ` locationName:"pendingTasksCount" type:"integer" `
2016-11-19 19:41:01 +01:00
// For most resource types, this parameter describes the registered resources
// on the container instance that are in use by current tasks. For port resource
// types, this parameter describes the ports that were reserved by the Amazon
// ECS container agent when it registered the container instance with Amazon
// ECS.
2016-01-29 20:53:56 +01:00
RegisteredResources [ ] * Resource ` locationName:"registeredResources" type:"list" `
2016-11-19 19:41:01 +01:00
// For most resource types, this parameter describes the remaining resources
// of the container instance that are available for new tasks. For port resource
// types, this parameter describes the ports that are reserved by the Amazon
// ECS container agent and any containers that have reserved port mappings;
// any port that is not specified here is available for new tasks.
2016-01-29 20:53:56 +01:00
RemainingResources [ ] * Resource ` locationName:"remainingResources" type:"list" `
// The number of tasks on the container instance that are in the RUNNING status.
RunningTasksCount * int64 ` locationName:"runningTasksCount" type:"integer" `
// The status of the container instance. The valid values are ACTIVE or INACTIVE.
// ACTIVE indicates that the container instance can accept tasks.
Status * string ` locationName:"status" type:"string" `
2016-11-30 23:18:04 +01:00
// The version counter for the container instance. Every time a container instance
// experiences a change that triggers a CloudWatch event, the version counter
// is incremented. If you are replicating your Amazon ECS container instance
// state with CloudWatch events, you can compare the version of a container
// instance reported by the Amazon ECS APIs with the version reported in CloudWatch
// events for the container instance (inside the detail object) to verify that
// the version in your event stream is current.
Version * int64 ` locationName:"version" type:"long" `
2016-01-29 20:53:56 +01:00
// The version information for the Amazon ECS container agent and Docker daemon
// running on the container instance.
VersionInfo * VersionInfo ` locationName:"versionInfo" type:"structure" `
}
// String returns the string representation
func ( s ContainerInstance ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ContainerInstance ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetAgentConnected sets the AgentConnected field's value.
func ( s * ContainerInstance ) SetAgentConnected ( v bool ) * ContainerInstance {
s . AgentConnected = & v
return s
}
// SetAgentUpdateStatus sets the AgentUpdateStatus field's value.
func ( s * ContainerInstance ) SetAgentUpdateStatus ( v string ) * ContainerInstance {
s . AgentUpdateStatus = & v
return s
}
// SetAttributes sets the Attributes field's value.
func ( s * ContainerInstance ) SetAttributes ( v [ ] * Attribute ) * ContainerInstance {
s . Attributes = v
return s
}
// SetContainerInstanceArn sets the ContainerInstanceArn field's value.
func ( s * ContainerInstance ) SetContainerInstanceArn ( v string ) * ContainerInstance {
s . ContainerInstanceArn = & v
return s
}
// SetEc2InstanceId sets the Ec2InstanceId field's value.
func ( s * ContainerInstance ) SetEc2InstanceId ( v string ) * ContainerInstance {
s . Ec2InstanceId = & v
return s
}
// SetPendingTasksCount sets the PendingTasksCount field's value.
func ( s * ContainerInstance ) SetPendingTasksCount ( v int64 ) * ContainerInstance {
s . PendingTasksCount = & v
return s
}
// SetRegisteredResources sets the RegisteredResources field's value.
func ( s * ContainerInstance ) SetRegisteredResources ( v [ ] * Resource ) * ContainerInstance {
s . RegisteredResources = v
return s
}
// SetRemainingResources sets the RemainingResources field's value.
func ( s * ContainerInstance ) SetRemainingResources ( v [ ] * Resource ) * ContainerInstance {
s . RemainingResources = v
return s
}
// SetRunningTasksCount sets the RunningTasksCount field's value.
func ( s * ContainerInstance ) SetRunningTasksCount ( v int64 ) * ContainerInstance {
s . RunningTasksCount = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * ContainerInstance ) SetStatus ( v string ) * ContainerInstance {
s . Status = & v
return s
}
2016-11-30 23:18:04 +01:00
// SetVersion sets the Version field's value.
func ( s * ContainerInstance ) SetVersion ( v int64 ) * ContainerInstance {
s . Version = & v
return s
}
2016-11-19 19:41:01 +01:00
// SetVersionInfo sets the VersionInfo field's value.
func ( s * ContainerInstance ) SetVersionInfo ( v * VersionInfo ) * ContainerInstance {
s . VersionInfo = v
return s
}
2016-01-29 20:53:56 +01:00
// The overrides that should be sent to a container.
type ContainerOverride struct {
_ struct { } ` type:"structure" `
// The command to send to the container that overrides the default command from
// the Docker image or the task definition.
Command [ ] * string ` locationName:"command" type:"list" `
// The environment variables to send to the container. You can add new environment
// variables, which are added to the container at launch, or you can override
// the existing environment variables from the Docker image or the task definition.
Environment [ ] * KeyValuePair ` locationName:"environment" type:"list" `
// The name of the container that receives the override.
Name * string ` locationName:"name" type:"string" `
}
// String returns the string representation
func ( s ContainerOverride ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ContainerOverride ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCommand sets the Command field's value.
func ( s * ContainerOverride ) SetCommand ( v [ ] * string ) * ContainerOverride {
s . Command = v
return s
}
// SetEnvironment sets the Environment field's value.
func ( s * ContainerOverride ) SetEnvironment ( v [ ] * KeyValuePair ) * ContainerOverride {
s . Environment = v
return s
}
// SetName sets the Name field's value.
func ( s * ContainerOverride ) SetName ( v string ) * ContainerOverride {
s . Name = & v
return s
}
2016-01-29 20:53:56 +01:00
type CreateClusterInput struct {
_ struct { } ` type:"structure" `
// The name of your cluster. If you do not specify a name for your cluster,
// you create a cluster named default. Up to 255 letters (uppercase and lowercase),
// numbers, hyphens, and underscores are allowed.
ClusterName * string ` locationName:"clusterName" type:"string" `
}
// String returns the string representation
func ( s CreateClusterInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateClusterInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetClusterName sets the ClusterName field's value.
func ( s * CreateClusterInput ) SetClusterName ( v string ) * CreateClusterInput {
s . ClusterName = & v
return s
}
2016-01-29 20:53:56 +01:00
type CreateClusterOutput struct {
_ struct { } ` type:"structure" `
// The full description of your new cluster.
Cluster * Cluster ` locationName:"cluster" type:"structure" `
}
// String returns the string representation
func ( s CreateClusterOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateClusterOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * CreateClusterOutput ) SetCluster ( v * Cluster ) * CreateClusterOutput {
s . Cluster = v
return s
}
2016-01-29 20:53:56 +01:00
type CreateServiceInput struct {
_ struct { } ` type:"structure" `
// Unique, case-sensitive identifier you provide to ensure the idempotency of
// the request. Up to 32 ASCII characters are allowed.
ClientToken * string ` locationName:"clientToken" type:"string" `
// The short name or full Amazon Resource Name (ARN) of the cluster on which
// to run your service. If you do not specify a cluster, the default cluster
// is assumed.
Cluster * string ` locationName:"cluster" type:"string" `
// Optional deployment parameters that control how many tasks run during the
// deployment and the ordering of stopping and starting tasks.
DeploymentConfiguration * DeploymentConfiguration ` locationName:"deploymentConfiguration" type:"structure" `
// The number of instantiations of the specified task definition to place and
// keep running on your cluster.
2016-10-17 23:21:08 +02:00
//
// DesiredCount is a required field
2016-01-29 20:53:56 +01:00
DesiredCount * int64 ` locationName:"desiredCount" type:"integer" required:"true" `
2016-08-11 19:01:51 +02:00
// A load balancer object representing the load balancer to use with your service.
// Currently, you are limited to one load balancer per service. After you create
// a service, the load balancer name, container name, and container port specified
// in the service definition are immutable.
//
// For Elastic Load Balancing Classic load balancers, this object must contain
// the load balancer name, the container name (as it appears in a container
// definition), and the container port to access from the load balancer. When
// a task from this service is placed on a container instance, the container
// instance is registered with the load balancer specified here.
//
2016-11-19 19:41:01 +01:00
// For Elastic Load Balancing Application load balancers, this object must contain
// the load balancer target group ARN, the container name (as it appears in
// a container definition), and the container port to access from the load balancer.
// When a task from this service is placed on a container instance, the container
// instance and port combination is registered as a target in the target group
// specified here.
2016-01-29 20:53:56 +01:00
LoadBalancers [ ] * LoadBalancer ` locationName:"loadBalancers" type:"list" `
2016-07-15 15:49:02 +02:00
// The name or full Amazon Resource Name (ARN) of the IAM role that allows Amazon
// ECS to make calls to your load balancer on your behalf. This parameter is
// required if you are using a load balancer with your service. If you specify
// the role parameter, you must also specify a load balancer object with the
// loadBalancers parameter.
//
// If your specified role has a path other than /, then you must either specify
// the full role ARN (this is recommended) or prefix the role name with the
// path. For example, if a role with the name bar has a path of /foo/ then you
// would specify /foo/bar as the role name. For more information, see Friendly
// Names and Paths (http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-friendly-names)
// in the IAM User Guide.
2016-01-29 20:53:56 +01:00
Role * string ` locationName:"role" type:"string" `
// The name of your service. Up to 255 letters (uppercase and lowercase), numbers,
// hyphens, and underscores are allowed. Service names must be unique within
// a cluster, but you can have similarly named services in multiple clusters
// within a region or across multiple regions.
2016-10-17 23:21:08 +02:00
//
// ServiceName is a required field
2016-01-29 20:53:56 +01:00
ServiceName * string ` locationName:"serviceName" type:"string" required:"true" `
// The family and revision (family:revision) or full Amazon Resource Name (ARN)
// of the task definition to run in your service. If a revision is not specified,
// the latest ACTIVE revision is used.
2016-10-17 23:21:08 +02:00
//
// TaskDefinition is a required field
2016-01-29 20:53:56 +01:00
TaskDefinition * string ` locationName:"taskDefinition" type:"string" required:"true" `
}
// String returns the string representation
func ( s CreateServiceInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateServiceInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * CreateServiceInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreateServiceInput" }
if s . DesiredCount == nil {
invalidParams . Add ( request . NewErrParamRequired ( "DesiredCount" ) )
}
if s . ServiceName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ServiceName" ) )
}
if s . TaskDefinition == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TaskDefinition" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetClientToken sets the ClientToken field's value.
func ( s * CreateServiceInput ) SetClientToken ( v string ) * CreateServiceInput {
s . ClientToken = & v
return s
}
// SetCluster sets the Cluster field's value.
func ( s * CreateServiceInput ) SetCluster ( v string ) * CreateServiceInput {
s . Cluster = & v
return s
}
// SetDeploymentConfiguration sets the DeploymentConfiguration field's value.
func ( s * CreateServiceInput ) SetDeploymentConfiguration ( v * DeploymentConfiguration ) * CreateServiceInput {
s . DeploymentConfiguration = v
return s
}
// SetDesiredCount sets the DesiredCount field's value.
func ( s * CreateServiceInput ) SetDesiredCount ( v int64 ) * CreateServiceInput {
s . DesiredCount = & v
return s
}
// SetLoadBalancers sets the LoadBalancers field's value.
func ( s * CreateServiceInput ) SetLoadBalancers ( v [ ] * LoadBalancer ) * CreateServiceInput {
s . LoadBalancers = v
return s
}
// SetRole sets the Role field's value.
func ( s * CreateServiceInput ) SetRole ( v string ) * CreateServiceInput {
s . Role = & v
return s
}
// SetServiceName sets the ServiceName field's value.
func ( s * CreateServiceInput ) SetServiceName ( v string ) * CreateServiceInput {
s . ServiceName = & v
return s
}
// SetTaskDefinition sets the TaskDefinition field's value.
func ( s * CreateServiceInput ) SetTaskDefinition ( v string ) * CreateServiceInput {
s . TaskDefinition = & v
return s
}
2016-01-29 20:53:56 +01:00
type CreateServiceOutput struct {
_ struct { } ` type:"structure" `
// The full description of your service following the create call.
Service * Service ` locationName:"service" type:"structure" `
}
// String returns the string representation
func ( s CreateServiceOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateServiceOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetService sets the Service field's value.
func ( s * CreateServiceOutput ) SetService ( v * Service ) * CreateServiceOutput {
s . Service = v
return s
}
2016-01-29 20:53:56 +01:00
type DeleteClusterInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster to delete.
2016-10-17 23:21:08 +02:00
//
// Cluster is a required field
2016-01-29 20:53:56 +01:00
Cluster * string ` locationName:"cluster" type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteClusterInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteClusterInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeleteClusterInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteClusterInput" }
if s . Cluster == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Cluster" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * DeleteClusterInput ) SetCluster ( v string ) * DeleteClusterInput {
s . Cluster = & v
return s
}
2016-01-29 20:53:56 +01:00
type DeleteClusterOutput struct {
_ struct { } ` type:"structure" `
// The full description of the deleted cluster.
Cluster * Cluster ` locationName:"cluster" type:"structure" `
}
// String returns the string representation
func ( s DeleteClusterOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteClusterOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * DeleteClusterOutput ) SetCluster ( v * Cluster ) * DeleteClusterOutput {
s . Cluster = v
return s
}
2016-01-29 20:53:56 +01:00
type DeleteServiceInput struct {
_ struct { } ` type:"structure" `
// The name of the cluster that hosts the service to delete. If you do not specify
// a cluster, the default cluster is assumed.
Cluster * string ` locationName:"cluster" type:"string" `
// The name of the service to delete.
2016-10-17 23:21:08 +02:00
//
// Service is a required field
2016-01-29 20:53:56 +01:00
Service * string ` locationName:"service" type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteServiceInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteServiceInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeleteServiceInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteServiceInput" }
if s . Service == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Service" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * DeleteServiceInput ) SetCluster ( v string ) * DeleteServiceInput {
s . Cluster = & v
return s
}
// SetService sets the Service field's value.
func ( s * DeleteServiceInput ) SetService ( v string ) * DeleteServiceInput {
s . Service = & v
return s
}
2016-01-29 20:53:56 +01:00
type DeleteServiceOutput struct {
_ struct { } ` type:"structure" `
// The full description of the deleted service.
Service * Service ` locationName:"service" type:"structure" `
}
// String returns the string representation
func ( s DeleteServiceOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteServiceOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetService sets the Service field's value.
func ( s * DeleteServiceOutput ) SetService ( v * Service ) * DeleteServiceOutput {
s . Service = v
return s
}
2016-01-29 20:53:56 +01:00
// The details of an Amazon ECS service deployment.
type Deployment struct {
_ struct { } ` type:"structure" `
2016-08-11 19:01:51 +02:00
// The Unix timestamp for when the service was created.
2016-01-29 20:53:56 +01:00
CreatedAt * time . Time ` locationName:"createdAt" type:"timestamp" timestampFormat:"unix" `
// The most recent desired count of tasks that was specified for the service
// to deploy or maintain.
DesiredCount * int64 ` locationName:"desiredCount" type:"integer" `
// The ID of the deployment.
Id * string ` locationName:"id" type:"string" `
// The number of tasks in the deployment that are in the PENDING status.
PendingCount * int64 ` locationName:"pendingCount" type:"integer" `
// The number of tasks in the deployment that are in the RUNNING status.
RunningCount * int64 ` locationName:"runningCount" type:"integer" `
// The status of the deployment. Valid values are PRIMARY (for the most recent
// deployment), ACTIVE (for previous deployments that still have tasks running,
// but are being replaced with the PRIMARY deployment), and INACTIVE (for deployments
// that have been completely replaced).
Status * string ` locationName:"status" type:"string" `
// The most recent task definition that was specified for the service to use.
TaskDefinition * string ` locationName:"taskDefinition" type:"string" `
2016-08-11 19:01:51 +02:00
// The Unix timestamp for when the service was last updated.
2016-01-29 20:53:56 +01:00
UpdatedAt * time . Time ` locationName:"updatedAt" type:"timestamp" timestampFormat:"unix" `
}
// String returns the string representation
func ( s Deployment ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Deployment ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCreatedAt sets the CreatedAt field's value.
func ( s * Deployment ) SetCreatedAt ( v time . Time ) * Deployment {
s . CreatedAt = & v
return s
}
// SetDesiredCount sets the DesiredCount field's value.
func ( s * Deployment ) SetDesiredCount ( v int64 ) * Deployment {
s . DesiredCount = & v
return s
}
// SetId sets the Id field's value.
func ( s * Deployment ) SetId ( v string ) * Deployment {
s . Id = & v
return s
}
// SetPendingCount sets the PendingCount field's value.
func ( s * Deployment ) SetPendingCount ( v int64 ) * Deployment {
s . PendingCount = & v
return s
}
// SetRunningCount sets the RunningCount field's value.
func ( s * Deployment ) SetRunningCount ( v int64 ) * Deployment {
s . RunningCount = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * Deployment ) SetStatus ( v string ) * Deployment {
s . Status = & v
return s
}
// SetTaskDefinition sets the TaskDefinition field's value.
func ( s * Deployment ) SetTaskDefinition ( v string ) * Deployment {
s . TaskDefinition = & v
return s
}
// SetUpdatedAt sets the UpdatedAt field's value.
func ( s * Deployment ) SetUpdatedAt ( v time . Time ) * Deployment {
s . UpdatedAt = & v
return s
}
2016-01-29 20:53:56 +01:00
// Optional deployment parameters that control how many tasks run during the
// deployment and the ordering of stopping and starting tasks.
type DeploymentConfiguration struct {
_ struct { } ` type:"structure" `
// The upper limit (as a percentage of the service's desiredCount) of the number
2016-11-19 19:41:01 +01:00
// of tasks that are allowed in the RUNNING or PENDING state in a service during
// a deployment. The maximum number of tasks during a deployment is the desiredCount
// multiplied by the maximumPercent/100, rounded down to the nearest integer
// value.
2016-01-29 20:53:56 +01:00
MaximumPercent * int64 ` locationName:"maximumPercent" type:"integer" `
// The lower limit (as a percentage of the service's desiredCount) of the number
2016-11-19 19:41:01 +01:00
// of running tasks that must remain in the RUNNING state in a service during
2016-01-29 20:53:56 +01:00
// a deployment. The minimum healthy tasks during a deployment is the desiredCount
// multiplied by the minimumHealthyPercent/100, rounded up to the nearest integer
// value.
MinimumHealthyPercent * int64 ` locationName:"minimumHealthyPercent" type:"integer" `
}
// String returns the string representation
func ( s DeploymentConfiguration ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeploymentConfiguration ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetMaximumPercent sets the MaximumPercent field's value.
func ( s * DeploymentConfiguration ) SetMaximumPercent ( v int64 ) * DeploymentConfiguration {
s . MaximumPercent = & v
return s
}
// SetMinimumHealthyPercent sets the MinimumHealthyPercent field's value.
func ( s * DeploymentConfiguration ) SetMinimumHealthyPercent ( v int64 ) * DeploymentConfiguration {
s . MinimumHealthyPercent = & v
return s
}
2016-01-29 20:53:56 +01:00
type DeregisterContainerInstanceInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the container instance to deregister. If you do not specify a cluster, the
// default cluster is assumed.
Cluster * string ` locationName:"cluster" type:"string" `
// The container instance ID or full Amazon Resource Name (ARN) of the container
// instance to deregister. The ARN contains the arn:aws:ecs namespace, followed
// by the region of the container instance, the AWS account ID of the container
// instance owner, the container-instance namespace, and then the container
2016-11-19 19:41:01 +01:00
// instance ID. For example, arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID.
2016-10-17 23:21:08 +02:00
//
// ContainerInstance is a required field
2016-01-29 20:53:56 +01:00
ContainerInstance * string ` locationName:"containerInstance" type:"string" required:"true" `
// Forces the deregistration of the container instance. If you have tasks running
// on the container instance when you deregister it with the force option, these
2016-11-19 19:41:01 +01:00
// tasks remain running until you terminate the instance or the tasks stop through
// some other means, but they are orphaned (no longer monitored or accounted
2016-01-29 20:53:56 +01:00
// for by Amazon ECS). If an orphaned task on your container instance is part
// of an Amazon ECS service, then the service scheduler starts another copy
// of that task, on a different container instance if possible.
2016-11-19 19:41:01 +01:00
//
// Any containers in orphaned service tasks that are registered with a Classic
// load balancer or an Application load balancer target group are deregistered,
// and they will begin connection draining according to the settings on the
// load balancer or target group.
2016-01-29 20:53:56 +01:00
Force * bool ` locationName:"force" type:"boolean" `
}
// String returns the string representation
func ( s DeregisterContainerInstanceInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeregisterContainerInstanceInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeregisterContainerInstanceInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeregisterContainerInstanceInput" }
if s . ContainerInstance == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ContainerInstance" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * DeregisterContainerInstanceInput ) SetCluster ( v string ) * DeregisterContainerInstanceInput {
s . Cluster = & v
return s
}
// SetContainerInstance sets the ContainerInstance field's value.
func ( s * DeregisterContainerInstanceInput ) SetContainerInstance ( v string ) * DeregisterContainerInstanceInput {
s . ContainerInstance = & v
return s
}
// SetForce sets the Force field's value.
func ( s * DeregisterContainerInstanceInput ) SetForce ( v bool ) * DeregisterContainerInstanceInput {
s . Force = & v
return s
}
2016-01-29 20:53:56 +01:00
type DeregisterContainerInstanceOutput struct {
_ struct { } ` type:"structure" `
2016-11-30 23:18:04 +01:00
// The container instance that was deregistered.
2016-01-29 20:53:56 +01:00
ContainerInstance * ContainerInstance ` locationName:"containerInstance" type:"structure" `
}
// String returns the string representation
func ( s DeregisterContainerInstanceOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeregisterContainerInstanceOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetContainerInstance sets the ContainerInstance field's value.
func ( s * DeregisterContainerInstanceOutput ) SetContainerInstance ( v * ContainerInstance ) * DeregisterContainerInstanceOutput {
s . ContainerInstance = v
return s
}
2016-01-29 20:53:56 +01:00
type DeregisterTaskDefinitionInput struct {
_ struct { } ` type:"structure" `
// The family and revision (family:revision) or full Amazon Resource Name (ARN)
// of the task definition to deregister. You must specify a revision.
2016-10-17 23:21:08 +02:00
//
// TaskDefinition is a required field
2016-01-29 20:53:56 +01:00
TaskDefinition * string ` locationName:"taskDefinition" type:"string" required:"true" `
}
// String returns the string representation
func ( s DeregisterTaskDefinitionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeregisterTaskDefinitionInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeregisterTaskDefinitionInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeregisterTaskDefinitionInput" }
if s . TaskDefinition == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TaskDefinition" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetTaskDefinition sets the TaskDefinition field's value.
func ( s * DeregisterTaskDefinitionInput ) SetTaskDefinition ( v string ) * DeregisterTaskDefinitionInput {
s . TaskDefinition = & v
return s
}
2016-01-29 20:53:56 +01:00
type DeregisterTaskDefinitionOutput struct {
_ struct { } ` type:"structure" `
// The full description of the deregistered task.
TaskDefinition * TaskDefinition ` locationName:"taskDefinition" type:"structure" `
}
// String returns the string representation
func ( s DeregisterTaskDefinitionOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeregisterTaskDefinitionOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetTaskDefinition sets the TaskDefinition field's value.
func ( s * DeregisterTaskDefinitionOutput ) SetTaskDefinition ( v * TaskDefinition ) * DeregisterTaskDefinitionOutput {
s . TaskDefinition = v
return s
}
2016-01-29 20:53:56 +01:00
type DescribeClustersInput struct {
_ struct { } ` type:"structure" `
2016-07-15 15:49:02 +02:00
// A space-separated list of up to 100 cluster names or full cluster Amazon
// Resource Name (ARN) entries. If you do not specify a cluster, the default
// cluster is assumed.
2016-01-29 20:53:56 +01:00
Clusters [ ] * string ` locationName:"clusters" type:"list" `
}
// String returns the string representation
func ( s DescribeClustersInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeClustersInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetClusters sets the Clusters field's value.
func ( s * DescribeClustersInput ) SetClusters ( v [ ] * string ) * DescribeClustersInput {
s . Clusters = v
return s
}
2016-01-29 20:53:56 +01:00
type DescribeClustersOutput struct {
_ struct { } ` type:"structure" `
// The list of clusters.
Clusters [ ] * Cluster ` locationName:"clusters" type:"list" `
// Any failures associated with the call.
Failures [ ] * Failure ` locationName:"failures" type:"list" `
}
// String returns the string representation
func ( s DescribeClustersOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeClustersOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetClusters sets the Clusters field's value.
func ( s * DescribeClustersOutput ) SetClusters ( v [ ] * Cluster ) * DescribeClustersOutput {
s . Clusters = v
return s
}
// SetFailures sets the Failures field's value.
func ( s * DescribeClustersOutput ) SetFailures ( v [ ] * Failure ) * DescribeClustersOutput {
s . Failures = v
return s
}
2016-01-29 20:53:56 +01:00
type DescribeContainerInstancesInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the container instances to describe. If you do not specify a cluster, the
// default cluster is assumed.
Cluster * string ` locationName:"cluster" type:"string" `
// A space-separated list of container instance IDs or full Amazon Resource
// Name (ARN) entries.
2016-10-17 23:21:08 +02:00
//
// ContainerInstances is a required field
2016-01-29 20:53:56 +01:00
ContainerInstances [ ] * string ` locationName:"containerInstances" type:"list" required:"true" `
}
// String returns the string representation
func ( s DescribeContainerInstancesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeContainerInstancesInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DescribeContainerInstancesInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeContainerInstancesInput" }
if s . ContainerInstances == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ContainerInstances" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * DescribeContainerInstancesInput ) SetCluster ( v string ) * DescribeContainerInstancesInput {
s . Cluster = & v
return s
}
// SetContainerInstances sets the ContainerInstances field's value.
func ( s * DescribeContainerInstancesInput ) SetContainerInstances ( v [ ] * string ) * DescribeContainerInstancesInput {
s . ContainerInstances = v
return s
}
2016-01-29 20:53:56 +01:00
type DescribeContainerInstancesOutput struct {
_ struct { } ` type:"structure" `
// The list of container instances.
ContainerInstances [ ] * ContainerInstance ` locationName:"containerInstances" type:"list" `
// Any failures associated with the call.
Failures [ ] * Failure ` locationName:"failures" type:"list" `
}
// String returns the string representation
func ( s DescribeContainerInstancesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeContainerInstancesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetContainerInstances sets the ContainerInstances field's value.
func ( s * DescribeContainerInstancesOutput ) SetContainerInstances ( v [ ] * ContainerInstance ) * DescribeContainerInstancesOutput {
s . ContainerInstances = v
return s
}
// SetFailures sets the Failures field's value.
func ( s * DescribeContainerInstancesOutput ) SetFailures ( v [ ] * Failure ) * DescribeContainerInstancesOutput {
s . Failures = v
return s
}
2016-01-29 20:53:56 +01:00
type DescribeServicesInput struct {
_ struct { } ` type:"structure" `
// The name of the cluster that hosts the service to describe. If you do not
// specify a cluster, the default cluster is assumed.
Cluster * string ` locationName:"cluster" type:"string" `
2016-11-19 19:41:01 +01:00
// A list of services to describe. You may specify up to 10 services to describe
// in a single operation.
2016-10-17 23:21:08 +02:00
//
// Services is a required field
2016-01-29 20:53:56 +01:00
Services [ ] * string ` locationName:"services" type:"list" required:"true" `
}
// String returns the string representation
func ( s DescribeServicesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeServicesInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DescribeServicesInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeServicesInput" }
if s . Services == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Services" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * DescribeServicesInput ) SetCluster ( v string ) * DescribeServicesInput {
s . Cluster = & v
return s
}
// SetServices sets the Services field's value.
func ( s * DescribeServicesInput ) SetServices ( v [ ] * string ) * DescribeServicesInput {
s . Services = v
return s
}
2016-01-29 20:53:56 +01:00
type DescribeServicesOutput struct {
_ struct { } ` type:"structure" `
// Any failures associated with the call.
Failures [ ] * Failure ` locationName:"failures" type:"list" `
// The list of services described.
Services [ ] * Service ` locationName:"services" type:"list" `
}
// String returns the string representation
func ( s DescribeServicesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeServicesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetFailures sets the Failures field's value.
func ( s * DescribeServicesOutput ) SetFailures ( v [ ] * Failure ) * DescribeServicesOutput {
s . Failures = v
return s
}
// SetServices sets the Services field's value.
func ( s * DescribeServicesOutput ) SetServices ( v [ ] * Service ) * DescribeServicesOutput {
s . Services = v
return s
}
2016-01-29 20:53:56 +01:00
type DescribeTaskDefinitionInput struct {
_ struct { } ` type:"structure" `
// The family for the latest ACTIVE revision, family and revision (family:revision)
// for a specific revision in the family, or full Amazon Resource Name (ARN)
// of the task definition to describe.
2016-10-17 23:21:08 +02:00
//
// TaskDefinition is a required field
2016-01-29 20:53:56 +01:00
TaskDefinition * string ` locationName:"taskDefinition" type:"string" required:"true" `
}
// String returns the string representation
func ( s DescribeTaskDefinitionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeTaskDefinitionInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DescribeTaskDefinitionInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeTaskDefinitionInput" }
if s . TaskDefinition == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TaskDefinition" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetTaskDefinition sets the TaskDefinition field's value.
func ( s * DescribeTaskDefinitionInput ) SetTaskDefinition ( v string ) * DescribeTaskDefinitionInput {
s . TaskDefinition = & v
return s
}
2016-01-29 20:53:56 +01:00
type DescribeTaskDefinitionOutput struct {
_ struct { } ` type:"structure" `
// The full task definition description.
TaskDefinition * TaskDefinition ` locationName:"taskDefinition" type:"structure" `
}
// String returns the string representation
func ( s DescribeTaskDefinitionOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeTaskDefinitionOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetTaskDefinition sets the TaskDefinition field's value.
func ( s * DescribeTaskDefinitionOutput ) SetTaskDefinition ( v * TaskDefinition ) * DescribeTaskDefinitionOutput {
s . TaskDefinition = v
return s
}
2016-01-29 20:53:56 +01:00
type DescribeTasksInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the task to describe. If you do not specify a cluster, the default cluster
// is assumed.
Cluster * string ` locationName:"cluster" type:"string" `
// A space-separated list of task IDs or full Amazon Resource Name (ARN) entries.
2016-10-17 23:21:08 +02:00
//
// Tasks is a required field
2016-01-29 20:53:56 +01:00
Tasks [ ] * string ` locationName:"tasks" type:"list" required:"true" `
}
// String returns the string representation
func ( s DescribeTasksInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeTasksInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DescribeTasksInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeTasksInput" }
if s . Tasks == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Tasks" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * DescribeTasksInput ) SetCluster ( v string ) * DescribeTasksInput {
s . Cluster = & v
return s
}
// SetTasks sets the Tasks field's value.
func ( s * DescribeTasksInput ) SetTasks ( v [ ] * string ) * DescribeTasksInput {
s . Tasks = v
return s
}
2016-01-29 20:53:56 +01:00
type DescribeTasksOutput struct {
_ struct { } ` type:"structure" `
// Any failures associated with the call.
Failures [ ] * Failure ` locationName:"failures" type:"list" `
// The list of tasks.
Tasks [ ] * Task ` locationName:"tasks" type:"list" `
}
// String returns the string representation
func ( s DescribeTasksOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeTasksOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetFailures sets the Failures field's value.
func ( s * DescribeTasksOutput ) SetFailures ( v [ ] * Failure ) * DescribeTasksOutput {
s . Failures = v
return s
}
// SetTasks sets the Tasks field's value.
func ( s * DescribeTasksOutput ) SetTasks ( v [ ] * Task ) * DescribeTasksOutput {
s . Tasks = v
return s
}
2016-01-29 20:53:56 +01:00
type DiscoverPollEndpointInput struct {
_ struct { } ` type:"structure" `
// The cluster that the container instance belongs to.
Cluster * string ` locationName:"cluster" type:"string" `
// The container instance ID or full Amazon Resource Name (ARN) of the container
// instance. The ARN contains the arn:aws:ecs namespace, followed by the region
// of the container instance, the AWS account ID of the container instance owner,
// the container-instance namespace, and then the container instance ID. For
2016-11-19 19:41:01 +01:00
// example, arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID.
2016-01-29 20:53:56 +01:00
ContainerInstance * string ` locationName:"containerInstance" type:"string" `
}
// String returns the string representation
func ( s DiscoverPollEndpointInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DiscoverPollEndpointInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * DiscoverPollEndpointInput ) SetCluster ( v string ) * DiscoverPollEndpointInput {
s . Cluster = & v
return s
}
// SetContainerInstance sets the ContainerInstance field's value.
func ( s * DiscoverPollEndpointInput ) SetContainerInstance ( v string ) * DiscoverPollEndpointInput {
s . ContainerInstance = & v
return s
}
2016-01-29 20:53:56 +01:00
type DiscoverPollEndpointOutput struct {
_ struct { } ` type:"structure" `
// The endpoint for the Amazon ECS agent to poll.
Endpoint * string ` locationName:"endpoint" type:"string" `
// The telemetry endpoint for the Amazon ECS agent.
TelemetryEndpoint * string ` locationName:"telemetryEndpoint" type:"string" `
}
// String returns the string representation
func ( s DiscoverPollEndpointOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DiscoverPollEndpointOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetEndpoint sets the Endpoint field's value.
func ( s * DiscoverPollEndpointOutput ) SetEndpoint ( v string ) * DiscoverPollEndpointOutput {
s . Endpoint = & v
return s
}
// SetTelemetryEndpoint sets the TelemetryEndpoint field's value.
func ( s * DiscoverPollEndpointOutput ) SetTelemetryEndpoint ( v string ) * DiscoverPollEndpointOutput {
s . TelemetryEndpoint = & v
return s
}
2016-01-29 20:53:56 +01:00
// A failed resource.
type Failure struct {
_ struct { } ` type:"structure" `
// The Amazon Resource Name (ARN) of the failed resource.
Arn * string ` locationName:"arn" type:"string" `
// The reason for the failure.
Reason * string ` locationName:"reason" type:"string" `
}
// String returns the string representation
func ( s Failure ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Failure ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetArn sets the Arn field's value.
func ( s * Failure ) SetArn ( v string ) * Failure {
s . Arn = & v
return s
}
// SetReason sets the Reason field's value.
func ( s * Failure ) SetReason ( v string ) * Failure {
s . Reason = & v
return s
}
2016-01-29 20:53:56 +01:00
// Hostnames and IP address entries that are added to the /etc/hosts file of
// a container via the extraHosts parameter of its ContainerDefinition.
type HostEntry struct {
_ struct { } ` type:"structure" `
// The hostname to use in the /etc/hosts entry.
2016-10-17 23:21:08 +02:00
//
// Hostname is a required field
2016-01-29 20:53:56 +01:00
Hostname * string ` locationName:"hostname" type:"string" required:"true" `
// The IP address to use in the /etc/hosts entry.
2016-10-17 23:21:08 +02:00
//
// IpAddress is a required field
2016-01-29 20:53:56 +01:00
IpAddress * string ` locationName:"ipAddress" type:"string" required:"true" `
}
// String returns the string representation
func ( s HostEntry ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s HostEntry ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * HostEntry ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "HostEntry" }
if s . Hostname == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Hostname" ) )
}
if s . IpAddress == nil {
invalidParams . Add ( request . NewErrParamRequired ( "IpAddress" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetHostname sets the Hostname field's value.
func ( s * HostEntry ) SetHostname ( v string ) * HostEntry {
s . Hostname = & v
return s
}
// SetIpAddress sets the IpAddress field's value.
func ( s * HostEntry ) SetIpAddress ( v string ) * HostEntry {
s . IpAddress = & v
return s
}
2016-01-29 20:53:56 +01:00
// Details on a container instance host volume.
type HostVolumeProperties struct {
_ struct { } ` type:"structure" `
// The path on the host container instance that is presented to the container.
// If this parameter is empty, then the Docker daemon has assigned a host path
// for you. If the host parameter contains a sourcePath file location, then
// the data volume persists at the specified location on the host container
// instance until you delete it manually. If the sourcePath value does not exist
// on the host container instance, the Docker daemon creates it. If the location
// does exist, the contents of the source path folder are exported.
SourcePath * string ` locationName:"sourcePath" type:"string" `
}
// String returns the string representation
func ( s HostVolumeProperties ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s HostVolumeProperties ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetSourcePath sets the SourcePath field's value.
func ( s * HostVolumeProperties ) SetSourcePath ( v string ) * HostVolumeProperties {
s . SourcePath = & v
return s
}
2016-01-29 20:53:56 +01:00
// A key and value pair object.
type KeyValuePair struct {
_ struct { } ` type:"structure" `
// The name of the key value pair. For environment variables, this is the name
// of the environment variable.
Name * string ` locationName:"name" type:"string" `
// The value of the key value pair. For environment variables, this is the value
// of the environment variable.
Value * string ` locationName:"value" type:"string" `
}
// String returns the string representation
func ( s KeyValuePair ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s KeyValuePair ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetName sets the Name field's value.
func ( s * KeyValuePair ) SetName ( v string ) * KeyValuePair {
s . Name = & v
return s
}
// SetValue sets the Value field's value.
func ( s * KeyValuePair ) SetValue ( v string ) * KeyValuePair {
s . Value = & v
return s
}
2016-01-29 20:53:56 +01:00
type ListClustersInput struct {
_ struct { } ` type:"structure" `
// The maximum number of cluster results returned by ListClusters in paginated
// output. When this parameter is used, ListClusters only returns maxResults
// results in a single page along with a nextToken response element. The remaining
// results of the initial request can be seen by sending another ListClusters
// request with the returned nextToken value. This value can be between 1 and
// 100. If this parameter is not used, then ListClusters returns up to 100 results
// and a nextToken value if applicable.
MaxResults * int64 ` locationName:"maxResults" type:"integer" `
// The nextToken value returned from a previous paginated ListClusters request
// where maxResults was used and the results exceeded the value of that parameter.
// Pagination continues from the end of the previous results that returned the
// nextToken value. This value is null when there are no more results to return.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// This token should be treated as an opaque identifier that is only used to
// retrieve the next items in a list and not for other programmatic purposes.
2016-01-29 20:53:56 +01:00
NextToken * string ` locationName:"nextToken" type:"string" `
}
// String returns the string representation
func ( s ListClustersInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListClustersInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetMaxResults sets the MaxResults field's value.
func ( s * ListClustersInput ) SetMaxResults ( v int64 ) * ListClustersInput {
s . MaxResults = & v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListClustersInput ) SetNextToken ( v string ) * ListClustersInput {
s . NextToken = & v
return s
}
2016-01-29 20:53:56 +01:00
type ListClustersOutput struct {
_ struct { } ` type:"structure" `
// The list of full Amazon Resource Name (ARN) entries for each cluster associated
// with your account.
ClusterArns [ ] * string ` locationName:"clusterArns" type:"list" `
// The nextToken value to include in a future ListClusters request. When the
// results of a ListClusters request exceed maxResults, this value can be used
// to retrieve the next page of results. This value is null when there are no
// more results to return.
NextToken * string ` locationName:"nextToken" type:"string" `
}
// String returns the string representation
func ( s ListClustersOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListClustersOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetClusterArns sets the ClusterArns field's value.
func ( s * ListClustersOutput ) SetClusterArns ( v [ ] * string ) * ListClustersOutput {
s . ClusterArns = v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListClustersOutput ) SetNextToken ( v string ) * ListClustersOutput {
s . NextToken = & v
return s
}
2016-01-29 20:53:56 +01:00
type ListContainerInstancesInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the container instances to list. If you do not specify a cluster, the default
2016-11-19 19:41:01 +01:00
// cluster is assumed.
2016-01-29 20:53:56 +01:00
Cluster * string ` locationName:"cluster" type:"string" `
// The maximum number of container instance results returned by ListContainerInstances
// in paginated output. When this parameter is used, ListContainerInstances
// only returns maxResults results in a single page along with a nextToken response
// element. The remaining results of the initial request can be seen by sending
// another ListContainerInstances request with the returned nextToken value.
// This value can be between 1 and 100. If this parameter is not used, then
// ListContainerInstances returns up to 100 results and a nextToken value if
// applicable.
MaxResults * int64 ` locationName:"maxResults" type:"integer" `
// The nextToken value returned from a previous paginated ListContainerInstances
// request where maxResults was used and the results exceeded the value of that
// parameter. Pagination continues from the end of the previous results that
// returned the nextToken value. This value is null when there are no more results
// to return.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// This token should be treated as an opaque identifier that is only used to
// retrieve the next items in a list and not for other programmatic purposes.
2016-01-29 20:53:56 +01:00
NextToken * string ` locationName:"nextToken" type:"string" `
}
// String returns the string representation
func ( s ListContainerInstancesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListContainerInstancesInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * ListContainerInstancesInput ) SetCluster ( v string ) * ListContainerInstancesInput {
s . Cluster = & v
return s
}
// SetMaxResults sets the MaxResults field's value.
func ( s * ListContainerInstancesInput ) SetMaxResults ( v int64 ) * ListContainerInstancesInput {
s . MaxResults = & v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListContainerInstancesInput ) SetNextToken ( v string ) * ListContainerInstancesInput {
s . NextToken = & v
return s
}
type ListContainerInstancesOutput struct {
_ struct { } ` type:"structure" `
2016-01-29 20:53:56 +01:00
// The list of container instances with full Amazon Resource Name (ARN) entries
// for each container instance associated with the specified cluster.
ContainerInstanceArns [ ] * string ` locationName:"containerInstanceArns" type:"list" `
// The nextToken value to include in a future ListContainerInstances request.
// When the results of a ListContainerInstances request exceed maxResults, this
// value can be used to retrieve the next page of results. This value is null
// when there are no more results to return.
NextToken * string ` locationName:"nextToken" type:"string" `
}
// String returns the string representation
func ( s ListContainerInstancesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListContainerInstancesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetContainerInstanceArns sets the ContainerInstanceArns field's value.
func ( s * ListContainerInstancesOutput ) SetContainerInstanceArns ( v [ ] * string ) * ListContainerInstancesOutput {
s . ContainerInstanceArns = v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListContainerInstancesOutput ) SetNextToken ( v string ) * ListContainerInstancesOutput {
s . NextToken = & v
return s
}
2016-01-29 20:53:56 +01:00
type ListServicesInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the services to list. If you do not specify a cluster, the default cluster
2016-11-19 19:41:01 +01:00
// is assumed.
2016-01-29 20:53:56 +01:00
Cluster * string ` locationName:"cluster" type:"string" `
// The maximum number of container instance results returned by ListServices
// in paginated output. When this parameter is used, ListServices only returns
// maxResults results in a single page along with a nextToken response element.
// The remaining results of the initial request can be seen by sending another
// ListServices request with the returned nextToken value. This value can be
// between 1 and 10. If this parameter is not used, then ListServices returns
// up to 10 results and a nextToken value if applicable.
MaxResults * int64 ` locationName:"maxResults" type:"integer" `
// The nextToken value returned from a previous paginated ListServices request
// where maxResults was used and the results exceeded the value of that parameter.
// Pagination continues from the end of the previous results that returned the
// nextToken value. This value is null when there are no more results to return.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// This token should be treated as an opaque identifier that is only used to
// retrieve the next items in a list and not for other programmatic purposes.
2016-01-29 20:53:56 +01:00
NextToken * string ` locationName:"nextToken" type:"string" `
}
// String returns the string representation
func ( s ListServicesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListServicesInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * ListServicesInput ) SetCluster ( v string ) * ListServicesInput {
s . Cluster = & v
return s
}
// SetMaxResults sets the MaxResults field's value.
func ( s * ListServicesInput ) SetMaxResults ( v int64 ) * ListServicesInput {
s . MaxResults = & v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListServicesInput ) SetNextToken ( v string ) * ListServicesInput {
s . NextToken = & v
return s
}
2016-01-29 20:53:56 +01:00
type ListServicesOutput struct {
_ struct { } ` type:"structure" `
// The nextToken value to include in a future ListServices request. When the
// results of a ListServices request exceed maxResults, this value can be used
// to retrieve the next page of results. This value is null when there are no
// more results to return.
NextToken * string ` locationName:"nextToken" type:"string" `
// The list of full Amazon Resource Name (ARN) entries for each service associated
// with the specified cluster.
ServiceArns [ ] * string ` locationName:"serviceArns" type:"list" `
}
// String returns the string representation
func ( s ListServicesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListServicesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetNextToken sets the NextToken field's value.
func ( s * ListServicesOutput ) SetNextToken ( v string ) * ListServicesOutput {
s . NextToken = & v
return s
}
// SetServiceArns sets the ServiceArns field's value.
func ( s * ListServicesOutput ) SetServiceArns ( v [ ] * string ) * ListServicesOutput {
s . ServiceArns = v
return s
}
2016-01-29 20:53:56 +01:00
type ListTaskDefinitionFamiliesInput struct {
_ struct { } ` type:"structure" `
// The familyPrefix is a string that is used to filter the results of ListTaskDefinitionFamilies.
// If you specify a familyPrefix, only task definition family names that begin
// with the familyPrefix string are returned.
FamilyPrefix * string ` locationName:"familyPrefix" type:"string" `
// The maximum number of task definition family results returned by ListTaskDefinitionFamilies
// in paginated output. When this parameter is used, ListTaskDefinitions only
// returns maxResults results in a single page along with a nextToken response
// element. The remaining results of the initial request can be seen by sending
// another ListTaskDefinitionFamilies request with the returned nextToken value.
// This value can be between 1 and 100. If this parameter is not used, then
// ListTaskDefinitionFamilies returns up to 100 results and a nextToken value
// if applicable.
MaxResults * int64 ` locationName:"maxResults" type:"integer" `
// The nextToken value returned from a previous paginated ListTaskDefinitionFamilies
// request where maxResults was used and the results exceeded the value of that
// parameter. Pagination continues from the end of the previous results that
// returned the nextToken value. This value is null when there are no more results
// to return.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// This token should be treated as an opaque identifier that is only used to
// retrieve the next items in a list and not for other programmatic purposes.
2016-01-29 20:53:56 +01:00
NextToken * string ` locationName:"nextToken" type:"string" `
2016-07-15 15:49:02 +02:00
// The task definition family status with which to filter the ListTaskDefinitionFamilies
// results. By default, both ACTIVE and INACTIVE task definition families are
// listed. If this parameter is set to ACTIVE, only task definition families
// that have an ACTIVE task definition revision are returned. If this parameter
// is set to INACTIVE, only task definition families that do not have any ACTIVE
// task definition revisions are returned. If you paginate the resulting output,
// be sure to keep the status value constant in each subsequent request.
Status * string ` locationName:"status" type:"string" enum:"TaskDefinitionFamilyStatus" `
2016-01-29 20:53:56 +01:00
}
// String returns the string representation
func ( s ListTaskDefinitionFamiliesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListTaskDefinitionFamiliesInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetFamilyPrefix sets the FamilyPrefix field's value.
func ( s * ListTaskDefinitionFamiliesInput ) SetFamilyPrefix ( v string ) * ListTaskDefinitionFamiliesInput {
s . FamilyPrefix = & v
return s
}
// SetMaxResults sets the MaxResults field's value.
func ( s * ListTaskDefinitionFamiliesInput ) SetMaxResults ( v int64 ) * ListTaskDefinitionFamiliesInput {
s . MaxResults = & v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListTaskDefinitionFamiliesInput ) SetNextToken ( v string ) * ListTaskDefinitionFamiliesInput {
s . NextToken = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * ListTaskDefinitionFamiliesInput ) SetStatus ( v string ) * ListTaskDefinitionFamiliesInput {
s . Status = & v
return s
}
2016-01-29 20:53:56 +01:00
type ListTaskDefinitionFamiliesOutput struct {
_ struct { } ` type:"structure" `
// The list of task definition family names that match the ListTaskDefinitionFamilies
// request.
Families [ ] * string ` locationName:"families" type:"list" `
// The nextToken value to include in a future ListTaskDefinitionFamilies request.
// When the results of a ListTaskDefinitionFamilies request exceed maxResults,
// this value can be used to retrieve the next page of results. This value is
// null when there are no more results to return.
NextToken * string ` locationName:"nextToken" type:"string" `
}
// String returns the string representation
func ( s ListTaskDefinitionFamiliesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListTaskDefinitionFamiliesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetFamilies sets the Families field's value.
func ( s * ListTaskDefinitionFamiliesOutput ) SetFamilies ( v [ ] * string ) * ListTaskDefinitionFamiliesOutput {
s . Families = v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListTaskDefinitionFamiliesOutput ) SetNextToken ( v string ) * ListTaskDefinitionFamiliesOutput {
s . NextToken = & v
return s
}
2016-01-29 20:53:56 +01:00
type ListTaskDefinitionsInput struct {
_ struct { } ` type:"structure" `
// The full family name with which to filter the ListTaskDefinitions results.
// Specifying a familyPrefix limits the listed task definitions to task definition
// revisions that belong to that family.
FamilyPrefix * string ` locationName:"familyPrefix" type:"string" `
// The maximum number of task definition results returned by ListTaskDefinitions
// in paginated output. When this parameter is used, ListTaskDefinitions only
// returns maxResults results in a single page along with a nextToken response
// element. The remaining results of the initial request can be seen by sending
// another ListTaskDefinitions request with the returned nextToken value. This
// value can be between 1 and 100. If this parameter is not used, then ListTaskDefinitions
// returns up to 100 results and a nextToken value if applicable.
MaxResults * int64 ` locationName:"maxResults" type:"integer" `
// The nextToken value returned from a previous paginated ListTaskDefinitions
// request where maxResults was used and the results exceeded the value of that
// parameter. Pagination continues from the end of the previous results that
// returned the nextToken value. This value is null when there are no more results
// to return.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// This token should be treated as an opaque identifier that is only used to
// retrieve the next items in a list and not for other programmatic purposes.
2016-01-29 20:53:56 +01:00
NextToken * string ` locationName:"nextToken" type:"string" `
// The order in which to sort the results. Valid values are ASC and DESC. By
// default (ASC), task definitions are listed lexicographically by family name
// and in ascending numerical order by revision so that the newest task definitions
// in a family are listed last. Setting this parameter to DESC reverses the
// sort order on family name and revision so that the newest task definitions
// in a family are listed first.
Sort * string ` locationName:"sort" type:"string" enum:"SortOrder" `
// The task definition status with which to filter the ListTaskDefinitions results.
// By default, only ACTIVE task definitions are listed. By setting this parameter
// to INACTIVE, you can view task definitions that are INACTIVE as long as an
// active task or service still references them. If you paginate the resulting
// output, be sure to keep the status value constant in each subsequent request.
Status * string ` locationName:"status" type:"string" enum:"TaskDefinitionStatus" `
}
// String returns the string representation
func ( s ListTaskDefinitionsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListTaskDefinitionsInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetFamilyPrefix sets the FamilyPrefix field's value.
func ( s * ListTaskDefinitionsInput ) SetFamilyPrefix ( v string ) * ListTaskDefinitionsInput {
s . FamilyPrefix = & v
return s
}
// SetMaxResults sets the MaxResults field's value.
func ( s * ListTaskDefinitionsInput ) SetMaxResults ( v int64 ) * ListTaskDefinitionsInput {
s . MaxResults = & v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListTaskDefinitionsInput ) SetNextToken ( v string ) * ListTaskDefinitionsInput {
s . NextToken = & v
return s
}
// SetSort sets the Sort field's value.
func ( s * ListTaskDefinitionsInput ) SetSort ( v string ) * ListTaskDefinitionsInput {
s . Sort = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * ListTaskDefinitionsInput ) SetStatus ( v string ) * ListTaskDefinitionsInput {
s . Status = & v
return s
}
2016-01-29 20:53:56 +01:00
type ListTaskDefinitionsOutput struct {
_ struct { } ` type:"structure" `
// The nextToken value to include in a future ListTaskDefinitions request. When
// the results of a ListTaskDefinitions request exceed maxResults, this value
// can be used to retrieve the next page of results. This value is null when
// there are no more results to return.
NextToken * string ` locationName:"nextToken" type:"string" `
// The list of task definition Amazon Resource Name (ARN) entries for the ListTaskDefinitions
// request.
TaskDefinitionArns [ ] * string ` locationName:"taskDefinitionArns" type:"list" `
}
// String returns the string representation
func ( s ListTaskDefinitionsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListTaskDefinitionsOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetNextToken sets the NextToken field's value.
func ( s * ListTaskDefinitionsOutput ) SetNextToken ( v string ) * ListTaskDefinitionsOutput {
s . NextToken = & v
return s
}
// SetTaskDefinitionArns sets the TaskDefinitionArns field's value.
func ( s * ListTaskDefinitionsOutput ) SetTaskDefinitionArns ( v [ ] * string ) * ListTaskDefinitionsOutput {
s . TaskDefinitionArns = v
return s
}
2016-01-29 20:53:56 +01:00
type ListTasksInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the tasks to list. If you do not specify a cluster, the default cluster is
2016-11-19 19:41:01 +01:00
// assumed.
2016-01-29 20:53:56 +01:00
Cluster * string ` locationName:"cluster" type:"string" `
// The container instance ID or full Amazon Resource Name (ARN) of the container
// instance with which to filter the ListTasks results. Specifying a containerInstance
// limits the results to tasks that belong to that container instance.
ContainerInstance * string ` locationName:"containerInstance" type:"string" `
2016-08-11 19:01:51 +02:00
// The task desired status with which to filter the ListTasks results. Specifying
// a desiredStatus of STOPPED limits the results to tasks that ECS has set the
// desired status to STOPPED, which can be useful for debugging tasks that are
// not starting properly or have died or finished. The default status filter
// is RUNNING, which shows tasks that ECS has set the desired status to RUNNING.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// Although you can filter results based on a desired status of PENDING, this
2016-07-15 15:49:02 +02:00
// will not return any results because ECS never sets the desired status of
// a task to that value (only a task's lastStatus may have a value of PENDING).
2016-01-29 20:53:56 +01:00
DesiredStatus * string ` locationName:"desiredStatus" type:"string" enum:"DesiredStatus" `
// The name of the family with which to filter the ListTasks results. Specifying
// a family limits the results to tasks that belong to that family.
Family * string ` locationName:"family" type:"string" `
// The maximum number of task results returned by ListTasks in paginated output.
// When this parameter is used, ListTasks only returns maxResults results in
// a single page along with a nextToken response element. The remaining results
// of the initial request can be seen by sending another ListTasks request with
// the returned nextToken value. This value can be between 1 and 100. If this
// parameter is not used, then ListTasks returns up to 100 results and a nextToken
// value if applicable.
MaxResults * int64 ` locationName:"maxResults" type:"integer" `
// The nextToken value returned from a previous paginated ListTasks request
// where maxResults was used and the results exceeded the value of that parameter.
// Pagination continues from the end of the previous results that returned the
// nextToken value. This value is null when there are no more results to return.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// This token should be treated as an opaque identifier that is only used to
// retrieve the next items in a list and not for other programmatic purposes.
2016-01-29 20:53:56 +01:00
NextToken * string ` locationName:"nextToken" type:"string" `
// The name of the service with which to filter the ListTasks results. Specifying
// a serviceName limits the results to tasks that belong to that service.
ServiceName * string ` locationName:"serviceName" type:"string" `
// The startedBy value with which to filter the task results. Specifying a startedBy
// value limits the results to tasks that were started with that value.
StartedBy * string ` locationName:"startedBy" type:"string" `
}
// String returns the string representation
func ( s ListTasksInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListTasksInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * ListTasksInput ) SetCluster ( v string ) * ListTasksInput {
s . Cluster = & v
return s
}
// SetContainerInstance sets the ContainerInstance field's value.
func ( s * ListTasksInput ) SetContainerInstance ( v string ) * ListTasksInput {
s . ContainerInstance = & v
return s
}
// SetDesiredStatus sets the DesiredStatus field's value.
func ( s * ListTasksInput ) SetDesiredStatus ( v string ) * ListTasksInput {
s . DesiredStatus = & v
return s
}
// SetFamily sets the Family field's value.
func ( s * ListTasksInput ) SetFamily ( v string ) * ListTasksInput {
s . Family = & v
return s
}
// SetMaxResults sets the MaxResults field's value.
func ( s * ListTasksInput ) SetMaxResults ( v int64 ) * ListTasksInput {
s . MaxResults = & v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListTasksInput ) SetNextToken ( v string ) * ListTasksInput {
s . NextToken = & v
return s
}
// SetServiceName sets the ServiceName field's value.
func ( s * ListTasksInput ) SetServiceName ( v string ) * ListTasksInput {
s . ServiceName = & v
return s
}
// SetStartedBy sets the StartedBy field's value.
func ( s * ListTasksInput ) SetStartedBy ( v string ) * ListTasksInput {
s . StartedBy = & v
return s
}
2016-01-29 20:53:56 +01:00
type ListTasksOutput struct {
_ struct { } ` type:"structure" `
// The nextToken value to include in a future ListTasks request. When the results
// of a ListTasks request exceed maxResults, this value can be used to retrieve
// the next page of results. This value is null when there are no more results
// to return.
NextToken * string ` locationName:"nextToken" type:"string" `
// The list of task Amazon Resource Name (ARN) entries for the ListTasks request.
TaskArns [ ] * string ` locationName:"taskArns" type:"list" `
}
// String returns the string representation
func ( s ListTasksOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListTasksOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetNextToken sets the NextToken field's value.
func ( s * ListTasksOutput ) SetNextToken ( v string ) * ListTasksOutput {
s . NextToken = & v
return s
}
// SetTaskArns sets the TaskArns field's value.
func ( s * ListTasksOutput ) SetTaskArns ( v [ ] * string ) * ListTasksOutput {
s . TaskArns = v
return s
}
2016-01-29 20:53:56 +01:00
// Details on a load balancer that is used with a service.
type LoadBalancer struct {
_ struct { } ` type:"structure" `
// The name of the container (as it appears in a container definition) to associate
// with the load balancer.
ContainerName * string ` locationName:"containerName" type:"string" `
// The port on the container to associate with the load balancer. This port
// must correspond to a containerPort in the service's task definition. Your
// container instances must allow ingress traffic on the hostPort of the port
// mapping.
ContainerPort * int64 ` locationName:"containerPort" type:"integer" `
// The name of the load balancer.
LoadBalancerName * string ` locationName:"loadBalancerName" type:"string" `
2016-08-11 19:01:51 +02:00
// The full Amazon Resource Name (ARN) of the Elastic Load Balancing target
// group associated with a service.
TargetGroupArn * string ` locationName:"targetGroupArn" type:"string" `
2016-01-29 20:53:56 +01:00
}
// String returns the string representation
func ( s LoadBalancer ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s LoadBalancer ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetContainerName sets the ContainerName field's value.
func ( s * LoadBalancer ) SetContainerName ( v string ) * LoadBalancer {
s . ContainerName = & v
return s
}
// SetContainerPort sets the ContainerPort field's value.
func ( s * LoadBalancer ) SetContainerPort ( v int64 ) * LoadBalancer {
s . ContainerPort = & v
return s
}
// SetLoadBalancerName sets the LoadBalancerName field's value.
func ( s * LoadBalancer ) SetLoadBalancerName ( v string ) * LoadBalancer {
s . LoadBalancerName = & v
return s
}
// SetTargetGroupArn sets the TargetGroupArn field's value.
func ( s * LoadBalancer ) SetTargetGroupArn ( v string ) * LoadBalancer {
s . TargetGroupArn = & v
return s
}
2016-01-29 20:53:56 +01:00
// Log configuration options to send to a custom log driver for the container.
type LogConfiguration struct {
_ struct { } ` type:"structure" `
2016-07-15 15:49:02 +02:00
// The log driver to use for the container. The valid values listed for this
// parameter are log drivers that the Amazon ECS container agent can communicate
// with by default.
//
2016-11-19 19:41:01 +01:00
// If you have a custom driver that is not listed above that you would like
2016-07-15 15:49:02 +02:00
// to work with the Amazon ECS container agent, you can fork the Amazon ECS
// container agent project that is available on GitHub (https://github.com/aws/amazon-ecs-agent)
// and customize it to work with that driver. We encourage you to submit pull
// requests for changes that you would like to have included. However, Amazon
// Web Services does not currently provide support for running modified copies
// of this software.
//
2016-11-19 19:41:01 +01:00
// This parameter requires version 1.18 of the Docker Remote API or greater
2016-07-15 15:49:02 +02:00
// on your container instance. To check the Docker Remote API version on your
// container instance, log into your container instance and run the following
// command: sudo docker version | grep "Server API version"
2016-10-17 23:21:08 +02:00
//
// LogDriver is a required field
2016-01-29 20:53:56 +01:00
LogDriver * string ` locationName:"logDriver" type:"string" required:"true" enum:"LogDriver" `
// The configuration options to send to the log driver. This parameter requires
// version 1.19 of the Docker Remote API or greater on your container instance.
// To check the Docker Remote API version on your container instance, log into
// your container instance and run the following command: sudo docker version
// | grep "Server API version"
Options map [ string ] * string ` locationName:"options" type:"map" `
}
// String returns the string representation
func ( s LogConfiguration ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s LogConfiguration ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * LogConfiguration ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "LogConfiguration" }
if s . LogDriver == nil {
invalidParams . Add ( request . NewErrParamRequired ( "LogDriver" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetLogDriver sets the LogDriver field's value.
func ( s * LogConfiguration ) SetLogDriver ( v string ) * LogConfiguration {
s . LogDriver = & v
return s
}
// SetOptions sets the Options field's value.
func ( s * LogConfiguration ) SetOptions ( v map [ string ] * string ) * LogConfiguration {
s . Options = v
return s
}
2016-01-29 20:53:56 +01:00
// Details on a volume mount point that is used in a container definition.
type MountPoint struct {
_ struct { } ` type:"structure" `
// The path on the container to mount the host volume at.
ContainerPath * string ` locationName:"containerPath" type:"string" `
// If this value is true, the container has read-only access to the volume.
// If this value is false, then the container can write to the volume. The default
// value is false.
ReadOnly * bool ` locationName:"readOnly" type:"boolean" `
// The name of the volume to mount.
SourceVolume * string ` locationName:"sourceVolume" type:"string" `
}
// String returns the string representation
func ( s MountPoint ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s MountPoint ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetContainerPath sets the ContainerPath field's value.
func ( s * MountPoint ) SetContainerPath ( v string ) * MountPoint {
s . ContainerPath = & v
return s
}
// SetReadOnly sets the ReadOnly field's value.
func ( s * MountPoint ) SetReadOnly ( v bool ) * MountPoint {
s . ReadOnly = & v
return s
}
// SetSourceVolume sets the SourceVolume field's value.
func ( s * MountPoint ) SetSourceVolume ( v string ) * MountPoint {
s . SourceVolume = & v
return s
}
2016-01-29 20:53:56 +01:00
// Details on the network bindings between a container and its host container
// instance. After a task reaches the RUNNING status, manual and automatic host
// and container port assignments are visible in the networkBindings section
// of DescribeTasks API responses.
type NetworkBinding struct {
_ struct { } ` type:"structure" `
// The IP address that the container is bound to on the container instance.
BindIP * string ` locationName:"bindIP" type:"string" `
// The port number on the container that is be used with the network binding.
ContainerPort * int64 ` locationName:"containerPort" type:"integer" `
// The port number on the host that is used with the network binding.
HostPort * int64 ` locationName:"hostPort" type:"integer" `
// The protocol used for the network binding.
Protocol * string ` locationName:"protocol" type:"string" enum:"TransportProtocol" `
}
// String returns the string representation
func ( s NetworkBinding ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s NetworkBinding ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetBindIP sets the BindIP field's value.
func ( s * NetworkBinding ) SetBindIP ( v string ) * NetworkBinding {
s . BindIP = & v
return s
}
// SetContainerPort sets the ContainerPort field's value.
func ( s * NetworkBinding ) SetContainerPort ( v int64 ) * NetworkBinding {
s . ContainerPort = & v
return s
}
// SetHostPort sets the HostPort field's value.
func ( s * NetworkBinding ) SetHostPort ( v int64 ) * NetworkBinding {
s . HostPort = & v
return s
}
// SetProtocol sets the Protocol field's value.
func ( s * NetworkBinding ) SetProtocol ( v string ) * NetworkBinding {
s . Protocol = & v
return s
}
2016-01-29 20:53:56 +01:00
// Port mappings allow containers to access ports on the host container instance
// to send or receive traffic. Port mappings are specified as part of the container
// definition. After a task reaches the RUNNING status, manual and automatic
// host and container port assignments are visible in the networkBindings section
// of DescribeTasks API responses.
type PortMapping struct {
_ struct { } ` type:"structure" `
// The port number on the container that is bound to the user-specified or automatically
// assigned host port. If you specify a container port and not a host port,
// your container automatically receives a host port in the ephemeral port range
2016-07-15 15:49:02 +02:00
// (for more information, see hostPort). Port mappings that are automatically
// assigned in this way do not count toward the 100 reserved ports limit of
// a container instance.
2016-01-29 20:53:56 +01:00
ContainerPort * int64 ` locationName:"containerPort" type:"integer" `
// The port number on the container instance to reserve for your container.
// You can specify a non-reserved host port for your container port mapping,
// or you can omit the hostPort (or set it to 0) while specifying a containerPort
// and your container automatically receives a port in the ephemeral port range
// for your container instance operating system and Docker version.
//
// The default ephemeral port range is 49153 to 65535, and this range is used
// for Docker versions prior to 1.6.0. For Docker version 1.6.0 and later, the
// Docker daemon tries to read the ephemeral port range from /proc/sys/net/ipv4/ip_local_port_range;
// if this kernel parameter is unavailable, the default ephemeral port range
// is used. You should not attempt to specify a host port in the ephemeral port
// range, because these are reserved for automatic assignment. In general, ports
// below 32768 are outside of the ephemeral port range.
//
// The default reserved ports are 22 for SSH, the Docker ports 2375 and 2376,
2016-11-19 19:41:01 +01:00
// and the Amazon ECS container agent ports 51678 and 51679. Any host port that
// was previously specified in a running task is also reserved while the task
// is running (after a task stops, the host port is released).The current reserved
// ports are displayed in the remainingResources of DescribeContainerInstances
// output, and a container instance may have up to 100 reserved ports at a time,
// including the default reserved ports (automatically assigned ports do not
// count toward the 100 reserved ports limit).
2016-01-29 20:53:56 +01:00
HostPort * int64 ` locationName:"hostPort" type:"integer" `
// The protocol used for the port mapping. Valid values are tcp and udp. The
// default is tcp.
Protocol * string ` locationName:"protocol" type:"string" enum:"TransportProtocol" `
}
// String returns the string representation
func ( s PortMapping ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s PortMapping ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetContainerPort sets the ContainerPort field's value.
func ( s * PortMapping ) SetContainerPort ( v int64 ) * PortMapping {
s . ContainerPort = & v
return s
}
// SetHostPort sets the HostPort field's value.
func ( s * PortMapping ) SetHostPort ( v int64 ) * PortMapping {
s . HostPort = & v
return s
}
// SetProtocol sets the Protocol field's value.
func ( s * PortMapping ) SetProtocol ( v string ) * PortMapping {
s . Protocol = & v
return s
}
2016-01-29 20:53:56 +01:00
type RegisterContainerInstanceInput struct {
_ struct { } ` type:"structure" `
// The container instance attributes that this container instance supports.
Attributes [ ] * Attribute ` locationName:"attributes" type:"list" `
// The short name or full Amazon Resource Name (ARN) of the cluster with which
// to register your container instance. If you do not specify a cluster, the
2016-11-19 19:41:01 +01:00
// default cluster is assumed.
2016-01-29 20:53:56 +01:00
Cluster * string ` locationName:"cluster" type:"string" `
// The Amazon Resource Name (ARN) of the container instance (if it was previously
// registered).
ContainerInstanceArn * string ` locationName:"containerInstanceArn" type:"string" `
// The instance identity document for the EC2 instance to register. This document
// can be found by running the following command from the instance: curl http://169.254.169.254/latest/dynamic/instance-identity/document/
InstanceIdentityDocument * string ` locationName:"instanceIdentityDocument" type:"string" `
// The instance identity document signature for the EC2 instance to register.
// This signature can be found by running the following command from the instance:
// curl http://169.254.169.254/latest/dynamic/instance-identity/signature/
InstanceIdentityDocumentSignature * string ` locationName:"instanceIdentityDocumentSignature" type:"string" `
// The resources available on the instance.
TotalResources [ ] * Resource ` locationName:"totalResources" type:"list" `
// The version information for the Amazon ECS container agent and Docker daemon
// running on the container instance.
VersionInfo * VersionInfo ` locationName:"versionInfo" type:"structure" `
}
// String returns the string representation
func ( s RegisterContainerInstanceInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RegisterContainerInstanceInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * RegisterContainerInstanceInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "RegisterContainerInstanceInput" }
if s . Attributes != nil {
for i , v := range s . Attributes {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "Attributes" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetAttributes sets the Attributes field's value.
func ( s * RegisterContainerInstanceInput ) SetAttributes ( v [ ] * Attribute ) * RegisterContainerInstanceInput {
s . Attributes = v
return s
}
// SetCluster sets the Cluster field's value.
func ( s * RegisterContainerInstanceInput ) SetCluster ( v string ) * RegisterContainerInstanceInput {
s . Cluster = & v
return s
}
// SetContainerInstanceArn sets the ContainerInstanceArn field's value.
func ( s * RegisterContainerInstanceInput ) SetContainerInstanceArn ( v string ) * RegisterContainerInstanceInput {
s . ContainerInstanceArn = & v
return s
}
// SetInstanceIdentityDocument sets the InstanceIdentityDocument field's value.
func ( s * RegisterContainerInstanceInput ) SetInstanceIdentityDocument ( v string ) * RegisterContainerInstanceInput {
s . InstanceIdentityDocument = & v
return s
}
// SetInstanceIdentityDocumentSignature sets the InstanceIdentityDocumentSignature field's value.
func ( s * RegisterContainerInstanceInput ) SetInstanceIdentityDocumentSignature ( v string ) * RegisterContainerInstanceInput {
s . InstanceIdentityDocumentSignature = & v
return s
}
// SetTotalResources sets the TotalResources field's value.
func ( s * RegisterContainerInstanceInput ) SetTotalResources ( v [ ] * Resource ) * RegisterContainerInstanceInput {
s . TotalResources = v
return s
}
// SetVersionInfo sets the VersionInfo field's value.
func ( s * RegisterContainerInstanceInput ) SetVersionInfo ( v * VersionInfo ) * RegisterContainerInstanceInput {
s . VersionInfo = v
return s
}
2016-01-29 20:53:56 +01:00
type RegisterContainerInstanceOutput struct {
_ struct { } ` type:"structure" `
2016-11-30 23:18:04 +01:00
// The container instance that was registered.
2016-01-29 20:53:56 +01:00
ContainerInstance * ContainerInstance ` locationName:"containerInstance" type:"structure" `
}
// String returns the string representation
func ( s RegisterContainerInstanceOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RegisterContainerInstanceOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetContainerInstance sets the ContainerInstance field's value.
func ( s * RegisterContainerInstanceOutput ) SetContainerInstance ( v * ContainerInstance ) * RegisterContainerInstanceOutput {
s . ContainerInstance = v
return s
}
2016-01-29 20:53:56 +01:00
type RegisterTaskDefinitionInput struct {
_ struct { } ` type:"structure" `
// A list of container definitions in JSON format that describe the different
// containers that make up your task.
2016-10-17 23:21:08 +02:00
//
// ContainerDefinitions is a required field
2016-01-29 20:53:56 +01:00
ContainerDefinitions [ ] * ContainerDefinition ` locationName:"containerDefinitions" type:"list" required:"true" `
// You must specify a family for a task definition, which allows you to track
// multiple versions of the same task definition. The family is used as a name
// for your task definition. Up to 255 letters (uppercase and lowercase), numbers,
// hyphens, and underscores are allowed.
2016-10-17 23:21:08 +02:00
//
// Family is a required field
2016-01-29 20:53:56 +01:00
Family * string ` locationName:"family" type:"string" required:"true" `
2016-08-20 11:16:03 +02:00
// 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" `
2016-11-19 19:41:01 +01:00
// The short name or full 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. 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.
2016-07-15 15:49:02 +02:00
TaskRoleArn * string ` locationName:"taskRoleArn" type:"string" `
2016-01-29 20:53:56 +01:00
// A list of volume definitions in JSON format that containers in your task
// may use.
Volumes [ ] * Volume ` locationName:"volumes" type:"list" `
}
// String returns the string representation
func ( s RegisterTaskDefinitionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RegisterTaskDefinitionInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * RegisterTaskDefinitionInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "RegisterTaskDefinitionInput" }
if s . ContainerDefinitions == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ContainerDefinitions" ) )
}
if s . Family == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Family" ) )
}
if s . ContainerDefinitions != nil {
for i , v := range s . ContainerDefinitions {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "ContainerDefinitions" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetContainerDefinitions sets the ContainerDefinitions field's value.
func ( s * RegisterTaskDefinitionInput ) SetContainerDefinitions ( v [ ] * ContainerDefinition ) * RegisterTaskDefinitionInput {
s . ContainerDefinitions = v
return s
}
// SetFamily sets the Family field's value.
func ( s * RegisterTaskDefinitionInput ) SetFamily ( v string ) * RegisterTaskDefinitionInput {
s . Family = & v
return s
}
// SetNetworkMode sets the NetworkMode field's value.
func ( s * RegisterTaskDefinitionInput ) SetNetworkMode ( v string ) * RegisterTaskDefinitionInput {
s . NetworkMode = & v
return s
}
// SetTaskRoleArn sets the TaskRoleArn field's value.
func ( s * RegisterTaskDefinitionInput ) SetTaskRoleArn ( v string ) * RegisterTaskDefinitionInput {
s . TaskRoleArn = & v
return s
}
// SetVolumes sets the Volumes field's value.
func ( s * RegisterTaskDefinitionInput ) SetVolumes ( v [ ] * Volume ) * RegisterTaskDefinitionInput {
s . Volumes = v
return s
}
2016-01-29 20:53:56 +01:00
type RegisterTaskDefinitionOutput struct {
_ struct { } ` type:"structure" `
// The full description of the registered task definition.
TaskDefinition * TaskDefinition ` locationName:"taskDefinition" type:"structure" `
}
// String returns the string representation
func ( s RegisterTaskDefinitionOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RegisterTaskDefinitionOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetTaskDefinition sets the TaskDefinition field's value.
func ( s * RegisterTaskDefinitionOutput ) SetTaskDefinition ( v * TaskDefinition ) * RegisterTaskDefinitionOutput {
s . TaskDefinition = v
return s
}
2016-01-29 20:53:56 +01:00
// Describes the resources available for a container instance.
type Resource struct {
_ struct { } ` type:"structure" `
// When the doubleValue type is set, the value of the resource must be a double
// precision floating-point type.
DoubleValue * float64 ` locationName:"doubleValue" type:"double" `
// When the integerValue type is set, the value of the resource must be an integer.
IntegerValue * int64 ` locationName:"integerValue" type:"integer" `
// When the longValue type is set, the value of the resource must be an extended
// precision floating-point type.
LongValue * int64 ` locationName:"longValue" type:"long" `
// The name of the resource, such as CPU, MEMORY, PORTS, or a user-defined resource.
Name * string ` locationName:"name" type:"string" `
// When the stringSetValue type is set, the value of the resource must be a
// string type.
StringSetValue [ ] * string ` locationName:"stringSetValue" type:"list" `
// The type of the resource, such as INTEGER, DOUBLE, LONG, or STRINGSET.
Type * string ` locationName:"type" type:"string" `
}
// String returns the string representation
func ( s Resource ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Resource ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetDoubleValue sets the DoubleValue field's value.
func ( s * Resource ) SetDoubleValue ( v float64 ) * Resource {
s . DoubleValue = & v
return s
}
// SetIntegerValue sets the IntegerValue field's value.
func ( s * Resource ) SetIntegerValue ( v int64 ) * Resource {
s . IntegerValue = & v
return s
}
// SetLongValue sets the LongValue field's value.
func ( s * Resource ) SetLongValue ( v int64 ) * Resource {
s . LongValue = & v
return s
}
// SetName sets the Name field's value.
func ( s * Resource ) SetName ( v string ) * Resource {
s . Name = & v
return s
}
// SetStringSetValue sets the StringSetValue field's value.
func ( s * Resource ) SetStringSetValue ( v [ ] * string ) * Resource {
s . StringSetValue = v
return s
}
// SetType sets the Type field's value.
func ( s * Resource ) SetType ( v string ) * Resource {
s . Type = & v
return s
}
2016-01-29 20:53:56 +01:00
type RunTaskInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster on which
// to run your task. If you do not specify a cluster, the default cluster is
2016-11-19 19:41:01 +01:00
// assumed.
2016-01-29 20:53:56 +01:00
Cluster * string ` locationName:"cluster" type:"string" `
// The number of instantiations of the specified task to place on your cluster.
//
2016-11-19 19:41:01 +01:00
// The count parameter is limited to 10 tasks per call.
2016-01-29 20:53:56 +01:00
Count * int64 ` locationName:"count" type:"integer" `
// A list of container overrides in JSON format that specify the name of a container
// in the specified task definition and the overrides it should receive. You
// can override the default command for a container (that is specified in the
// task definition or Docker image) with a command override. You can also override
// existing environment variables (that are specified in the task definition
// or Docker image) on a container or add new environment variables to it with
// an environment override.
//
2016-11-19 19:41:01 +01:00
// A total of 8192 characters are allowed for overrides. This limit includes
2016-01-29 20:53:56 +01:00
// the JSON formatting characters of the override structure.
Overrides * TaskOverride ` locationName:"overrides" type:"structure" `
// An optional tag specified when a task is started. For example if you automatically
// trigger a task to run a batch process job, you could apply a unique identifier
// for that job to your task with the startedBy parameter. You can then identify
// which tasks belong to that job by filtering the results of a ListTasks call
2016-07-15 15:49:02 +02:00
// with the startedBy value. Up to 36 letters (uppercase and lowercase), numbers,
// hyphens, and underscores are allowed.
2016-01-29 20:53:56 +01:00
//
// If a task is started by an Amazon ECS service, then the startedBy parameter
// contains the deployment ID of the service that starts it.
StartedBy * string ` locationName:"startedBy" type:"string" `
// The family and revision (family:revision) or full Amazon Resource Name (ARN)
// of the task definition to run. If a revision is not specified, the latest
// ACTIVE revision is used.
2016-10-17 23:21:08 +02:00
//
// TaskDefinition is a required field
2016-01-29 20:53:56 +01:00
TaskDefinition * string ` locationName:"taskDefinition" type:"string" required:"true" `
}
// String returns the string representation
func ( s RunTaskInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RunTaskInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * RunTaskInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "RunTaskInput" }
if s . TaskDefinition == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TaskDefinition" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * RunTaskInput ) SetCluster ( v string ) * RunTaskInput {
s . Cluster = & v
return s
}
// SetCount sets the Count field's value.
func ( s * RunTaskInput ) SetCount ( v int64 ) * RunTaskInput {
s . Count = & v
return s
}
// SetOverrides sets the Overrides field's value.
func ( s * RunTaskInput ) SetOverrides ( v * TaskOverride ) * RunTaskInput {
s . Overrides = v
return s
}
// SetStartedBy sets the StartedBy field's value.
func ( s * RunTaskInput ) SetStartedBy ( v string ) * RunTaskInput {
s . StartedBy = & v
return s
}
// SetTaskDefinition sets the TaskDefinition field's value.
func ( s * RunTaskInput ) SetTaskDefinition ( v string ) * RunTaskInput {
s . TaskDefinition = & v
return s
}
2016-01-29 20:53:56 +01:00
type RunTaskOutput struct {
_ struct { } ` type:"structure" `
// Any failures associated with the call.
Failures [ ] * Failure ` locationName:"failures" type:"list" `
// A full description of the tasks that were run. Each task that was successfully
// placed on your cluster are described here.
Tasks [ ] * Task ` locationName:"tasks" type:"list" `
}
// String returns the string representation
func ( s RunTaskOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RunTaskOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetFailures sets the Failures field's value.
func ( s * RunTaskOutput ) SetFailures ( v [ ] * Failure ) * RunTaskOutput {
s . Failures = v
return s
}
// SetTasks sets the Tasks field's value.
func ( s * RunTaskOutput ) SetTasks ( v [ ] * Task ) * RunTaskOutput {
s . Tasks = v
return s
}
2016-01-29 20:53:56 +01:00
// Details on a service within a cluster
type Service struct {
_ struct { } ` type:"structure" `
2016-07-15 15:49:02 +02:00
// The Amazon Resource Name (ARN) of the cluster that hosts the service.
2016-01-29 20:53:56 +01:00
ClusterArn * string ` locationName:"clusterArn" type:"string" `
2016-08-11 19:01:51 +02:00
// The Unix timestamp for when the service was created.
2016-07-15 15:49:02 +02:00
CreatedAt * time . Time ` locationName:"createdAt" type:"timestamp" timestampFormat:"unix" `
2016-01-29 20:53:56 +01:00
// Optional deployment parameters that control how many tasks run during the
// deployment and the ordering of stopping and starting tasks.
DeploymentConfiguration * DeploymentConfiguration ` locationName:"deploymentConfiguration" type:"structure" `
// The current state of deployments for the service.
Deployments [ ] * Deployment ` locationName:"deployments" type:"list" `
// The desired number of instantiations of the task definition to keep running
// on the service. This value is specified when the service is created with
// CreateService, and it can be modified with UpdateService.
DesiredCount * int64 ` locationName:"desiredCount" type:"integer" `
// The event stream for your service. A maximum of 100 of the latest events
// are displayed.
Events [ ] * ServiceEvent ` locationName:"events" type:"list" `
2016-08-11 19:01:51 +02:00
// A list of Elastic Load Balancing load balancer objects, containing the load
// balancer name, the container name (as it appears in a container definition),
// and the container port to access from the load balancer.
2016-01-29 20:53:56 +01:00
LoadBalancers [ ] * LoadBalancer ` locationName:"loadBalancers" type:"list" `
// The number of tasks in the cluster that are in the PENDING state.
PendingCount * int64 ` locationName:"pendingCount" type:"integer" `
// The Amazon Resource Name (ARN) of the IAM role associated with the service
// that allows the Amazon ECS container agent to register container instances
2016-08-11 19:01:51 +02:00
// with an Elastic Load Balancing load balancer.
2016-01-29 20:53:56 +01:00
RoleArn * string ` locationName:"roleArn" type:"string" `
// The number of tasks in the cluster that are in the RUNNING state.
RunningCount * int64 ` locationName:"runningCount" type:"integer" `
// The Amazon Resource Name (ARN) that identifies the service. The ARN contains
// the arn:aws:ecs namespace, followed by the region of the service, the AWS
// account ID of the service owner, the service namespace, and then the service
2016-11-19 19:41:01 +01:00
// name. For example, arn:aws:ecs:region:012345678910:service/my-service.
2016-01-29 20:53:56 +01:00
ServiceArn * string ` locationName:"serviceArn" type:"string" `
// The name of your service. Up to 255 letters (uppercase and lowercase), numbers,
// hyphens, and underscores are allowed. Service names must be unique within
// a cluster, but you can have similarly named services in multiple clusters
// within a region or across multiple regions.
ServiceName * string ` locationName:"serviceName" type:"string" `
// The status of the service. The valid values are ACTIVE, DRAINING, or INACTIVE.
Status * string ` locationName:"status" type:"string" `
// The task definition to use for tasks in the service. This value is specified
// when the service is created with CreateService, and it can be modified with
// UpdateService.
TaskDefinition * string ` locationName:"taskDefinition" type:"string" `
}
// String returns the string representation
func ( s Service ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Service ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetClusterArn sets the ClusterArn field's value.
func ( s * Service ) SetClusterArn ( v string ) * Service {
s . ClusterArn = & v
return s
}
// SetCreatedAt sets the CreatedAt field's value.
func ( s * Service ) SetCreatedAt ( v time . Time ) * Service {
s . CreatedAt = & v
return s
}
// SetDeploymentConfiguration sets the DeploymentConfiguration field's value.
func ( s * Service ) SetDeploymentConfiguration ( v * DeploymentConfiguration ) * Service {
s . DeploymentConfiguration = v
return s
}
// SetDeployments sets the Deployments field's value.
func ( s * Service ) SetDeployments ( v [ ] * Deployment ) * Service {
s . Deployments = v
return s
}
// SetDesiredCount sets the DesiredCount field's value.
func ( s * Service ) SetDesiredCount ( v int64 ) * Service {
s . DesiredCount = & v
return s
}
// SetEvents sets the Events field's value.
func ( s * Service ) SetEvents ( v [ ] * ServiceEvent ) * Service {
s . Events = v
return s
}
// SetLoadBalancers sets the LoadBalancers field's value.
func ( s * Service ) SetLoadBalancers ( v [ ] * LoadBalancer ) * Service {
s . LoadBalancers = v
return s
}
// SetPendingCount sets the PendingCount field's value.
func ( s * Service ) SetPendingCount ( v int64 ) * Service {
s . PendingCount = & v
return s
}
// SetRoleArn sets the RoleArn field's value.
func ( s * Service ) SetRoleArn ( v string ) * Service {
s . RoleArn = & v
return s
}
// SetRunningCount sets the RunningCount field's value.
func ( s * Service ) SetRunningCount ( v int64 ) * Service {
s . RunningCount = & v
return s
}
// SetServiceArn sets the ServiceArn field's value.
func ( s * Service ) SetServiceArn ( v string ) * Service {
s . ServiceArn = & v
return s
}
// SetServiceName sets the ServiceName field's value.
func ( s * Service ) SetServiceName ( v string ) * Service {
s . ServiceName = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * Service ) SetStatus ( v string ) * Service {
s . Status = & v
return s
}
// SetTaskDefinition sets the TaskDefinition field's value.
func ( s * Service ) SetTaskDefinition ( v string ) * Service {
s . TaskDefinition = & v
return s
}
2016-01-29 20:53:56 +01:00
// Details on an event associated with a service.
type ServiceEvent struct {
_ struct { } ` type:"structure" `
2016-08-11 19:01:51 +02:00
// The Unix timestamp for when the event was triggered.
2016-01-29 20:53:56 +01:00
CreatedAt * time . Time ` locationName:"createdAt" type:"timestamp" timestampFormat:"unix" `
// The ID string of the event.
Id * string ` locationName:"id" type:"string" `
// The event message.
Message * string ` locationName:"message" type:"string" `
}
// String returns the string representation
func ( s ServiceEvent ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ServiceEvent ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCreatedAt sets the CreatedAt field's value.
func ( s * ServiceEvent ) SetCreatedAt ( v time . Time ) * ServiceEvent {
s . CreatedAt = & v
return s
}
// SetId sets the Id field's value.
func ( s * ServiceEvent ) SetId ( v string ) * ServiceEvent {
s . Id = & v
return s
}
// SetMessage sets the Message field's value.
func ( s * ServiceEvent ) SetMessage ( v string ) * ServiceEvent {
s . Message = & v
return s
}
2016-01-29 20:53:56 +01:00
type StartTaskInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster on which
// to start your task. If you do not specify a cluster, the default cluster
2016-11-19 19:41:01 +01:00
// is assumed.
2016-01-29 20:53:56 +01:00
Cluster * string ` locationName:"cluster" type:"string" `
// The container instance IDs or full Amazon Resource Name (ARN) entries for
// the container instances on which you would like to place your task.
//
2016-11-19 19:41:01 +01:00
// The list of container instances to start tasks on is limited to 10.
2016-10-17 23:21:08 +02:00
//
// ContainerInstances is a required field
2016-01-29 20:53:56 +01:00
ContainerInstances [ ] * string ` locationName:"containerInstances" type:"list" required:"true" `
// A list of container overrides in JSON format that specify the name of a container
// in the specified task definition and the overrides it should receive. You
// can override the default command for a container (that is specified in the
// task definition or Docker image) with a command override. You can also override
// existing environment variables (that are specified in the task definition
// or Docker image) on a container or add new environment variables to it with
// an environment override.
//
2016-11-19 19:41:01 +01:00
// A total of 8192 characters are allowed for overrides. This limit includes
2016-01-29 20:53:56 +01:00
// the JSON formatting characters of the override structure.
Overrides * TaskOverride ` locationName:"overrides" type:"structure" `
// An optional tag specified when a task is started. For example if you automatically
// trigger a task to run a batch process job, you could apply a unique identifier
// for that job to your task with the startedBy parameter. You can then identify
// which tasks belong to that job by filtering the results of a ListTasks call
2016-07-15 15:49:02 +02:00
// with the startedBy value. Up to 36 letters (uppercase and lowercase), numbers,
// hyphens, and underscores are allowed.
2016-01-29 20:53:56 +01:00
//
// If a task is started by an Amazon ECS service, then the startedBy parameter
// contains the deployment ID of the service that starts it.
StartedBy * string ` locationName:"startedBy" type:"string" `
// The family and revision (family:revision) or full Amazon Resource Name (ARN)
// of the task definition to start. If a revision is not specified, the latest
// ACTIVE revision is used.
2016-10-17 23:21:08 +02:00
//
// TaskDefinition is a required field
2016-01-29 20:53:56 +01:00
TaskDefinition * string ` locationName:"taskDefinition" type:"string" required:"true" `
}
// String returns the string representation
func ( s StartTaskInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s StartTaskInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * StartTaskInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "StartTaskInput" }
if s . ContainerInstances == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ContainerInstances" ) )
}
if s . TaskDefinition == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TaskDefinition" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * StartTaskInput ) SetCluster ( v string ) * StartTaskInput {
s . Cluster = & v
return s
}
// SetContainerInstances sets the ContainerInstances field's value.
func ( s * StartTaskInput ) SetContainerInstances ( v [ ] * string ) * StartTaskInput {
s . ContainerInstances = v
return s
}
// SetOverrides sets the Overrides field's value.
func ( s * StartTaskInput ) SetOverrides ( v * TaskOverride ) * StartTaskInput {
s . Overrides = v
return s
}
// SetStartedBy sets the StartedBy field's value.
func ( s * StartTaskInput ) SetStartedBy ( v string ) * StartTaskInput {
s . StartedBy = & v
return s
}
// SetTaskDefinition sets the TaskDefinition field's value.
func ( s * StartTaskInput ) SetTaskDefinition ( v string ) * StartTaskInput {
s . TaskDefinition = & v
return s
}
2016-01-29 20:53:56 +01:00
type StartTaskOutput struct {
_ struct { } ` type:"structure" `
// Any failures associated with the call.
Failures [ ] * Failure ` locationName:"failures" type:"list" `
// A full description of the tasks that were started. Each task that was successfully
// placed on your container instances are described here.
Tasks [ ] * Task ` locationName:"tasks" type:"list" `
}
// String returns the string representation
func ( s StartTaskOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s StartTaskOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetFailures sets the Failures field's value.
func ( s * StartTaskOutput ) SetFailures ( v [ ] * Failure ) * StartTaskOutput {
s . Failures = v
return s
}
// SetTasks sets the Tasks field's value.
func ( s * StartTaskOutput ) SetTasks ( v [ ] * Task ) * StartTaskOutput {
s . Tasks = v
return s
}
2016-01-29 20:53:56 +01:00
type StopTaskInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the task to stop. If you do not specify a cluster, the default cluster is
2016-11-19 19:41:01 +01:00
// assumed.
2016-01-29 20:53:56 +01:00
Cluster * string ` locationName:"cluster" type:"string" `
// An optional message specified when a task is stopped. For example, if you
// are using a custom scheduler, you can use this parameter to specify the reason
// for stopping the task here, and the message will appear in subsequent DescribeTasks
// API operations on this task. Up to 255 characters are allowed in this message.
Reason * string ` locationName:"reason" type:"string" `
// The task ID or full Amazon Resource Name (ARN) entry of the task to stop.
2016-10-17 23:21:08 +02:00
//
// Task is a required field
2016-01-29 20:53:56 +01:00
Task * string ` locationName:"task" type:"string" required:"true" `
}
// String returns the string representation
func ( s StopTaskInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s StopTaskInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * StopTaskInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "StopTaskInput" }
if s . Task == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Task" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * StopTaskInput ) SetCluster ( v string ) * StopTaskInput {
s . Cluster = & v
return s
}
// SetReason sets the Reason field's value.
func ( s * StopTaskInput ) SetReason ( v string ) * StopTaskInput {
s . Reason = & v
return s
}
// SetTask sets the Task field's value.
func ( s * StopTaskInput ) SetTask ( v string ) * StopTaskInput {
s . Task = & v
return s
}
2016-01-29 20:53:56 +01:00
type StopTaskOutput struct {
_ struct { } ` type:"structure" `
2016-11-30 23:18:04 +01:00
// The task that was stopped.
2016-01-29 20:53:56 +01:00
Task * Task ` locationName:"task" type:"structure" `
}
// String returns the string representation
func ( s StopTaskOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s StopTaskOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetTask sets the Task field's value.
func ( s * StopTaskOutput ) SetTask ( v * Task ) * StopTaskOutput {
s . Task = v
return s
}
2016-01-29 20:53:56 +01:00
type SubmitContainerStateChangeInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the container.
Cluster * string ` locationName:"cluster" type:"string" `
// The name of the container.
ContainerName * string ` locationName:"containerName" type:"string" `
// The exit code returned for the state change request.
ExitCode * int64 ` locationName:"exitCode" type:"integer" `
// The network bindings of the container.
NetworkBindings [ ] * NetworkBinding ` locationName:"networkBindings" type:"list" `
// The reason for the state change request.
Reason * string ` locationName:"reason" type:"string" `
// The status of the state change request.
Status * string ` locationName:"status" type:"string" `
// The task ID or full Amazon Resource Name (ARN) of the task that hosts the
// container.
Task * string ` locationName:"task" type:"string" `
}
// String returns the string representation
func ( s SubmitContainerStateChangeInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SubmitContainerStateChangeInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * SubmitContainerStateChangeInput ) SetCluster ( v string ) * SubmitContainerStateChangeInput {
s . Cluster = & v
return s
}
// SetContainerName sets the ContainerName field's value.
func ( s * SubmitContainerStateChangeInput ) SetContainerName ( v string ) * SubmitContainerStateChangeInput {
s . ContainerName = & v
return s
}
// SetExitCode sets the ExitCode field's value.
func ( s * SubmitContainerStateChangeInput ) SetExitCode ( v int64 ) * SubmitContainerStateChangeInput {
s . ExitCode = & v
return s
}
// SetNetworkBindings sets the NetworkBindings field's value.
func ( s * SubmitContainerStateChangeInput ) SetNetworkBindings ( v [ ] * NetworkBinding ) * SubmitContainerStateChangeInput {
s . NetworkBindings = v
return s
}
// SetReason sets the Reason field's value.
func ( s * SubmitContainerStateChangeInput ) SetReason ( v string ) * SubmitContainerStateChangeInput {
s . Reason = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * SubmitContainerStateChangeInput ) SetStatus ( v string ) * SubmitContainerStateChangeInput {
s . Status = & v
return s
}
// SetTask sets the Task field's value.
func ( s * SubmitContainerStateChangeInput ) SetTask ( v string ) * SubmitContainerStateChangeInput {
s . Task = & v
return s
}
2016-01-29 20:53:56 +01:00
type SubmitContainerStateChangeOutput struct {
_ struct { } ` type:"structure" `
// Acknowledgement of the state change.
Acknowledgment * string ` locationName:"acknowledgment" type:"string" `
}
// String returns the string representation
func ( s SubmitContainerStateChangeOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SubmitContainerStateChangeOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetAcknowledgment sets the Acknowledgment field's value.
func ( s * SubmitContainerStateChangeOutput ) SetAcknowledgment ( v string ) * SubmitContainerStateChangeOutput {
s . Acknowledgment = & v
return s
}
2016-01-29 20:53:56 +01:00
type SubmitTaskStateChangeInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the task.
Cluster * string ` locationName:"cluster" type:"string" `
// The reason for the state change request.
Reason * string ` locationName:"reason" type:"string" `
// The status of the state change request.
Status * string ` locationName:"status" type:"string" `
// The task ID or full Amazon Resource Name (ARN) of the task in the state change
// request.
Task * string ` locationName:"task" type:"string" `
}
// String returns the string representation
func ( s SubmitTaskStateChangeInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SubmitTaskStateChangeInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * SubmitTaskStateChangeInput ) SetCluster ( v string ) * SubmitTaskStateChangeInput {
s . Cluster = & v
return s
}
// SetReason sets the Reason field's value.
func ( s * SubmitTaskStateChangeInput ) SetReason ( v string ) * SubmitTaskStateChangeInput {
s . Reason = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * SubmitTaskStateChangeInput ) SetStatus ( v string ) * SubmitTaskStateChangeInput {
s . Status = & v
return s
}
// SetTask sets the Task field's value.
func ( s * SubmitTaskStateChangeInput ) SetTask ( v string ) * SubmitTaskStateChangeInput {
s . Task = & v
return s
}
2016-01-29 20:53:56 +01:00
type SubmitTaskStateChangeOutput struct {
_ struct { } ` type:"structure" `
// Acknowledgement of the state change.
Acknowledgment * string ` locationName:"acknowledgment" type:"string" `
}
// String returns the string representation
func ( s SubmitTaskStateChangeOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SubmitTaskStateChangeOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetAcknowledgment sets the Acknowledgment field's value.
func ( s * SubmitTaskStateChangeOutput ) SetAcknowledgment ( v string ) * SubmitTaskStateChangeOutput {
s . Acknowledgment = & v
return s
}
2016-01-29 20:53:56 +01:00
// Details on a task in a cluster.
type Task struct {
_ struct { } ` type:"structure" `
2016-07-15 15:49:02 +02:00
// The Amazon Resource Name (ARN) of the cluster that hosts the task.
2016-01-29 20:53:56 +01:00
ClusterArn * string ` locationName:"clusterArn" type:"string" `
// The Amazon Resource Name (ARN) of the container instances that host the task.
ContainerInstanceArn * string ` locationName:"containerInstanceArn" type:"string" `
// The containers associated with the task.
Containers [ ] * Container ` locationName:"containers" type:"list" `
2016-08-11 19:01:51 +02:00
// The Unix timestamp for when the task was created (the task entered the PENDING
// state).
2016-01-29 20:53:56 +01:00
CreatedAt * time . Time ` locationName:"createdAt" type:"timestamp" timestampFormat:"unix" `
// The desired status of the task.
DesiredStatus * string ` locationName:"desiredStatus" type:"string" `
// The last known status of the task.
LastStatus * string ` locationName:"lastStatus" type:"string" `
// One or more container overrides.
Overrides * TaskOverride ` locationName:"overrides" type:"structure" `
2016-08-11 19:01:51 +02:00
// The Unix timestamp for when the task was started (the task transitioned from
// the PENDING state to the RUNNING state).
2016-01-29 20:53:56 +01:00
StartedAt * time . Time ` locationName:"startedAt" type:"timestamp" timestampFormat:"unix" `
// The tag specified when a task is started. If the task is started by an Amazon
// ECS service, then the startedBy parameter contains the deployment ID of the
// service that starts it.
StartedBy * string ` locationName:"startedBy" type:"string" `
2016-08-11 19:01:51 +02:00
// The Unix timestamp for when the task was stopped (the task transitioned from
// the RUNNING state to the STOPPED state).
2016-01-29 20:53:56 +01:00
StoppedAt * time . Time ` locationName:"stoppedAt" type:"timestamp" timestampFormat:"unix" `
// The reason the task was stopped.
StoppedReason * string ` locationName:"stoppedReason" type:"string" `
// The Amazon Resource Name (ARN) of the task.
TaskArn * string ` locationName:"taskArn" type:"string" `
2016-07-15 15:49:02 +02:00
// The Amazon Resource Name (ARN) of the task definition that creates the task.
2016-01-29 20:53:56 +01:00
TaskDefinitionArn * string ` locationName:"taskDefinitionArn" type:"string" `
2016-11-30 23:18:04 +01:00
// The version counter for the task. Every time a task experiences a change
// that triggers a CloudWatch event, the version counter is incremented. If
// you are replicating your Amazon ECS task state with CloudWatch events, you
// can compare the version of a task reported by the Amazon ECS APIs with the
// version reported in CloudWatch events for the task (inside the detail object)
// to verify that the version in your event stream is current.
Version * int64 ` locationName:"version" type:"long" `
2016-01-29 20:53:56 +01:00
}
// String returns the string representation
func ( s Task ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Task ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetClusterArn sets the ClusterArn field's value.
func ( s * Task ) SetClusterArn ( v string ) * Task {
s . ClusterArn = & v
return s
}
// SetContainerInstanceArn sets the ContainerInstanceArn field's value.
func ( s * Task ) SetContainerInstanceArn ( v string ) * Task {
s . ContainerInstanceArn = & v
return s
}
// SetContainers sets the Containers field's value.
func ( s * Task ) SetContainers ( v [ ] * Container ) * Task {
s . Containers = v
return s
}
// SetCreatedAt sets the CreatedAt field's value.
func ( s * Task ) SetCreatedAt ( v time . Time ) * Task {
s . CreatedAt = & v
return s
}
// SetDesiredStatus sets the DesiredStatus field's value.
func ( s * Task ) SetDesiredStatus ( v string ) * Task {
s . DesiredStatus = & v
return s
}
// SetLastStatus sets the LastStatus field's value.
func ( s * Task ) SetLastStatus ( v string ) * Task {
s . LastStatus = & v
return s
}
// SetOverrides sets the Overrides field's value.
func ( s * Task ) SetOverrides ( v * TaskOverride ) * Task {
s . Overrides = v
return s
}
// SetStartedAt sets the StartedAt field's value.
func ( s * Task ) SetStartedAt ( v time . Time ) * Task {
s . StartedAt = & v
return s
}
// SetStartedBy sets the StartedBy field's value.
func ( s * Task ) SetStartedBy ( v string ) * Task {
s . StartedBy = & v
return s
}
// SetStoppedAt sets the StoppedAt field's value.
func ( s * Task ) SetStoppedAt ( v time . Time ) * Task {
s . StoppedAt = & v
return s
}
// SetStoppedReason sets the StoppedReason field's value.
func ( s * Task ) SetStoppedReason ( v string ) * Task {
s . StoppedReason = & v
return s
}
// SetTaskArn sets the TaskArn field's value.
func ( s * Task ) SetTaskArn ( v string ) * Task {
s . TaskArn = & v
return s
}
// SetTaskDefinitionArn sets the TaskDefinitionArn field's value.
func ( s * Task ) SetTaskDefinitionArn ( v string ) * Task {
s . TaskDefinitionArn = & v
return s
}
2016-11-30 23:18:04 +01:00
// SetVersion sets the Version field's value.
func ( s * Task ) SetVersion ( v int64 ) * Task {
s . Version = & v
return s
}
2016-01-29 20:53:56 +01:00
// Details of a task definition.
type TaskDefinition struct {
_ struct { } ` type:"structure" `
// A list of container definitions in JSON format that describe the different
// containers that make up your task. For more information about container definition
2016-08-11 19:01:51 +02:00
// parameters and defaults, see Amazon ECS Task Definitions (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html)
2016-01-29 20:53:56 +01:00
// in the Amazon EC2 Container Service Developer Guide.
ContainerDefinitions [ ] * ContainerDefinition ` locationName:"containerDefinitions" type:"list" `
// The family of your task definition, used as the definition name.
Family * string ` locationName:"family" type:"string" `
2016-08-20 11:16:03 +02:00
// 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" `
2016-01-29 20:53:56 +01:00
// The container instance attributes required by your task.
RequiresAttributes [ ] * Attribute ` locationName:"requiresAttributes" type:"list" `
// The revision of the task in a particular family. The revision is a version
// number of a task definition in a family. When you register a task definition
// for the first time, the revision is 1; each time you register a new revision
// of a task definition in the same family, the revision value always increases
// by one (even if you have deregistered previous revisions in this family).
Revision * int64 ` locationName:"revision" type:"integer" `
// The status of the task definition.
Status * string ` locationName:"status" type:"string" enum:"TaskDefinitionStatus" `
2016-07-15 15:49:02 +02:00
// The full Amazon Resource Name (ARN) of the task definition.
2016-01-29 20:53:56 +01:00
TaskDefinitionArn * string ` locationName:"taskDefinitionArn" type:"string" `
2016-07-15 15:49:02 +02:00
// 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.
TaskRoleArn * string ` locationName:"taskRoleArn" type:"string" `
2016-01-29 20:53:56 +01:00
// The list of volumes in a task. For more information about volume definition
2016-08-11 19:01:51 +02:00
// parameters and defaults, see Amazon ECS Task Definitions (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html)
2016-01-29 20:53:56 +01:00
// in the Amazon EC2 Container Service Developer Guide.
Volumes [ ] * Volume ` locationName:"volumes" type:"list" `
}
// String returns the string representation
func ( s TaskDefinition ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s TaskDefinition ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetContainerDefinitions sets the ContainerDefinitions field's value.
func ( s * TaskDefinition ) SetContainerDefinitions ( v [ ] * ContainerDefinition ) * TaskDefinition {
s . ContainerDefinitions = v
return s
}
// SetFamily sets the Family field's value.
func ( s * TaskDefinition ) SetFamily ( v string ) * TaskDefinition {
s . Family = & v
return s
}
// SetNetworkMode sets the NetworkMode field's value.
func ( s * TaskDefinition ) SetNetworkMode ( v string ) * TaskDefinition {
s . NetworkMode = & v
return s
}
// SetRequiresAttributes sets the RequiresAttributes field's value.
func ( s * TaskDefinition ) SetRequiresAttributes ( v [ ] * Attribute ) * TaskDefinition {
s . RequiresAttributes = v
return s
}
// SetRevision sets the Revision field's value.
func ( s * TaskDefinition ) SetRevision ( v int64 ) * TaskDefinition {
s . Revision = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * TaskDefinition ) SetStatus ( v string ) * TaskDefinition {
s . Status = & v
return s
}
// SetTaskDefinitionArn sets the TaskDefinitionArn field's value.
func ( s * TaskDefinition ) SetTaskDefinitionArn ( v string ) * TaskDefinition {
s . TaskDefinitionArn = & v
return s
}
// SetTaskRoleArn sets the TaskRoleArn field's value.
func ( s * TaskDefinition ) SetTaskRoleArn ( v string ) * TaskDefinition {
s . TaskRoleArn = & v
return s
}
// SetVolumes sets the Volumes field's value.
func ( s * TaskDefinition ) SetVolumes ( v [ ] * Volume ) * TaskDefinition {
s . Volumes = v
return s
}
2016-01-29 20:53:56 +01:00
// The overrides associated with a task.
type TaskOverride struct {
_ struct { } ` type:"structure" `
// One or more container overrides sent to a task.
ContainerOverrides [ ] * ContainerOverride ` locationName:"containerOverrides" type:"list" `
2016-07-15 15:49:02 +02:00
// 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.
TaskRoleArn * string ` locationName:"taskRoleArn" type:"string" `
2016-01-29 20:53:56 +01:00
}
// String returns the string representation
func ( s TaskOverride ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s TaskOverride ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetContainerOverrides sets the ContainerOverrides field's value.
func ( s * TaskOverride ) SetContainerOverrides ( v [ ] * ContainerOverride ) * TaskOverride {
s . ContainerOverrides = v
return s
}
// SetTaskRoleArn sets the TaskRoleArn field's value.
func ( s * TaskOverride ) SetTaskRoleArn ( v string ) * TaskOverride {
s . TaskRoleArn = & v
return s
}
2016-01-29 20:53:56 +01:00
// The ulimit settings to pass to the container.
type Ulimit struct {
_ struct { } ` type:"structure" `
// The hard limit for the ulimit type.
2016-10-17 23:21:08 +02:00
//
// HardLimit is a required field
2016-01-29 20:53:56 +01:00
HardLimit * int64 ` locationName:"hardLimit" type:"integer" required:"true" `
// The type of the ulimit.
2016-10-17 23:21:08 +02:00
//
// Name is a required field
2016-01-29 20:53:56 +01:00
Name * string ` locationName:"name" type:"string" required:"true" enum:"UlimitName" `
// The soft limit for the ulimit type.
2016-10-17 23:21:08 +02:00
//
// SoftLimit is a required field
2016-01-29 20:53:56 +01:00
SoftLimit * int64 ` locationName:"softLimit" type:"integer" required:"true" `
}
// String returns the string representation
func ( s Ulimit ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Ulimit ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * Ulimit ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "Ulimit" }
if s . HardLimit == nil {
invalidParams . Add ( request . NewErrParamRequired ( "HardLimit" ) )
}
if s . Name == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Name" ) )
}
if s . SoftLimit == nil {
invalidParams . Add ( request . NewErrParamRequired ( "SoftLimit" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetHardLimit sets the HardLimit field's value.
func ( s * Ulimit ) SetHardLimit ( v int64 ) * Ulimit {
s . HardLimit = & v
return s
}
// SetName sets the Name field's value.
func ( s * Ulimit ) SetName ( v string ) * Ulimit {
s . Name = & v
return s
}
// SetSoftLimit sets the SoftLimit field's value.
func ( s * Ulimit ) SetSoftLimit ( v int64 ) * Ulimit {
s . SoftLimit = & v
return s
}
2016-01-29 20:53:56 +01:00
type UpdateContainerAgentInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster that your
// container instance is running on. If you do not specify a cluster, the default
// cluster is assumed.
Cluster * string ` locationName:"cluster" type:"string" `
// The container instance ID or full Amazon Resource Name (ARN) entries for
// the container instance on which you would like to update the Amazon ECS container
// agent.
2016-10-17 23:21:08 +02:00
//
// ContainerInstance is a required field
2016-01-29 20:53:56 +01:00
ContainerInstance * string ` locationName:"containerInstance" type:"string" required:"true" `
}
// String returns the string representation
func ( s UpdateContainerAgentInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateContainerAgentInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * UpdateContainerAgentInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "UpdateContainerAgentInput" }
if s . ContainerInstance == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ContainerInstance" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * UpdateContainerAgentInput ) SetCluster ( v string ) * UpdateContainerAgentInput {
s . Cluster = & v
return s
}
// SetContainerInstance sets the ContainerInstance field's value.
func ( s * UpdateContainerAgentInput ) SetContainerInstance ( v string ) * UpdateContainerAgentInput {
s . ContainerInstance = & v
return s
}
2016-01-29 20:53:56 +01:00
type UpdateContainerAgentOutput struct {
_ struct { } ` type:"structure" `
2016-11-30 23:18:04 +01:00
// The container instance for which the container agent was updated.
2016-01-29 20:53:56 +01:00
ContainerInstance * ContainerInstance ` locationName:"containerInstance" type:"structure" `
}
// String returns the string representation
func ( s UpdateContainerAgentOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateContainerAgentOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetContainerInstance sets the ContainerInstance field's value.
func ( s * UpdateContainerAgentOutput ) SetContainerInstance ( v * ContainerInstance ) * UpdateContainerAgentOutput {
s . ContainerInstance = v
return s
}
2016-01-29 20:53:56 +01:00
type UpdateServiceInput struct {
_ struct { } ` type:"structure" `
// The short name or full Amazon Resource Name (ARN) of the cluster that your
// service is running on. If you do not specify a cluster, the default cluster
// is assumed.
Cluster * string ` locationName:"cluster" type:"string" `
// Optional deployment parameters that control how many tasks run during the
// deployment and the ordering of stopping and starting tasks.
DeploymentConfiguration * DeploymentConfiguration ` locationName:"deploymentConfiguration" type:"structure" `
// The number of instantiations of the task to place and keep running in your
// service.
DesiredCount * int64 ` locationName:"desiredCount" type:"integer" `
// The name of the service to update.
2016-10-17 23:21:08 +02:00
//
// Service is a required field
2016-01-29 20:53:56 +01:00
Service * string ` locationName:"service" type:"string" required:"true" `
// The family and revision (family:revision) or full Amazon Resource Name (ARN)
// of the task definition to run in your service. If a revision is not specified,
// the latest ACTIVE revision is used. If you modify the task definition with
// UpdateService, Amazon ECS spawns a task with the new version of the task
// definition and then stops an old task after the new version is running.
TaskDefinition * string ` locationName:"taskDefinition" type:"string" `
}
// String returns the string representation
func ( s UpdateServiceInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateServiceInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * UpdateServiceInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "UpdateServiceInput" }
if s . Service == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Service" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCluster sets the Cluster field's value.
func ( s * UpdateServiceInput ) SetCluster ( v string ) * UpdateServiceInput {
s . Cluster = & v
return s
}
// SetDeploymentConfiguration sets the DeploymentConfiguration field's value.
func ( s * UpdateServiceInput ) SetDeploymentConfiguration ( v * DeploymentConfiguration ) * UpdateServiceInput {
s . DeploymentConfiguration = v
return s
}
// SetDesiredCount sets the DesiredCount field's value.
func ( s * UpdateServiceInput ) SetDesiredCount ( v int64 ) * UpdateServiceInput {
s . DesiredCount = & v
return s
}
// SetService sets the Service field's value.
func ( s * UpdateServiceInput ) SetService ( v string ) * UpdateServiceInput {
s . Service = & v
return s
}
// SetTaskDefinition sets the TaskDefinition field's value.
func ( s * UpdateServiceInput ) SetTaskDefinition ( v string ) * UpdateServiceInput {
s . TaskDefinition = & v
return s
}
2016-01-29 20:53:56 +01:00
type UpdateServiceOutput struct {
_ struct { } ` type:"structure" `
// The full description of your service following the update call.
Service * Service ` locationName:"service" type:"structure" `
}
// String returns the string representation
func ( s UpdateServiceOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateServiceOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetService sets the Service field's value.
func ( s * UpdateServiceOutput ) SetService ( v * Service ) * UpdateServiceOutput {
s . Service = v
return s
}
2016-01-29 20:53:56 +01:00
// The Docker and Amazon ECS container agent version information about a container
// instance.
type VersionInfo struct {
_ struct { } ` type:"structure" `
// The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent
// (https://github.com/aws/amazon-ecs-agent/commits/master) GitHub repository.
AgentHash * string ` locationName:"agentHash" type:"string" `
// The version number of the Amazon ECS container agent.
AgentVersion * string ` locationName:"agentVersion" type:"string" `
// The Docker version running on the container instance.
DockerVersion * string ` locationName:"dockerVersion" type:"string" `
}
// String returns the string representation
func ( s VersionInfo ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s VersionInfo ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetAgentHash sets the AgentHash field's value.
func ( s * VersionInfo ) SetAgentHash ( v string ) * VersionInfo {
s . AgentHash = & v
return s
}
// SetAgentVersion sets the AgentVersion field's value.
func ( s * VersionInfo ) SetAgentVersion ( v string ) * VersionInfo {
s . AgentVersion = & v
return s
}
// SetDockerVersion sets the DockerVersion field's value.
func ( s * VersionInfo ) SetDockerVersion ( v string ) * VersionInfo {
s . DockerVersion = & v
return s
}
2016-01-29 20:53:56 +01:00
// A data volume used in a task definition.
type Volume struct {
_ struct { } ` type:"structure" `
// The contents of the host parameter determine whether your data volume persists
// on the host container instance and where it is stored. If the host parameter
// is empty, then the Docker daemon assigns a host path for your data volume,
// but the data is not guaranteed to persist after the containers associated
// with it stop running.
Host * HostVolumeProperties ` locationName:"host" type:"structure" `
// The name of the volume. Up to 255 letters (uppercase and lowercase), numbers,
// hyphens, and underscores are allowed. This name is referenced in the sourceVolume
// parameter of container definition mountPoints.
Name * string ` locationName:"name" type:"string" `
}
// String returns the string representation
func ( s Volume ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Volume ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetHost sets the Host field's value.
func ( s * Volume ) SetHost ( v * HostVolumeProperties ) * Volume {
s . Host = v
return s
}
// SetName sets the Name field's value.
func ( s * Volume ) SetName ( v string ) * Volume {
s . Name = & v
return s
}
2016-01-29 20:53:56 +01:00
// Details on a data volume from another container.
type VolumeFrom struct {
_ struct { } ` type:"structure" `
// If this value is true, the container has read-only access to the volume.
// If this value is false, then the container can write to the volume. The default
// value is false.
ReadOnly * bool ` locationName:"readOnly" type:"boolean" `
// The name of the container to mount volumes from.
SourceContainer * string ` locationName:"sourceContainer" type:"string" `
}
// String returns the string representation
func ( s VolumeFrom ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s VolumeFrom ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetReadOnly sets the ReadOnly field's value.
func ( s * VolumeFrom ) SetReadOnly ( v bool ) * VolumeFrom {
s . ReadOnly = & v
return s
}
// SetSourceContainer sets the SourceContainer field's value.
func ( s * VolumeFrom ) SetSourceContainer ( v string ) * VolumeFrom {
s . SourceContainer = & v
return s
}
2016-01-29 20:53:56 +01:00
const (
2016-10-17 23:21:08 +02:00
// AgentUpdateStatusPending is a AgentUpdateStatus enum value
2016-01-29 20:53:56 +01:00
AgentUpdateStatusPending = "PENDING"
2016-10-17 23:21:08 +02:00
// AgentUpdateStatusStaging is a AgentUpdateStatus enum value
2016-01-29 20:53:56 +01:00
AgentUpdateStatusStaging = "STAGING"
2016-10-17 23:21:08 +02:00
// AgentUpdateStatusStaged is a AgentUpdateStatus enum value
2016-01-29 20:53:56 +01:00
AgentUpdateStatusStaged = "STAGED"
2016-10-17 23:21:08 +02:00
// AgentUpdateStatusUpdating is a AgentUpdateStatus enum value
2016-01-29 20:53:56 +01:00
AgentUpdateStatusUpdating = "UPDATING"
2016-10-17 23:21:08 +02:00
// AgentUpdateStatusUpdated is a AgentUpdateStatus enum value
2016-01-29 20:53:56 +01:00
AgentUpdateStatusUpdated = "UPDATED"
2016-10-17 23:21:08 +02:00
// AgentUpdateStatusFailed is a AgentUpdateStatus enum value
2016-01-29 20:53:56 +01:00
AgentUpdateStatusFailed = "FAILED"
)
const (
2016-10-17 23:21:08 +02:00
// DesiredStatusRunning is a DesiredStatus enum value
2016-01-29 20:53:56 +01:00
DesiredStatusRunning = "RUNNING"
2016-10-17 23:21:08 +02:00
// DesiredStatusPending is a DesiredStatus enum value
2016-01-29 20:53:56 +01:00
DesiredStatusPending = "PENDING"
2016-10-17 23:21:08 +02:00
// DesiredStatusStopped is a DesiredStatus enum value
2016-01-29 20:53:56 +01:00
DesiredStatusStopped = "STOPPED"
)
const (
2016-10-17 23:21:08 +02:00
// LogDriverJsonFile is a LogDriver enum value
2016-01-29 20:53:56 +01:00
LogDriverJsonFile = "json-file"
2016-10-17 23:21:08 +02:00
// LogDriverSyslog is a LogDriver enum value
2016-01-29 20:53:56 +01:00
LogDriverSyslog = "syslog"
2016-10-17 23:21:08 +02:00
// LogDriverJournald is a LogDriver enum value
2016-01-29 20:53:56 +01:00
LogDriverJournald = "journald"
2016-10-17 23:21:08 +02:00
// LogDriverGelf is a LogDriver enum value
2016-01-29 20:53:56 +01:00
LogDriverGelf = "gelf"
2016-10-17 23:21:08 +02:00
// LogDriverFluentd is a LogDriver enum value
2016-01-29 20:53:56 +01:00
LogDriverFluentd = "fluentd"
2016-10-17 23:21:08 +02:00
// LogDriverAwslogs is a LogDriver enum value
2016-07-15 15:49:02 +02:00
LogDriverAwslogs = "awslogs"
2016-10-17 23:21:08 +02:00
// LogDriverSplunk is a LogDriver enum value
2016-08-20 11:16:03 +02:00
LogDriverSplunk = "splunk"
)
const (
2016-10-17 23:21:08 +02:00
// NetworkModeBridge is a NetworkMode enum value
2016-08-20 11:16:03 +02:00
NetworkModeBridge = "bridge"
2016-10-17 23:21:08 +02:00
// NetworkModeHost is a NetworkMode enum value
2016-08-20 11:16:03 +02:00
NetworkModeHost = "host"
2016-10-17 23:21:08 +02:00
// NetworkModeNone is a NetworkMode enum value
2016-08-20 11:16:03 +02:00
NetworkModeNone = "none"
2016-01-29 20:53:56 +01:00
)
const (
2016-10-17 23:21:08 +02:00
// SortOrderAsc is a SortOrder enum value
2016-01-29 20:53:56 +01:00
SortOrderAsc = "ASC"
2016-10-17 23:21:08 +02:00
// SortOrderDesc is a SortOrder enum value
2016-01-29 20:53:56 +01:00
SortOrderDesc = "DESC"
)
2016-07-15 15:49:02 +02:00
const (
2016-10-17 23:21:08 +02:00
// TaskDefinitionFamilyStatusActive is a TaskDefinitionFamilyStatus enum value
2016-07-15 15:49:02 +02:00
TaskDefinitionFamilyStatusActive = "ACTIVE"
2016-10-17 23:21:08 +02:00
// TaskDefinitionFamilyStatusInactive is a TaskDefinitionFamilyStatus enum value
2016-07-15 15:49:02 +02:00
TaskDefinitionFamilyStatusInactive = "INACTIVE"
2016-10-17 23:21:08 +02:00
// TaskDefinitionFamilyStatusAll is a TaskDefinitionFamilyStatus enum value
2016-07-15 15:49:02 +02:00
TaskDefinitionFamilyStatusAll = "ALL"
)
2016-01-29 20:53:56 +01:00
const (
2016-10-17 23:21:08 +02:00
// TaskDefinitionStatusActive is a TaskDefinitionStatus enum value
2016-01-29 20:53:56 +01:00
TaskDefinitionStatusActive = "ACTIVE"
2016-10-17 23:21:08 +02:00
// TaskDefinitionStatusInactive is a TaskDefinitionStatus enum value
2016-01-29 20:53:56 +01:00
TaskDefinitionStatusInactive = "INACTIVE"
)
const (
2016-10-17 23:21:08 +02:00
// TransportProtocolTcp is a TransportProtocol enum value
2016-01-29 20:53:56 +01:00
TransportProtocolTcp = "tcp"
2016-10-17 23:21:08 +02:00
// TransportProtocolUdp is a TransportProtocol enum value
2016-01-29 20:53:56 +01:00
TransportProtocolUdp = "udp"
)
const (
2016-10-17 23:21:08 +02:00
// UlimitNameCore is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameCore = "core"
2016-10-17 23:21:08 +02:00
// UlimitNameCpu is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameCpu = "cpu"
2016-10-17 23:21:08 +02:00
// UlimitNameData is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameData = "data"
2016-10-17 23:21:08 +02:00
// UlimitNameFsize is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameFsize = "fsize"
2016-10-17 23:21:08 +02:00
// UlimitNameLocks is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameLocks = "locks"
2016-10-17 23:21:08 +02:00
// UlimitNameMemlock is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameMemlock = "memlock"
2016-10-17 23:21:08 +02:00
// UlimitNameMsgqueue is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameMsgqueue = "msgqueue"
2016-10-17 23:21:08 +02:00
// UlimitNameNice is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameNice = "nice"
2016-10-17 23:21:08 +02:00
// UlimitNameNofile is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameNofile = "nofile"
2016-10-17 23:21:08 +02:00
// UlimitNameNproc is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameNproc = "nproc"
2016-10-17 23:21:08 +02:00
// UlimitNameRss is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameRss = "rss"
2016-10-17 23:21:08 +02:00
// UlimitNameRtprio is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameRtprio = "rtprio"
2016-10-17 23:21:08 +02:00
// UlimitNameRttime is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameRttime = "rttime"
2016-10-17 23:21:08 +02:00
// UlimitNameSigpending is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameSigpending = "sigpending"
2016-10-17 23:21:08 +02:00
// UlimitNameStack is a UlimitName enum value
2016-01-29 20:53:56 +01:00
UlimitNameStack = "stack"
)