2016-03-07 21:42:30 +01:00
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package elasticbeanstalk provides a client for AWS Elastic Beanstalk.
package elasticbeanstalk
import (
2016-05-05 03:06:27 +02:00
"fmt"
2016-03-07 21:42:30 +01:00
"time"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
2016-03-11 01:27:37 +01:00
"github.com/aws/aws-sdk-go/private/protocol"
"github.com/aws/aws-sdk-go/private/protocol/query"
2016-03-07 21:42:30 +01:00
)
const opAbortEnvironmentUpdate = "AbortEnvironmentUpdate"
2016-07-15 15:49:02 +02:00
// AbortEnvironmentUpdateRequest generates a "aws/request.Request" representing the
// client's request for the AbortEnvironmentUpdate 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 AbortEnvironmentUpdate 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 AbortEnvironmentUpdate 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 AbortEnvironmentUpdateRequest method.
// req, resp := client.AbortEnvironmentUpdateRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/AbortEnvironmentUpdate
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) AbortEnvironmentUpdateRequest ( input * AbortEnvironmentUpdateInput ) ( req * request . Request , output * AbortEnvironmentUpdateOutput ) {
op := & request . Operation {
Name : opAbortEnvironmentUpdate ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & AbortEnvironmentUpdateInput { }
}
2017-01-23 22:22:31 +01:00
output = & AbortEnvironmentUpdateOutput { }
2016-03-07 21:42:30 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( query . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// AbortEnvironmentUpdate API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Cancels in-progress environment configuration update or application version
// deployment.
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 AWS Elastic Beanstalk's
// API operation AbortEnvironmentUpdate for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2016-10-17 23:21:08 +02:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/AbortEnvironmentUpdate
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) AbortEnvironmentUpdate ( input * AbortEnvironmentUpdateInput ) ( * AbortEnvironmentUpdateOutput , error ) {
req , out := c . AbortEnvironmentUpdateRequest ( input )
err := req . Send ( )
return out , err
}
2016-05-05 03:06:27 +02:00
const opApplyEnvironmentManagedAction = "ApplyEnvironmentManagedAction"
2016-07-15 15:49:02 +02:00
// ApplyEnvironmentManagedActionRequest generates a "aws/request.Request" representing the
// client's request for the ApplyEnvironmentManagedAction 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 ApplyEnvironmentManagedAction 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 ApplyEnvironmentManagedAction 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 ApplyEnvironmentManagedActionRequest method.
// req, resp := client.ApplyEnvironmentManagedActionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplyEnvironmentManagedAction
2016-05-05 03:06:27 +02:00
func ( c * ElasticBeanstalk ) ApplyEnvironmentManagedActionRequest ( input * ApplyEnvironmentManagedActionInput ) ( req * request . Request , output * ApplyEnvironmentManagedActionOutput ) {
op := & request . Operation {
Name : opApplyEnvironmentManagedAction ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ApplyEnvironmentManagedActionInput { }
}
output = & ApplyEnvironmentManagedActionOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-05-05 03:06:27 +02:00
return
}
2016-10-17 23:21:08 +02:00
// ApplyEnvironmentManagedAction API operation for AWS Elastic Beanstalk.
//
2016-05-05 03:06:27 +02:00
// Applies a scheduled managed action immediately. A managed action can be applied
// only if its status is Scheduled. Get the status and action ID of a managed
// action with DescribeEnvironmentManagedActions.
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 AWS Elastic Beanstalk's
// API operation ApplyEnvironmentManagedAction for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeServiceException "ServiceException"
2016-10-17 23:21:08 +02:00
// A generic service exception has occurred.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeManagedActionInvalidStateException "ManagedActionInvalidStateException"
2016-10-17 23:21:08 +02:00
// Cannot modify the managed action in its current state.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplyEnvironmentManagedAction
2016-05-05 03:06:27 +02:00
func ( c * ElasticBeanstalk ) ApplyEnvironmentManagedAction ( input * ApplyEnvironmentManagedActionInput ) ( * ApplyEnvironmentManagedActionOutput , error ) {
req , out := c . ApplyEnvironmentManagedActionRequest ( input )
err := req . Send ( )
return out , err
}
2016-03-07 21:42:30 +01:00
const opCheckDNSAvailability = "CheckDNSAvailability"
2016-07-15 15:49:02 +02:00
// CheckDNSAvailabilityRequest generates a "aws/request.Request" representing the
// client's request for the CheckDNSAvailability 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 CheckDNSAvailability 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 CheckDNSAvailability 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 CheckDNSAvailabilityRequest method.
// req, resp := client.CheckDNSAvailabilityRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CheckDNSAvailability
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) CheckDNSAvailabilityRequest ( input * CheckDNSAvailabilityInput ) ( req * request . Request , output * CheckDNSAvailabilityOutput ) {
op := & request . Operation {
Name : opCheckDNSAvailability ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CheckDNSAvailabilityInput { }
}
output = & CheckDNSAvailabilityOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// CheckDNSAvailability API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Checks if the specified CNAME is available.
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 AWS Elastic Beanstalk's
// API operation CheckDNSAvailability for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CheckDNSAvailability
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) CheckDNSAvailability ( input * CheckDNSAvailabilityInput ) ( * CheckDNSAvailabilityOutput , error ) {
req , out := c . CheckDNSAvailabilityRequest ( input )
err := req . Send ( )
return out , err
}
const opComposeEnvironments = "ComposeEnvironments"
2016-07-15 15:49:02 +02:00
// ComposeEnvironmentsRequest generates a "aws/request.Request" representing the
// client's request for the ComposeEnvironments 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 ComposeEnvironments 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 ComposeEnvironments 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 ComposeEnvironmentsRequest method.
// req, resp := client.ComposeEnvironmentsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ComposeEnvironments
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) ComposeEnvironmentsRequest ( input * ComposeEnvironmentsInput ) ( req * request . Request , output * EnvironmentDescriptionsMessage ) {
op := & request . Operation {
Name : opComposeEnvironments ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ComposeEnvironmentsInput { }
}
output = & EnvironmentDescriptionsMessage { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// ComposeEnvironments API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Create or update a group of environments that each run a separate component
// of a single application. Takes a list of version labels that specify application
// source bundles for each of the environments to create or update. The name
// of each environment and other required information must be included in the
// source bundles in an environment manifest named env.yaml. See Compose Environments
// (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-mgmt-compose.html)
// for details.
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 AWS Elastic Beanstalk's
// API operation ComposeEnvironments for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeTooManyEnvironmentsException "TooManyEnvironmentsException"
2016-10-17 23:21:08 +02:00
// The specified account has reached its limit of environments.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2016-10-17 23:21:08 +02:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ComposeEnvironments
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) ComposeEnvironments ( input * ComposeEnvironmentsInput ) ( * EnvironmentDescriptionsMessage , error ) {
req , out := c . ComposeEnvironmentsRequest ( input )
err := req . Send ( )
return out , err
}
const opCreateApplication = "CreateApplication"
2016-07-15 15:49:02 +02:00
// CreateApplicationRequest generates a "aws/request.Request" representing the
// client's request for the CreateApplication 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 CreateApplication 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 CreateApplication 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 CreateApplicationRequest method.
// req, resp := client.CreateApplicationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateApplication
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) CreateApplicationRequest ( input * CreateApplicationInput ) ( req * request . Request , output * ApplicationDescriptionMessage ) {
op := & request . Operation {
Name : opCreateApplication ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateApplicationInput { }
}
output = & ApplicationDescriptionMessage { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// CreateApplication API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Creates an application that has one configuration template named default
// and no application versions.
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 AWS Elastic Beanstalk's
// API operation CreateApplication for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeTooManyApplicationsException "TooManyApplicationsException"
2016-10-17 23:21:08 +02:00
// The specified account has reached its limit of applications.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateApplication
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) CreateApplication ( input * CreateApplicationInput ) ( * ApplicationDescriptionMessage , error ) {
req , out := c . CreateApplicationRequest ( input )
err := req . Send ( )
return out , err
}
const opCreateApplicationVersion = "CreateApplicationVersion"
2016-07-15 15:49:02 +02:00
// CreateApplicationVersionRequest generates a "aws/request.Request" representing the
// client's request for the CreateApplicationVersion 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 CreateApplicationVersion 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 CreateApplicationVersion 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 CreateApplicationVersionRequest method.
// req, resp := client.CreateApplicationVersionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateApplicationVersion
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) CreateApplicationVersionRequest ( input * CreateApplicationVersionInput ) ( req * request . Request , output * ApplicationVersionDescriptionMessage ) {
op := & request . Operation {
Name : opCreateApplicationVersion ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateApplicationVersionInput { }
}
output = & ApplicationVersionDescriptionMessage { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// CreateApplicationVersion API operation for AWS Elastic Beanstalk.
//
2016-12-15 16:18:11 +01:00
// Creates an application version for the specified application. You can create
// an application version from a source bundle in Amazon S3, a commit in AWS
// CodeCommit, or the output of an AWS CodeBuild build as follows:
//
// Specify a commit in an AWS CodeCommit repository with SourceBuildInformation.
//
// Specify a build in an AWS CodeBuild with SourceBuildInformation and BuildConfiguration.
//
// Specify a source bundle in S3 with SourceBundle
//
// Omit both SourceBuildInformation and SourceBundle to use the default sample
// application.
2016-03-07 21:42:30 +01:00
//
2016-11-19 19:41:01 +01:00
// Once you create an application version with a specified Amazon S3 bucket
2016-03-07 21:42:30 +01:00
// and key location, you cannot change that Amazon S3 location. If you change
// the Amazon S3 location, you receive an exception when you attempt to launch
// an environment from the application version.
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 AWS Elastic Beanstalk's
// API operation CreateApplicationVersion for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeTooManyApplicationsException "TooManyApplicationsException"
2016-10-17 23:21:08 +02:00
// The specified account has reached its limit of applications.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeTooManyApplicationVersionsException "TooManyApplicationVersionsException"
2016-10-17 23:21:08 +02:00
// The specified account has reached its limit of application versions.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2016-10-17 23:21:08 +02:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeS3LocationNotInServiceRegionException "S3LocationNotInServiceRegionException"
2016-10-17 23:21:08 +02:00
// The specified S3 bucket does not belong to the S3 region in which the service
2016-12-15 16:18:11 +01:00
// is running. The following regions are supported:
//
// * IAD/us-east-1
//
// * PDX/us-west-2
//
// * DUB/eu-west-1
2016-10-17 23:21:08 +02:00
//
2017-02-08 14:02:41 +01:00
// * ErrCodeCodeBuildNotInServiceRegionException "CodeBuildNotInServiceRegionException"
2016-12-15 16:18:11 +01:00
// AWS CodeBuild is not available in the specified region.
2016-12-02 15:37:53 +01:00
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateApplicationVersion
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) CreateApplicationVersion ( input * CreateApplicationVersionInput ) ( * ApplicationVersionDescriptionMessage , error ) {
req , out := c . CreateApplicationVersionRequest ( input )
err := req . Send ( )
return out , err
}
const opCreateConfigurationTemplate = "CreateConfigurationTemplate"
2016-07-15 15:49:02 +02:00
// CreateConfigurationTemplateRequest generates a "aws/request.Request" representing the
// client's request for the CreateConfigurationTemplate 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 CreateConfigurationTemplate 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 CreateConfigurationTemplate 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 CreateConfigurationTemplateRequest method.
// req, resp := client.CreateConfigurationTemplateRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateConfigurationTemplate
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) CreateConfigurationTemplateRequest ( input * CreateConfigurationTemplateInput ) ( req * request . Request , output * ConfigurationSettingsDescription ) {
op := & request . Operation {
Name : opCreateConfigurationTemplate ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateConfigurationTemplateInput { }
}
output = & ConfigurationSettingsDescription { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// CreateConfigurationTemplate API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Creates a configuration template. Templates are associated with a specific
// application and are used to deploy different versions of the application
// with the same configuration settings.
//
// Related Topics
//
2016-11-19 19:41:01 +01:00
// * DescribeConfigurationOptions
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * DescribeConfigurationSettings
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * ListAvailableSolutionStacks
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 AWS Elastic Beanstalk's
// API operation CreateConfigurationTemplate for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2016-10-17 23:21:08 +02:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeTooManyBucketsException "TooManyBucketsException"
2016-10-17 23:21:08 +02:00
// The specified account has reached its limit of Amazon S3 buckets.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeTooManyConfigurationTemplatesException "TooManyConfigurationTemplatesException"
2016-10-17 23:21:08 +02:00
// The specified account has reached its limit of configuration templates.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateConfigurationTemplate
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) CreateConfigurationTemplate ( input * CreateConfigurationTemplateInput ) ( * ConfigurationSettingsDescription , error ) {
req , out := c . CreateConfigurationTemplateRequest ( input )
err := req . Send ( )
return out , err
}
const opCreateEnvironment = "CreateEnvironment"
2016-07-15 15:49:02 +02:00
// CreateEnvironmentRequest generates a "aws/request.Request" representing the
// client's request for the CreateEnvironment 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 CreateEnvironment 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 CreateEnvironment 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 CreateEnvironmentRequest method.
// req, resp := client.CreateEnvironmentRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateEnvironment
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) CreateEnvironmentRequest ( input * CreateEnvironmentInput ) ( req * request . Request , output * EnvironmentDescription ) {
op := & request . Operation {
Name : opCreateEnvironment ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateEnvironmentInput { }
}
output = & EnvironmentDescription { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// CreateEnvironment API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Launches an environment for the specified application using the specified
// configuration.
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 AWS Elastic Beanstalk's
// API operation CreateEnvironment for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeTooManyEnvironmentsException "TooManyEnvironmentsException"
2016-10-17 23:21:08 +02:00
// The specified account has reached its limit of environments.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2016-10-17 23:21:08 +02:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateEnvironment
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) CreateEnvironment ( input * CreateEnvironmentInput ) ( * EnvironmentDescription , error ) {
req , out := c . CreateEnvironmentRequest ( input )
err := req . Send ( )
return out , err
}
2017-03-03 19:48:24 +01:00
const opCreatePlatformVersion = "CreatePlatformVersion"
// CreatePlatformVersionRequest generates a "aws/request.Request" representing the
// client's request for the CreatePlatformVersion operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See CreatePlatformVersion for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CreatePlatformVersion 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 CreatePlatformVersionRequest method.
// req, resp := client.CreatePlatformVersionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreatePlatformVersion
func ( c * ElasticBeanstalk ) CreatePlatformVersionRequest ( input * CreatePlatformVersionInput ) ( req * request . Request , output * CreatePlatformVersionOutput ) {
op := & request . Operation {
Name : opCreatePlatformVersion ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreatePlatformVersionInput { }
}
output = & CreatePlatformVersionOutput { }
req = c . newRequest ( op , input , output )
return
}
// CreatePlatformVersion API operation for AWS Elastic Beanstalk.
//
// Create a new version of your custom platform.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Elastic Beanstalk's
// API operation CreatePlatformVersion for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
// * ErrCodeServiceException "ServiceException"
// A generic service exception has occurred.
//
// * ErrCodeTooManyPlatformsException "TooManyPlatformsException"
// You have exceeded the maximum number of allowed platforms associated with
// the account.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreatePlatformVersion
func ( c * ElasticBeanstalk ) CreatePlatformVersion ( input * CreatePlatformVersionInput ) ( * CreatePlatformVersionOutput , error ) {
req , out := c . CreatePlatformVersionRequest ( input )
err := req . Send ( )
return out , err
}
2016-03-07 21:42:30 +01:00
const opCreateStorageLocation = "CreateStorageLocation"
2016-07-15 15:49:02 +02:00
// CreateStorageLocationRequest generates a "aws/request.Request" representing the
// client's request for the CreateStorageLocation 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 CreateStorageLocation 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 CreateStorageLocation 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 CreateStorageLocationRequest method.
// req, resp := client.CreateStorageLocationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateStorageLocation
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) CreateStorageLocationRequest ( input * CreateStorageLocationInput ) ( req * request . Request , output * CreateStorageLocationOutput ) {
op := & request . Operation {
Name : opCreateStorageLocation ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateStorageLocationInput { }
}
output = & CreateStorageLocationOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// CreateStorageLocation API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Creates the Amazon S3 storage location for the account.
//
2016-10-17 23:21:08 +02:00
// This location is used to store user log files.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Elastic Beanstalk's
// API operation CreateStorageLocation for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeTooManyBucketsException "TooManyBucketsException"
2016-10-17 23:21:08 +02:00
// The specified account has reached its limit of Amazon S3 buckets.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeS3SubscriptionRequiredException "S3SubscriptionRequiredException"
2016-10-17 23:21:08 +02:00
// The specified account does not have a subscription to Amazon S3.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2016-10-17 23:21:08 +02:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateStorageLocation
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) CreateStorageLocation ( input * CreateStorageLocationInput ) ( * CreateStorageLocationOutput , error ) {
req , out := c . CreateStorageLocationRequest ( input )
err := req . Send ( )
return out , err
}
const opDeleteApplication = "DeleteApplication"
2016-07-15 15:49:02 +02:00
// DeleteApplicationRequest generates a "aws/request.Request" representing the
// client's request for the DeleteApplication 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 DeleteApplication 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 DeleteApplication 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 DeleteApplicationRequest method.
// req, resp := client.DeleteApplicationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteApplication
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DeleteApplicationRequest ( input * DeleteApplicationInput ) ( req * request . Request , output * DeleteApplicationOutput ) {
op := & request . Operation {
Name : opDeleteApplication ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteApplicationInput { }
}
2017-01-23 22:22:31 +01:00
output = & DeleteApplicationOutput { }
2016-03-07 21:42:30 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( query . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DeleteApplication API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Deletes the specified application along with all associated versions and
// configurations. The application versions will not be deleted from your Amazon
// S3 bucket.
//
2016-11-19 19:41:01 +01:00
// You cannot delete an application that has a running environment.
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 AWS Elastic Beanstalk's
// API operation DeleteApplication for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeOperationInProgressException "OperationInProgressFailure"
2016-10-17 23:21:08 +02:00
// Unable to perform the specified operation because another operation that
// effects an element in this activity is already in progress.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteApplication
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DeleteApplication ( input * DeleteApplicationInput ) ( * DeleteApplicationOutput , error ) {
req , out := c . DeleteApplicationRequest ( input )
err := req . Send ( )
return out , err
}
const opDeleteApplicationVersion = "DeleteApplicationVersion"
2016-07-15 15:49:02 +02:00
// DeleteApplicationVersionRequest generates a "aws/request.Request" representing the
// client's request for the DeleteApplicationVersion 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 DeleteApplicationVersion 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 DeleteApplicationVersion 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 DeleteApplicationVersionRequest method.
// req, resp := client.DeleteApplicationVersionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteApplicationVersion
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DeleteApplicationVersionRequest ( input * DeleteApplicationVersionInput ) ( req * request . Request , output * DeleteApplicationVersionOutput ) {
op := & request . Operation {
Name : opDeleteApplicationVersion ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteApplicationVersionInput { }
}
2017-01-23 22:22:31 +01:00
output = & DeleteApplicationVersionOutput { }
2016-03-07 21:42:30 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( query . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DeleteApplicationVersion API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Deletes the specified version from the specified application.
//
2016-11-19 19:41:01 +01:00
// You cannot delete an application version that is associated with a running
2016-03-07 21:42:30 +01:00
// environment.
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 AWS Elastic Beanstalk's
// API operation DeleteApplicationVersion for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeSourceBundleDeletionException "SourceBundleDeletionFailure"
2016-10-17 23:21:08 +02:00
// Unable to delete the Amazon S3 source bundle associated with the application
// version. The application version was deleted successfully.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2016-10-17 23:21:08 +02:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeOperationInProgressException "OperationInProgressFailure"
2016-10-17 23:21:08 +02:00
// Unable to perform the specified operation because another operation that
// effects an element in this activity is already in progress.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeS3LocationNotInServiceRegionException "S3LocationNotInServiceRegionException"
2016-10-17 23:21:08 +02:00
// The specified S3 bucket does not belong to the S3 region in which the service
2016-12-15 16:18:11 +01:00
// is running. The following regions are supported:
//
// * IAD/us-east-1
//
// * PDX/us-west-2
//
// * DUB/eu-west-1
2016-10-17 23:21:08 +02:00
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteApplicationVersion
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DeleteApplicationVersion ( input * DeleteApplicationVersionInput ) ( * DeleteApplicationVersionOutput , error ) {
req , out := c . DeleteApplicationVersionRequest ( input )
err := req . Send ( )
return out , err
}
const opDeleteConfigurationTemplate = "DeleteConfigurationTemplate"
2016-07-15 15:49:02 +02:00
// DeleteConfigurationTemplateRequest generates a "aws/request.Request" representing the
// client's request for the DeleteConfigurationTemplate 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 DeleteConfigurationTemplate 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 DeleteConfigurationTemplate 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 DeleteConfigurationTemplateRequest method.
// req, resp := client.DeleteConfigurationTemplateRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteConfigurationTemplate
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DeleteConfigurationTemplateRequest ( input * DeleteConfigurationTemplateInput ) ( req * request . Request , output * DeleteConfigurationTemplateOutput ) {
op := & request . Operation {
Name : opDeleteConfigurationTemplate ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteConfigurationTemplateInput { }
}
2017-01-23 22:22:31 +01:00
output = & DeleteConfigurationTemplateOutput { }
2016-03-07 21:42:30 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( query . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DeleteConfigurationTemplate API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Deletes the specified configuration template.
//
2016-11-19 19:41:01 +01:00
// When you launch an environment using a configuration template, the environment
2016-03-07 21:42:30 +01:00
// gets a copy of the template. You can delete or modify the environment's copy
// of the template without affecting the running environment.
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 AWS Elastic Beanstalk's
// API operation DeleteConfigurationTemplate for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeOperationInProgressException "OperationInProgressFailure"
2016-10-17 23:21:08 +02:00
// Unable to perform the specified operation because another operation that
// effects an element in this activity is already in progress.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteConfigurationTemplate
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DeleteConfigurationTemplate ( input * DeleteConfigurationTemplateInput ) ( * DeleteConfigurationTemplateOutput , error ) {
req , out := c . DeleteConfigurationTemplateRequest ( input )
err := req . Send ( )
return out , err
}
const opDeleteEnvironmentConfiguration = "DeleteEnvironmentConfiguration"
2016-07-15 15:49:02 +02:00
// DeleteEnvironmentConfigurationRequest generates a "aws/request.Request" representing the
// client's request for the DeleteEnvironmentConfiguration 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 DeleteEnvironmentConfiguration 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 DeleteEnvironmentConfiguration 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 DeleteEnvironmentConfigurationRequest method.
// req, resp := client.DeleteEnvironmentConfigurationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteEnvironmentConfiguration
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DeleteEnvironmentConfigurationRequest ( input * DeleteEnvironmentConfigurationInput ) ( req * request . Request , output * DeleteEnvironmentConfigurationOutput ) {
op := & request . Operation {
Name : opDeleteEnvironmentConfiguration ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteEnvironmentConfigurationInput { }
}
2017-01-23 22:22:31 +01:00
output = & DeleteEnvironmentConfigurationOutput { }
2016-03-07 21:42:30 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( query . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DeleteEnvironmentConfiguration API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Deletes the draft configuration associated with the running environment.
//
2016-11-19 19:41:01 +01:00
// Updating a running environment with any configuration changes creates a draft
// configuration set. You can get the draft configuration using DescribeConfigurationSettings
2016-03-07 21:42:30 +01:00
// while the update is in progress or if the update fails. The DeploymentStatus
// for the draft configuration indicates whether the deployment is in process
// or has failed. The draft configuration remains in existence until it is deleted
// with this 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 AWS Elastic Beanstalk's
// API operation DeleteEnvironmentConfiguration for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteEnvironmentConfiguration
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DeleteEnvironmentConfiguration ( input * DeleteEnvironmentConfigurationInput ) ( * DeleteEnvironmentConfigurationOutput , error ) {
req , out := c . DeleteEnvironmentConfigurationRequest ( input )
err := req . Send ( )
return out , err
}
2017-03-03 19:48:24 +01:00
const opDeletePlatformVersion = "DeletePlatformVersion"
// DeletePlatformVersionRequest generates a "aws/request.Request" representing the
// client's request for the DeletePlatformVersion operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DeletePlatformVersion for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DeletePlatformVersion 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 DeletePlatformVersionRequest method.
// req, resp := client.DeletePlatformVersionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeletePlatformVersion
func ( c * ElasticBeanstalk ) DeletePlatformVersionRequest ( input * DeletePlatformVersionInput ) ( req * request . Request , output * DeletePlatformVersionOutput ) {
op := & request . Operation {
Name : opDeletePlatformVersion ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeletePlatformVersionInput { }
}
output = & DeletePlatformVersionOutput { }
req = c . newRequest ( op , input , output )
return
}
// DeletePlatformVersion API operation for AWS Elastic Beanstalk.
//
// Deletes the specified version of a custom platform.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Elastic Beanstalk's
// API operation DeletePlatformVersion for usage and error information.
//
// Returned Error Codes:
// * ErrCodeOperationInProgressException "OperationInProgressFailure"
// Unable to perform the specified operation because another operation that
// effects an element in this activity is already in progress.
//
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
// * ErrCodeServiceException "ServiceException"
// A generic service exception has occurred.
//
// * ErrCodePlatformVersionStillReferencedException "PlatformVersionStillReferencedException"
// You cannot delete the platform version because there are still environments
// running on it.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeletePlatformVersion
func ( c * ElasticBeanstalk ) DeletePlatformVersion ( input * DeletePlatformVersionInput ) ( * DeletePlatformVersionOutput , error ) {
req , out := c . DeletePlatformVersionRequest ( input )
err := req . Send ( )
return out , err
}
2016-03-07 21:42:30 +01:00
const opDescribeApplicationVersions = "DescribeApplicationVersions"
2016-07-15 15:49:02 +02:00
// DescribeApplicationVersionsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeApplicationVersions 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 DescribeApplicationVersions 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 DescribeApplicationVersions 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 DescribeApplicationVersionsRequest method.
// req, resp := client.DescribeApplicationVersionsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeApplicationVersions
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeApplicationVersionsRequest ( input * DescribeApplicationVersionsInput ) ( req * request . Request , output * DescribeApplicationVersionsOutput ) {
op := & request . Operation {
Name : opDescribeApplicationVersions ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeApplicationVersionsInput { }
}
output = & DescribeApplicationVersionsOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DescribeApplicationVersions API operation for AWS Elastic Beanstalk.
//
2016-12-02 15:37:53 +01:00
// Retrieve a list of application versions.
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 AWS Elastic Beanstalk's
// API operation DescribeApplicationVersions for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeApplicationVersions
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeApplicationVersions ( input * DescribeApplicationVersionsInput ) ( * DescribeApplicationVersionsOutput , error ) {
req , out := c . DescribeApplicationVersionsRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeApplications = "DescribeApplications"
2016-07-15 15:49:02 +02:00
// DescribeApplicationsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeApplications 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 DescribeApplications 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 DescribeApplications 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 DescribeApplicationsRequest method.
// req, resp := client.DescribeApplicationsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeApplications
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeApplicationsRequest ( input * DescribeApplicationsInput ) ( req * request . Request , output * DescribeApplicationsOutput ) {
op := & request . Operation {
Name : opDescribeApplications ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeApplicationsInput { }
}
output = & DescribeApplicationsOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DescribeApplications API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Returns the descriptions of existing applications.
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 AWS Elastic Beanstalk's
// API operation DescribeApplications for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeApplications
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeApplications ( input * DescribeApplicationsInput ) ( * DescribeApplicationsOutput , error ) {
req , out := c . DescribeApplicationsRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeConfigurationOptions = "DescribeConfigurationOptions"
2016-07-15 15:49:02 +02:00
// DescribeConfigurationOptionsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeConfigurationOptions 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 DescribeConfigurationOptions 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 DescribeConfigurationOptions 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 DescribeConfigurationOptionsRequest method.
// req, resp := client.DescribeConfigurationOptionsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeConfigurationOptions
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeConfigurationOptionsRequest ( input * DescribeConfigurationOptionsInput ) ( req * request . Request , output * DescribeConfigurationOptionsOutput ) {
op := & request . Operation {
Name : opDescribeConfigurationOptions ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeConfigurationOptionsInput { }
}
output = & DescribeConfigurationOptionsOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DescribeConfigurationOptions API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Describes the configuration options that are used in a particular configuration
// template or environment, or that a specified solution stack defines. The
// description includes the values the options, their default values, and an
// indication of the required action on a running environment if an option value
// is changed.
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 AWS Elastic Beanstalk's
// API operation DescribeConfigurationOptions for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeTooManyBucketsException "TooManyBucketsException"
2016-10-17 23:21:08 +02:00
// The specified account has reached its limit of Amazon S3 buckets.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeConfigurationOptions
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeConfigurationOptions ( input * DescribeConfigurationOptionsInput ) ( * DescribeConfigurationOptionsOutput , error ) {
req , out := c . DescribeConfigurationOptionsRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeConfigurationSettings = "DescribeConfigurationSettings"
2016-07-15 15:49:02 +02:00
// DescribeConfigurationSettingsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeConfigurationSettings 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 DescribeConfigurationSettings 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 DescribeConfigurationSettings 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 DescribeConfigurationSettingsRequest method.
// req, resp := client.DescribeConfigurationSettingsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeConfigurationSettings
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeConfigurationSettingsRequest ( input * DescribeConfigurationSettingsInput ) ( req * request . Request , output * DescribeConfigurationSettingsOutput ) {
op := & request . Operation {
Name : opDescribeConfigurationSettings ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeConfigurationSettingsInput { }
}
output = & DescribeConfigurationSettingsOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DescribeConfigurationSettings API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Returns a description of the settings for the specified configuration set,
// that is, either a configuration template or the configuration set associated
// with a running environment.
//
2016-10-17 23:21:08 +02:00
// When describing the settings for the configuration set associated with a
// running environment, it is possible to receive two sets of setting descriptions.
2016-03-07 21:42:30 +01:00
// One is the deployed configuration set, and the other is a draft configuration
// of an environment that is either in the process of deployment or that failed
// to deploy.
//
// Related Topics
//
2016-11-19 19:41:01 +01:00
// * DeleteEnvironmentConfiguration
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 AWS Elastic Beanstalk's
// API operation DescribeConfigurationSettings for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeTooManyBucketsException "TooManyBucketsException"
2016-10-17 23:21:08 +02:00
// The specified account has reached its limit of Amazon S3 buckets.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeConfigurationSettings
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeConfigurationSettings ( input * DescribeConfigurationSettingsInput ) ( * DescribeConfigurationSettingsOutput , error ) {
req , out := c . DescribeConfigurationSettingsRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeEnvironmentHealth = "DescribeEnvironmentHealth"
2016-07-15 15:49:02 +02:00
// DescribeEnvironmentHealthRequest generates a "aws/request.Request" representing the
// client's request for the DescribeEnvironmentHealth 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 DescribeEnvironmentHealth 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 DescribeEnvironmentHealth 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 DescribeEnvironmentHealthRequest method.
// req, resp := client.DescribeEnvironmentHealthRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentHealth
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeEnvironmentHealthRequest ( input * DescribeEnvironmentHealthInput ) ( req * request . Request , output * DescribeEnvironmentHealthOutput ) {
op := & request . Operation {
Name : opDescribeEnvironmentHealth ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeEnvironmentHealthInput { }
}
output = & DescribeEnvironmentHealthOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DescribeEnvironmentHealth API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Returns information about the overall health of the specified environment.
// The DescribeEnvironmentHealth operation is only available with AWS Elastic
// Beanstalk Enhanced Health.
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 AWS Elastic Beanstalk's
// API operation DescribeEnvironmentHealth for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidRequestException "InvalidRequestException"
2016-10-17 23:21:08 +02:00
// One or more input parameters is not valid. Please correct the input parameters
// and try the operation again.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeServiceException "ServiceException"
2016-10-17 23:21:08 +02:00
// A generic service exception has occurred.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentHealth
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeEnvironmentHealth ( input * DescribeEnvironmentHealthInput ) ( * DescribeEnvironmentHealthOutput , error ) {
req , out := c . DescribeEnvironmentHealthRequest ( input )
err := req . Send ( )
return out , err
}
2016-05-05 03:06:27 +02:00
const opDescribeEnvironmentManagedActionHistory = "DescribeEnvironmentManagedActionHistory"
2016-07-15 15:49:02 +02:00
// DescribeEnvironmentManagedActionHistoryRequest generates a "aws/request.Request" representing the
// client's request for the DescribeEnvironmentManagedActionHistory 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 DescribeEnvironmentManagedActionHistory 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 DescribeEnvironmentManagedActionHistory 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 DescribeEnvironmentManagedActionHistoryRequest method.
// req, resp := client.DescribeEnvironmentManagedActionHistoryRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentManagedActionHistory
2016-05-05 03:06:27 +02:00
func ( c * ElasticBeanstalk ) DescribeEnvironmentManagedActionHistoryRequest ( input * DescribeEnvironmentManagedActionHistoryInput ) ( req * request . Request , output * DescribeEnvironmentManagedActionHistoryOutput ) {
op := & request . Operation {
Name : opDescribeEnvironmentManagedActionHistory ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeEnvironmentManagedActionHistoryInput { }
}
output = & DescribeEnvironmentManagedActionHistoryOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-05-05 03:06:27 +02:00
return
}
2016-10-17 23:21:08 +02:00
// DescribeEnvironmentManagedActionHistory API operation for AWS Elastic Beanstalk.
//
2016-05-05 03:06:27 +02:00
// Lists an environment's completed and failed managed actions.
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 AWS Elastic Beanstalk's
// API operation DescribeEnvironmentManagedActionHistory for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeServiceException "ServiceException"
2016-10-17 23:21:08 +02:00
// A generic service exception has occurred.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentManagedActionHistory
2016-05-05 03:06:27 +02:00
func ( c * ElasticBeanstalk ) DescribeEnvironmentManagedActionHistory ( input * DescribeEnvironmentManagedActionHistoryInput ) ( * DescribeEnvironmentManagedActionHistoryOutput , error ) {
req , out := c . DescribeEnvironmentManagedActionHistoryRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeEnvironmentManagedActions = "DescribeEnvironmentManagedActions"
2016-07-15 15:49:02 +02:00
// DescribeEnvironmentManagedActionsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeEnvironmentManagedActions 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 DescribeEnvironmentManagedActions 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 DescribeEnvironmentManagedActions 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 DescribeEnvironmentManagedActionsRequest method.
// req, resp := client.DescribeEnvironmentManagedActionsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentManagedActions
2016-05-05 03:06:27 +02:00
func ( c * ElasticBeanstalk ) DescribeEnvironmentManagedActionsRequest ( input * DescribeEnvironmentManagedActionsInput ) ( req * request . Request , output * DescribeEnvironmentManagedActionsOutput ) {
op := & request . Operation {
Name : opDescribeEnvironmentManagedActions ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeEnvironmentManagedActionsInput { }
}
output = & DescribeEnvironmentManagedActionsOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-05-05 03:06:27 +02:00
return
}
2016-10-17 23:21:08 +02:00
// DescribeEnvironmentManagedActions API operation for AWS Elastic Beanstalk.
//
2016-05-05 03:06:27 +02:00
// Lists an environment's upcoming and in-progress managed actions.
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 AWS Elastic Beanstalk's
// API operation DescribeEnvironmentManagedActions for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeServiceException "ServiceException"
2016-10-17 23:21:08 +02:00
// A generic service exception has occurred.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentManagedActions
2016-05-05 03:06:27 +02:00
func ( c * ElasticBeanstalk ) DescribeEnvironmentManagedActions ( input * DescribeEnvironmentManagedActionsInput ) ( * DescribeEnvironmentManagedActionsOutput , error ) {
req , out := c . DescribeEnvironmentManagedActionsRequest ( input )
err := req . Send ( )
return out , err
}
2016-03-07 21:42:30 +01:00
const opDescribeEnvironmentResources = "DescribeEnvironmentResources"
2016-07-15 15:49:02 +02:00
// DescribeEnvironmentResourcesRequest generates a "aws/request.Request" representing the
// client's request for the DescribeEnvironmentResources 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 DescribeEnvironmentResources 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 DescribeEnvironmentResources 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 DescribeEnvironmentResourcesRequest method.
// req, resp := client.DescribeEnvironmentResourcesRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentResources
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeEnvironmentResourcesRequest ( input * DescribeEnvironmentResourcesInput ) ( req * request . Request , output * DescribeEnvironmentResourcesOutput ) {
op := & request . Operation {
Name : opDescribeEnvironmentResources ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeEnvironmentResourcesInput { }
}
output = & DescribeEnvironmentResourcesOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DescribeEnvironmentResources API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Returns AWS resources for this environment.
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 AWS Elastic Beanstalk's
// API operation DescribeEnvironmentResources for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2016-10-17 23:21:08 +02:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentResources
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeEnvironmentResources ( input * DescribeEnvironmentResourcesInput ) ( * DescribeEnvironmentResourcesOutput , error ) {
req , out := c . DescribeEnvironmentResourcesRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeEnvironments = "DescribeEnvironments"
2016-07-15 15:49:02 +02:00
// DescribeEnvironmentsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeEnvironments 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 DescribeEnvironments 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 DescribeEnvironments 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 DescribeEnvironmentsRequest method.
// req, resp := client.DescribeEnvironmentsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironments
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeEnvironmentsRequest ( input * DescribeEnvironmentsInput ) ( req * request . Request , output * EnvironmentDescriptionsMessage ) {
op := & request . Operation {
Name : opDescribeEnvironments ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeEnvironmentsInput { }
}
output = & EnvironmentDescriptionsMessage { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DescribeEnvironments API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Returns descriptions for existing environments.
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 AWS Elastic Beanstalk's
// API operation DescribeEnvironments for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironments
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeEnvironments ( input * DescribeEnvironmentsInput ) ( * EnvironmentDescriptionsMessage , error ) {
req , out := c . DescribeEnvironmentsRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeEvents = "DescribeEvents"
2016-07-15 15:49:02 +02:00
// DescribeEventsRequest generates a "aws/request.Request" representing the
// client's request for the DescribeEvents 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 DescribeEvents 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 DescribeEvents 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 DescribeEventsRequest method.
// req, resp := client.DescribeEventsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEvents
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeEventsRequest ( input * DescribeEventsInput ) ( req * request . Request , output * DescribeEventsOutput ) {
op := & request . Operation {
Name : opDescribeEvents ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
Paginator : & request . Paginator {
InputTokens : [ ] string { "NextToken" } ,
OutputTokens : [ ] string { "NextToken" } ,
LimitToken : "MaxRecords" ,
TruncationToken : "" ,
} ,
}
if input == nil {
input = & DescribeEventsInput { }
}
output = & DescribeEventsOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DescribeEvents API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Returns list of event descriptions matching criteria up to the last 6 weeks.
//
2016-11-19 19:41:01 +01:00
// This action returns the most recent 1,000 events from the specified NextToken.
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 AWS Elastic Beanstalk's
// API operation DescribeEvents for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEvents
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeEvents ( input * DescribeEventsInput ) ( * DescribeEventsOutput , error ) {
req , out := c . DescribeEventsRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
// DescribeEventsPages iterates over the pages of a DescribeEvents operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See DescribeEvents 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 DescribeEvents operation.
// pageNum := 0
// err := client.DescribeEventsPages(params,
// func(page *DescribeEventsOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeEventsPages ( input * DescribeEventsInput , fn func ( p * DescribeEventsOutput , lastPage bool ) ( shouldContinue bool ) ) error {
page , _ := c . DescribeEventsRequest ( input )
page . Handlers . Build . PushBack ( request . MakeAddToUserAgentFreeFormHandler ( "Paginator" ) )
return page . EachPage ( func ( p interface { } , lastPage bool ) bool {
return fn ( p . ( * DescribeEventsOutput ) , lastPage )
} )
}
const opDescribeInstancesHealth = "DescribeInstancesHealth"
2016-07-15 15:49:02 +02:00
// DescribeInstancesHealthRequest generates a "aws/request.Request" representing the
// client's request for the DescribeInstancesHealth 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 DescribeInstancesHealth 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 DescribeInstancesHealth 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 DescribeInstancesHealthRequest method.
// req, resp := client.DescribeInstancesHealthRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeInstancesHealth
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeInstancesHealthRequest ( input * DescribeInstancesHealthInput ) ( req * request . Request , output * DescribeInstancesHealthOutput ) {
op := & request . Operation {
Name : opDescribeInstancesHealth ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeInstancesHealthInput { }
}
output = & DescribeInstancesHealthOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DescribeInstancesHealth API operation for AWS Elastic Beanstalk.
//
2016-12-02 15:37:53 +01:00
// Retrives detailed information about the health of instances in your AWS Elastic
// Beanstalk. This operation requires enhanced health reporting (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced.html).
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 AWS Elastic Beanstalk's
// API operation DescribeInstancesHealth for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidRequestException "InvalidRequestException"
2016-10-17 23:21:08 +02:00
// One or more input parameters is not valid. Please correct the input parameters
// and try the operation again.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeServiceException "ServiceException"
2016-10-17 23:21:08 +02:00
// A generic service exception has occurred.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeInstancesHealth
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) DescribeInstancesHealth ( input * DescribeInstancesHealthInput ) ( * DescribeInstancesHealthOutput , error ) {
req , out := c . DescribeInstancesHealthRequest ( input )
err := req . Send ( )
return out , err
}
2017-03-03 19:48:24 +01:00
const opDescribePlatformVersion = "DescribePlatformVersion"
// DescribePlatformVersionRequest generates a "aws/request.Request" representing the
// client's request for the DescribePlatformVersion operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DescribePlatformVersion for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribePlatformVersion 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 DescribePlatformVersionRequest method.
// req, resp := client.DescribePlatformVersionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribePlatformVersion
func ( c * ElasticBeanstalk ) DescribePlatformVersionRequest ( input * DescribePlatformVersionInput ) ( req * request . Request , output * DescribePlatformVersionOutput ) {
op := & request . Operation {
Name : opDescribePlatformVersion ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribePlatformVersionInput { }
}
output = & DescribePlatformVersionOutput { }
req = c . newRequest ( op , input , output )
return
}
// DescribePlatformVersion API operation for AWS Elastic Beanstalk.
//
// Describes the version of the platform.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Elastic Beanstalk's
// API operation DescribePlatformVersion for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
// * ErrCodeServiceException "ServiceException"
// A generic service exception has occurred.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribePlatformVersion
func ( c * ElasticBeanstalk ) DescribePlatformVersion ( input * DescribePlatformVersionInput ) ( * DescribePlatformVersionOutput , error ) {
req , out := c . DescribePlatformVersionRequest ( input )
err := req . Send ( )
return out , err
}
2016-03-07 21:42:30 +01:00
const opListAvailableSolutionStacks = "ListAvailableSolutionStacks"
2016-07-15 15:49:02 +02:00
// ListAvailableSolutionStacksRequest generates a "aws/request.Request" representing the
// client's request for the ListAvailableSolutionStacks 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 ListAvailableSolutionStacks 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 ListAvailableSolutionStacks 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 ListAvailableSolutionStacksRequest method.
// req, resp := client.ListAvailableSolutionStacksRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListAvailableSolutionStacks
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) ListAvailableSolutionStacksRequest ( input * ListAvailableSolutionStacksInput ) ( req * request . Request , output * ListAvailableSolutionStacksOutput ) {
op := & request . Operation {
Name : opListAvailableSolutionStacks ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ListAvailableSolutionStacksInput { }
}
output = & ListAvailableSolutionStacksOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// ListAvailableSolutionStacks API operation for AWS Elastic Beanstalk.
//
2017-03-03 19:48:24 +01:00
// Returns a list of the available solution stack names, with the public version
// first and then in reverse chronological order.
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 AWS Elastic Beanstalk's
// API operation ListAvailableSolutionStacks for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListAvailableSolutionStacks
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) ListAvailableSolutionStacks ( input * ListAvailableSolutionStacksInput ) ( * ListAvailableSolutionStacksOutput , error ) {
req , out := c . ListAvailableSolutionStacksRequest ( input )
err := req . Send ( )
return out , err
}
2017-03-03 19:48:24 +01:00
const opListPlatformVersions = "ListPlatformVersions"
// ListPlatformVersionsRequest generates a "aws/request.Request" representing the
// client's request for the ListPlatformVersions operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See ListPlatformVersions for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListPlatformVersions 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 ListPlatformVersionsRequest method.
// req, resp := client.ListPlatformVersionsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListPlatformVersions
func ( c * ElasticBeanstalk ) ListPlatformVersionsRequest ( input * ListPlatformVersionsInput ) ( req * request . Request , output * ListPlatformVersionsOutput ) {
op := & request . Operation {
Name : opListPlatformVersions ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ListPlatformVersionsInput { }
}
output = & ListPlatformVersionsOutput { }
req = c . newRequest ( op , input , output )
return
}
// ListPlatformVersions API operation for AWS Elastic Beanstalk.
//
// Lists the available platforms.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Elastic Beanstalk's
// API operation ListPlatformVersions for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
// * ErrCodeServiceException "ServiceException"
// A generic service exception has occurred.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListPlatformVersions
func ( c * ElasticBeanstalk ) ListPlatformVersions ( input * ListPlatformVersionsInput ) ( * ListPlatformVersionsOutput , error ) {
req , out := c . ListPlatformVersionsRequest ( input )
err := req . Send ( )
return out , err
}
2016-03-07 21:42:30 +01:00
const opRebuildEnvironment = "RebuildEnvironment"
2016-07-15 15:49:02 +02:00
// RebuildEnvironmentRequest generates a "aws/request.Request" representing the
// client's request for the RebuildEnvironment 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 RebuildEnvironment 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 RebuildEnvironment 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 RebuildEnvironmentRequest method.
// req, resp := client.RebuildEnvironmentRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RebuildEnvironment
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) RebuildEnvironmentRequest ( input * RebuildEnvironmentInput ) ( req * request . Request , output * RebuildEnvironmentOutput ) {
op := & request . Operation {
Name : opRebuildEnvironment ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & RebuildEnvironmentInput { }
}
2017-01-23 22:22:31 +01:00
output = & RebuildEnvironmentOutput { }
2016-03-07 21:42:30 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( query . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// RebuildEnvironment API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Deletes and recreates all of the AWS resources (for example: the Auto Scaling
// group, load balancer, etc.) for a specified environment and forces a restart.
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 AWS Elastic Beanstalk's
// API operation RebuildEnvironment for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2016-10-17 23:21:08 +02:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RebuildEnvironment
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) RebuildEnvironment ( input * RebuildEnvironmentInput ) ( * RebuildEnvironmentOutput , error ) {
req , out := c . RebuildEnvironmentRequest ( input )
err := req . Send ( )
return out , err
}
const opRequestEnvironmentInfo = "RequestEnvironmentInfo"
2016-07-15 15:49:02 +02:00
// RequestEnvironmentInfoRequest generates a "aws/request.Request" representing the
// client's request for the RequestEnvironmentInfo 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 RequestEnvironmentInfo 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 RequestEnvironmentInfo 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 RequestEnvironmentInfoRequest method.
// req, resp := client.RequestEnvironmentInfoRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RequestEnvironmentInfo
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) RequestEnvironmentInfoRequest ( input * RequestEnvironmentInfoInput ) ( req * request . Request , output * RequestEnvironmentInfoOutput ) {
op := & request . Operation {
Name : opRequestEnvironmentInfo ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & RequestEnvironmentInfoInput { }
}
2017-01-23 22:22:31 +01:00
output = & RequestEnvironmentInfoOutput { }
2016-03-07 21:42:30 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( query . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// RequestEnvironmentInfo API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Initiates a request to compile the specified type of information of the deployed
// environment.
//
2016-11-19 19:41:01 +01:00
// Setting the InfoType to tail compiles the last lines from the application
2016-03-07 21:42:30 +01:00
// server log files of every Amazon EC2 instance in your environment.
//
2016-11-19 19:41:01 +01:00
// Setting the InfoType to bundle compresses the application server log files
2016-03-07 21:42:30 +01:00
// for every Amazon EC2 instance into a .zip file. Legacy and .NET containers
// do not support bundle logs.
//
2016-11-19 19:41:01 +01:00
// Use RetrieveEnvironmentInfo to obtain the set of logs.
2016-03-07 21:42:30 +01:00
//
// Related Topics
//
2016-11-19 19:41:01 +01:00
// * RetrieveEnvironmentInfo
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 AWS Elastic Beanstalk's
// API operation RequestEnvironmentInfo for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RequestEnvironmentInfo
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) RequestEnvironmentInfo ( input * RequestEnvironmentInfoInput ) ( * RequestEnvironmentInfoOutput , error ) {
req , out := c . RequestEnvironmentInfoRequest ( input )
err := req . Send ( )
return out , err
}
const opRestartAppServer = "RestartAppServer"
2016-07-15 15:49:02 +02:00
// RestartAppServerRequest generates a "aws/request.Request" representing the
// client's request for the RestartAppServer 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 RestartAppServer 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 RestartAppServer 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 RestartAppServerRequest method.
// req, resp := client.RestartAppServerRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RestartAppServer
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) RestartAppServerRequest ( input * RestartAppServerInput ) ( req * request . Request , output * RestartAppServerOutput ) {
op := & request . Operation {
Name : opRestartAppServer ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & RestartAppServerInput { }
}
2017-01-23 22:22:31 +01:00
output = & RestartAppServerOutput { }
2016-03-07 21:42:30 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( query . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// RestartAppServer API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Causes the environment to restart the application container server running
// on each Amazon EC2 instance.
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 AWS Elastic Beanstalk's
// API operation RestartAppServer for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RestartAppServer
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) RestartAppServer ( input * RestartAppServerInput ) ( * RestartAppServerOutput , error ) {
req , out := c . RestartAppServerRequest ( input )
err := req . Send ( )
return out , err
}
const opRetrieveEnvironmentInfo = "RetrieveEnvironmentInfo"
2016-07-15 15:49:02 +02:00
// RetrieveEnvironmentInfoRequest generates a "aws/request.Request" representing the
// client's request for the RetrieveEnvironmentInfo 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 RetrieveEnvironmentInfo 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 RetrieveEnvironmentInfo 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 RetrieveEnvironmentInfoRequest method.
// req, resp := client.RetrieveEnvironmentInfoRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RetrieveEnvironmentInfo
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) RetrieveEnvironmentInfoRequest ( input * RetrieveEnvironmentInfoInput ) ( req * request . Request , output * RetrieveEnvironmentInfoOutput ) {
op := & request . Operation {
Name : opRetrieveEnvironmentInfo ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & RetrieveEnvironmentInfoInput { }
}
output = & RetrieveEnvironmentInfoOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// RetrieveEnvironmentInfo API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Retrieves the compiled information from a RequestEnvironmentInfo request.
//
// Related Topics
//
2016-11-19 19:41:01 +01:00
// * RequestEnvironmentInfo
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 AWS Elastic Beanstalk's
// API operation RetrieveEnvironmentInfo for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RetrieveEnvironmentInfo
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) RetrieveEnvironmentInfo ( input * RetrieveEnvironmentInfoInput ) ( * RetrieveEnvironmentInfoOutput , error ) {
req , out := c . RetrieveEnvironmentInfoRequest ( input )
err := req . Send ( )
return out , err
}
const opSwapEnvironmentCNAMEs = "SwapEnvironmentCNAMEs"
2016-07-15 15:49:02 +02:00
// SwapEnvironmentCNAMEsRequest generates a "aws/request.Request" representing the
// client's request for the SwapEnvironmentCNAMEs 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 SwapEnvironmentCNAMEs 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 SwapEnvironmentCNAMEs 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 SwapEnvironmentCNAMEsRequest method.
// req, resp := client.SwapEnvironmentCNAMEsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SwapEnvironmentCNAMEs
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) SwapEnvironmentCNAMEsRequest ( input * SwapEnvironmentCNAMEsInput ) ( req * request . Request , output * SwapEnvironmentCNAMEsOutput ) {
op := & request . Operation {
Name : opSwapEnvironmentCNAMEs ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & SwapEnvironmentCNAMEsInput { }
}
2017-01-23 22:22:31 +01:00
output = & SwapEnvironmentCNAMEsOutput { }
2016-03-07 21:42:30 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( query . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// SwapEnvironmentCNAMEs API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Swaps the CNAMEs of two environments.
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 AWS Elastic Beanstalk's
// API operation SwapEnvironmentCNAMEs for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SwapEnvironmentCNAMEs
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) SwapEnvironmentCNAMEs ( input * SwapEnvironmentCNAMEsInput ) ( * SwapEnvironmentCNAMEsOutput , error ) {
req , out := c . SwapEnvironmentCNAMEsRequest ( input )
err := req . Send ( )
return out , err
}
const opTerminateEnvironment = "TerminateEnvironment"
2016-07-15 15:49:02 +02:00
// TerminateEnvironmentRequest generates a "aws/request.Request" representing the
// client's request for the TerminateEnvironment 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 TerminateEnvironment 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 TerminateEnvironment 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 TerminateEnvironmentRequest method.
// req, resp := client.TerminateEnvironmentRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TerminateEnvironment
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) TerminateEnvironmentRequest ( input * TerminateEnvironmentInput ) ( req * request . Request , output * EnvironmentDescription ) {
op := & request . Operation {
Name : opTerminateEnvironment ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & TerminateEnvironmentInput { }
}
output = & EnvironmentDescription { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// TerminateEnvironment API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Terminates the specified environment.
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 AWS Elastic Beanstalk's
// API operation TerminateEnvironment for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2016-10-17 23:21:08 +02:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TerminateEnvironment
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) TerminateEnvironment ( input * TerminateEnvironmentInput ) ( * EnvironmentDescription , error ) {
req , out := c . TerminateEnvironmentRequest ( input )
err := req . Send ( )
return out , err
}
const opUpdateApplication = "UpdateApplication"
2016-07-15 15:49:02 +02:00
// UpdateApplicationRequest generates a "aws/request.Request" representing the
// client's request for the UpdateApplication 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 UpdateApplication 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 UpdateApplication 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 UpdateApplicationRequest method.
// req, resp := client.UpdateApplicationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateApplication
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) UpdateApplicationRequest ( input * UpdateApplicationInput ) ( req * request . Request , output * ApplicationDescriptionMessage ) {
op := & request . Operation {
Name : opUpdateApplication ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & UpdateApplicationInput { }
}
output = & ApplicationDescriptionMessage { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// UpdateApplication API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Updates the specified application to have the specified properties.
//
2016-11-19 19:41:01 +01:00
// If a property (for example, description) is not provided, the value remains
2016-03-07 21:42:30 +01:00
// unchanged. To clear these properties, specify an empty string.
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 AWS Elastic Beanstalk's
// API operation UpdateApplication for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateApplication
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) UpdateApplication ( input * UpdateApplicationInput ) ( * ApplicationDescriptionMessage , error ) {
req , out := c . UpdateApplicationRequest ( input )
err := req . Send ( )
return out , err
}
2017-01-02 21:35:31 +01:00
const opUpdateApplicationResourceLifecycle = "UpdateApplicationResourceLifecycle"
// UpdateApplicationResourceLifecycleRequest generates a "aws/request.Request" representing the
// client's request for the UpdateApplicationResourceLifecycle operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See UpdateApplicationResourceLifecycle for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the UpdateApplicationResourceLifecycle 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 UpdateApplicationResourceLifecycleRequest method.
// req, resp := client.UpdateApplicationResourceLifecycleRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateApplicationResourceLifecycle
func ( c * ElasticBeanstalk ) UpdateApplicationResourceLifecycleRequest ( input * UpdateApplicationResourceLifecycleInput ) ( req * request . Request , output * UpdateApplicationResourceLifecycleOutput ) {
op := & request . Operation {
Name : opUpdateApplicationResourceLifecycle ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & UpdateApplicationResourceLifecycleInput { }
}
output = & UpdateApplicationResourceLifecycleOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2017-01-02 21:35:31 +01:00
return
}
// UpdateApplicationResourceLifecycle API operation for AWS Elastic Beanstalk.
//
// Modifies lifecycle settings for an application.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Elastic Beanstalk's
// API operation UpdateApplicationResourceLifecycle for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2017-01-02 21:35:31 +01:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateApplicationResourceLifecycle
func ( c * ElasticBeanstalk ) UpdateApplicationResourceLifecycle ( input * UpdateApplicationResourceLifecycleInput ) ( * UpdateApplicationResourceLifecycleOutput , error ) {
req , out := c . UpdateApplicationResourceLifecycleRequest ( input )
err := req . Send ( )
return out , err
}
2016-03-07 21:42:30 +01:00
const opUpdateApplicationVersion = "UpdateApplicationVersion"
2016-07-15 15:49:02 +02:00
// UpdateApplicationVersionRequest generates a "aws/request.Request" representing the
// client's request for the UpdateApplicationVersion 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 UpdateApplicationVersion 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 UpdateApplicationVersion 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 UpdateApplicationVersionRequest method.
// req, resp := client.UpdateApplicationVersionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateApplicationVersion
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) UpdateApplicationVersionRequest ( input * UpdateApplicationVersionInput ) ( req * request . Request , output * ApplicationVersionDescriptionMessage ) {
op := & request . Operation {
Name : opUpdateApplicationVersion ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & UpdateApplicationVersionInput { }
}
output = & ApplicationVersionDescriptionMessage { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// UpdateApplicationVersion API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Updates the specified application version to have the specified properties.
//
2016-11-19 19:41:01 +01:00
// If a property (for example, description) is not provided, the value remains
2016-03-07 21:42:30 +01:00
// unchanged. To clear properties, specify an empty string.
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 AWS Elastic Beanstalk's
// API operation UpdateApplicationVersion for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateApplicationVersion
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) UpdateApplicationVersion ( input * UpdateApplicationVersionInput ) ( * ApplicationVersionDescriptionMessage , error ) {
req , out := c . UpdateApplicationVersionRequest ( input )
err := req . Send ( )
return out , err
}
const opUpdateConfigurationTemplate = "UpdateConfigurationTemplate"
2016-07-15 15:49:02 +02:00
// UpdateConfigurationTemplateRequest generates a "aws/request.Request" representing the
// client's request for the UpdateConfigurationTemplate 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 UpdateConfigurationTemplate 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 UpdateConfigurationTemplate 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 UpdateConfigurationTemplateRequest method.
// req, resp := client.UpdateConfigurationTemplateRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateConfigurationTemplate
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) UpdateConfigurationTemplateRequest ( input * UpdateConfigurationTemplateInput ) ( req * request . Request , output * ConfigurationSettingsDescription ) {
op := & request . Operation {
Name : opUpdateConfigurationTemplate ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & UpdateConfigurationTemplateInput { }
}
output = & ConfigurationSettingsDescription { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// UpdateConfigurationTemplate API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Updates the specified configuration template to have the specified properties
// or configuration option values.
//
2016-11-19 19:41:01 +01:00
// If a property (for example, ApplicationName) is not provided, its value remains
// unchanged. To clear such properties, specify an empty string.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// Related Topics
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * DescribeConfigurationOptions
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 AWS Elastic Beanstalk's
// API operation UpdateConfigurationTemplate for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2016-10-17 23:21:08 +02:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeTooManyBucketsException "TooManyBucketsException"
2016-10-17 23:21:08 +02:00
// The specified account has reached its limit of Amazon S3 buckets.
2016-03-07 21:42:30 +01:00
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateConfigurationTemplate
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) UpdateConfigurationTemplate ( input * UpdateConfigurationTemplateInput ) ( * ConfigurationSettingsDescription , error ) {
req , out := c . UpdateConfigurationTemplateRequest ( input )
err := req . Send ( )
return out , err
}
const opUpdateEnvironment = "UpdateEnvironment"
2016-07-15 15:49:02 +02:00
// UpdateEnvironmentRequest generates a "aws/request.Request" representing the
// client's request for the UpdateEnvironment 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 UpdateEnvironment 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 UpdateEnvironment 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 UpdateEnvironmentRequest method.
// req, resp := client.UpdateEnvironmentRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateEnvironment
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) UpdateEnvironmentRequest ( input * UpdateEnvironmentInput ) ( req * request . Request , output * EnvironmentDescription ) {
op := & request . Operation {
Name : opUpdateEnvironment ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & UpdateEnvironmentInput { }
}
output = & EnvironmentDescription { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// UpdateEnvironment API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Updates the environment description, deploys a new application version, updates
// the configuration settings to an entirely new configuration template, or
// updates select configuration option values in the running environment.
//
2016-11-19 19:41:01 +01:00
// Attempting to update both the release and configuration is not allowed and
// AWS Elastic Beanstalk returns an InvalidParameterCombination error.
2016-03-07 21:42:30 +01:00
//
2016-11-19 19:41:01 +01:00
// When updating the configuration settings to a new template or individual
2016-03-07 21:42:30 +01:00
// settings, a draft configuration is created and DescribeConfigurationSettings
// for this environment returns two setting descriptions with different DeploymentStatus
// values.
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 AWS Elastic Beanstalk's
// API operation UpdateEnvironment for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2016-10-17 23:21:08 +02:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeTooManyBucketsException "TooManyBucketsException"
2016-10-17 23:21:08 +02:00
// The specified account has reached its limit of Amazon S3 buckets.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateEnvironment
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) UpdateEnvironment ( input * UpdateEnvironmentInput ) ( * EnvironmentDescription , error ) {
req , out := c . UpdateEnvironmentRequest ( input )
err := req . Send ( )
return out , err
}
const opValidateConfigurationSettings = "ValidateConfigurationSettings"
2016-07-15 15:49:02 +02:00
// ValidateConfigurationSettingsRequest generates a "aws/request.Request" representing the
// client's request for the ValidateConfigurationSettings 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 ValidateConfigurationSettings 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 ValidateConfigurationSettings 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 ValidateConfigurationSettingsRequest method.
// req, resp := client.ValidateConfigurationSettingsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ValidateConfigurationSettings
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) ValidateConfigurationSettingsRequest ( input * ValidateConfigurationSettingsInput ) ( req * request . Request , output * ValidateConfigurationSettingsOutput ) {
op := & request . Operation {
Name : opValidateConfigurationSettings ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ValidateConfigurationSettingsInput { }
}
output = & ValidateConfigurationSettingsOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-03-07 21:42:30 +01:00
return
}
2016-10-17 23:21:08 +02:00
// ValidateConfigurationSettings API operation for AWS Elastic Beanstalk.
//
2016-03-07 21:42:30 +01:00
// Takes a set of configuration settings and either a configuration template
// or environment, and determines whether those values are valid.
//
2016-10-17 23:21:08 +02:00
// This action returns a list of messages indicating any errors or warnings
2016-03-07 21:42:30 +01:00
// associated with the selection of option values.
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 AWS Elastic Beanstalk's
// API operation ValidateConfigurationSettings for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInsufficientPrivilegesException "InsufficientPrivilegesException"
2016-10-17 23:21:08 +02:00
// The specified account does not have sufficient privileges for one of more
// AWS services.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeTooManyBucketsException "TooManyBucketsException"
2016-10-17 23:21:08 +02:00
// The specified account has reached its limit of Amazon S3 buckets.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ValidateConfigurationSettings
2016-03-07 21:42:30 +01:00
func ( c * ElasticBeanstalk ) ValidateConfigurationSettings ( input * ValidateConfigurationSettingsInput ) ( * ValidateConfigurationSettingsOutput , error ) {
req , out := c . ValidateConfigurationSettingsRequest ( input )
err := req . Send ( )
return out , err
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/AbortEnvironmentUpdateMessage
2016-03-07 21:42:30 +01:00
type AbortEnvironmentUpdateInput struct {
_ struct { } ` type:"structure" `
// This specifies the ID of the environment with the in-progress update that
// you want to cancel.
EnvironmentId * string ` type:"string" `
// This specifies the name of the environment with the in-progress update that
// you want to cancel.
EnvironmentName * string ` min:"4" type:"string" `
}
// String returns the string representation
func ( s AbortEnvironmentUpdateInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s AbortEnvironmentUpdateInput ) 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 * AbortEnvironmentUpdateInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "AbortEnvironmentUpdateInput" }
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * AbortEnvironmentUpdateInput ) SetEnvironmentId ( v string ) * AbortEnvironmentUpdateInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * AbortEnvironmentUpdateInput ) SetEnvironmentName ( v string ) * AbortEnvironmentUpdateInput {
s . EnvironmentName = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/AbortEnvironmentUpdateOutput
2016-03-07 21:42:30 +01:00
type AbortEnvironmentUpdateOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s AbortEnvironmentUpdateOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s AbortEnvironmentUpdateOutput ) GoString ( ) string {
return s . String ( )
}
// Describes the properties of an application.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplicationDescription
2016-03-07 21:42:30 +01:00
type ApplicationDescription struct {
_ struct { } ` type:"structure" `
// The name of the application.
ApplicationName * string ` min:"1" type:"string" `
// The names of the configuration templates associated with this application.
ConfigurationTemplates [ ] * string ` type:"list" `
// The date when the application was created.
DateCreated * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// The date when the application was last modified.
DateUpdated * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// User-defined description of the application.
Description * string ` type:"string" `
2017-01-02 21:35:31 +01:00
// The lifecycle settings for the application.
ResourceLifecycleConfig * ApplicationResourceLifecycleConfig ` type:"structure" `
2016-03-07 21:42:30 +01:00
// The names of the versions for this application.
Versions [ ] * string ` type:"list" `
}
// String returns the string representation
func ( s ApplicationDescription ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ApplicationDescription ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * ApplicationDescription ) SetApplicationName ( v string ) * ApplicationDescription {
s . ApplicationName = & v
return s
}
// SetConfigurationTemplates sets the ConfigurationTemplates field's value.
func ( s * ApplicationDescription ) SetConfigurationTemplates ( v [ ] * string ) * ApplicationDescription {
s . ConfigurationTemplates = v
return s
}
// SetDateCreated sets the DateCreated field's value.
func ( s * ApplicationDescription ) SetDateCreated ( v time . Time ) * ApplicationDescription {
s . DateCreated = & v
return s
}
// SetDateUpdated sets the DateUpdated field's value.
func ( s * ApplicationDescription ) SetDateUpdated ( v time . Time ) * ApplicationDescription {
s . DateUpdated = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * ApplicationDescription ) SetDescription ( v string ) * ApplicationDescription {
s . Description = & v
return s
}
2017-01-02 21:35:31 +01:00
// SetResourceLifecycleConfig sets the ResourceLifecycleConfig field's value.
func ( s * ApplicationDescription ) SetResourceLifecycleConfig ( v * ApplicationResourceLifecycleConfig ) * ApplicationDescription {
s . ResourceLifecycleConfig = v
return s
}
2016-11-19 19:41:01 +01:00
// SetVersions sets the Versions field's value.
func ( s * ApplicationDescription ) SetVersions ( v [ ] * string ) * ApplicationDescription {
s . Versions = v
return s
}
2016-03-07 21:42:30 +01:00
// Result message containing a single description of an application.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplicationDescriptionMessage
2016-03-07 21:42:30 +01:00
type ApplicationDescriptionMessage struct {
_ struct { } ` type:"structure" `
// The ApplicationDescription of the application.
Application * ApplicationDescription ` type:"structure" `
}
// String returns the string representation
func ( s ApplicationDescriptionMessage ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ApplicationDescriptionMessage ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetApplication sets the Application field's value.
func ( s * ApplicationDescriptionMessage ) SetApplication ( v * ApplicationDescription ) * ApplicationDescriptionMessage {
s . Application = v
return s
}
2016-12-02 15:37:53 +01:00
// Application request metrics for an AWS Elastic Beanstalk environment.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplicationMetrics
2016-03-07 21:42:30 +01:00
type ApplicationMetrics struct {
_ struct { } ` type:"structure" `
// The amount of time that the metrics cover (usually 10 seconds). For example,
// you might have 5 requests (request_count) within the most recent time slice
// of 10 seconds (duration).
Duration * int64 ` type:"integer" `
// Represents the average latency for the slowest X percent of requests over
2017-03-03 19:48:24 +01:00
// the last 10 seconds. Latencies are in seconds with one millisecond resolution.
2016-03-07 21:42:30 +01:00
Latency * Latency ` type:"structure" `
// Average number of requests handled by the web server per second over the
// last 10 seconds.
RequestCount * int64 ` type:"integer" `
// Represents the percentage of requests over the last 10 seconds that resulted
// in each type of status code response.
StatusCodes * StatusCodes ` type:"structure" `
}
// String returns the string representation
func ( s ApplicationMetrics ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ApplicationMetrics ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetDuration sets the Duration field's value.
func ( s * ApplicationMetrics ) SetDuration ( v int64 ) * ApplicationMetrics {
s . Duration = & v
return s
}
// SetLatency sets the Latency field's value.
func ( s * ApplicationMetrics ) SetLatency ( v * Latency ) * ApplicationMetrics {
s . Latency = v
return s
}
// SetRequestCount sets the RequestCount field's value.
func ( s * ApplicationMetrics ) SetRequestCount ( v int64 ) * ApplicationMetrics {
s . RequestCount = & v
return s
}
// SetStatusCodes sets the StatusCodes field's value.
func ( s * ApplicationMetrics ) SetStatusCodes ( v * StatusCodes ) * ApplicationMetrics {
s . StatusCodes = v
return s
}
2017-01-02 21:35:31 +01:00
// The resource lifecycle configuration for an application. Defines lifecycle
// settings for resources that belong to the application, and the service role
// that Elastic Beanstalk assumes in order to apply lifecycle settings. The
// version lifecycle configuration defines lifecycle settings for application
// versions.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplicationResourceLifecycleConfig
type ApplicationResourceLifecycleConfig struct {
_ struct { } ` type:"structure" `
// The ARN of an IAM service role that Elastic Beanstalk has permission to assume.
ServiceRole * string ` type:"string" `
// The application version lifecycle configuration.
VersionLifecycleConfig * ApplicationVersionLifecycleConfig ` type:"structure" `
}
// String returns the string representation
func ( s ApplicationResourceLifecycleConfig ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ApplicationResourceLifecycleConfig ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ApplicationResourceLifecycleConfig ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ApplicationResourceLifecycleConfig" }
if s . VersionLifecycleConfig != nil {
if err := s . VersionLifecycleConfig . Validate ( ) ; err != nil {
invalidParams . AddNested ( "VersionLifecycleConfig" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetServiceRole sets the ServiceRole field's value.
func ( s * ApplicationResourceLifecycleConfig ) SetServiceRole ( v string ) * ApplicationResourceLifecycleConfig {
s . ServiceRole = & v
return s
}
// SetVersionLifecycleConfig sets the VersionLifecycleConfig field's value.
func ( s * ApplicationResourceLifecycleConfig ) SetVersionLifecycleConfig ( v * ApplicationVersionLifecycleConfig ) * ApplicationResourceLifecycleConfig {
s . VersionLifecycleConfig = v
return s
}
2016-03-07 21:42:30 +01:00
// Describes the properties of an application version.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplicationVersionDescription
2016-03-07 21:42:30 +01:00
type ApplicationVersionDescription struct {
_ struct { } ` type:"structure" `
2016-12-02 15:37:53 +01:00
// The name of the application to which the application version belongs.
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" `
2016-12-15 16:18:11 +01:00
// Reference to the artifact from the AWS CodeBuild build.
2016-12-02 15:37:53 +01:00
BuildArn * string ` type:"string" `
2016-03-07 21:42:30 +01:00
// The creation date of the application version.
DateCreated * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// The last modified date of the application version.
DateUpdated * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
2016-12-02 15:37:53 +01:00
// The description of the application version.
2016-03-07 21:42:30 +01:00
Description * string ` type:"string" `
2016-12-02 15:37:53 +01:00
// If the version's source code was retrieved from AWS CodeCommit, the location
// of the source code for the application version.
2016-10-17 23:21:08 +02:00
SourceBuildInformation * SourceBuildInformation ` type:"structure" `
2016-12-02 15:37:53 +01:00
// The storage location of the application version's source bundle in Amazon
// S3.
2016-03-07 21:42:30 +01:00
SourceBundle * S3Location ` type:"structure" `
// The processing status of the application version.
Status * string ` type:"string" enum:"ApplicationVersionStatus" `
2016-12-02 15:37:53 +01:00
// A unique identifier for the application version.
2016-03-07 21:42:30 +01:00
VersionLabel * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s ApplicationVersionDescription ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ApplicationVersionDescription ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * ApplicationVersionDescription ) SetApplicationName ( v string ) * ApplicationVersionDescription {
s . ApplicationName = & v
return s
}
2016-12-02 15:37:53 +01:00
// SetBuildArn sets the BuildArn field's value.
func ( s * ApplicationVersionDescription ) SetBuildArn ( v string ) * ApplicationVersionDescription {
s . BuildArn = & v
return s
}
2016-11-19 19:41:01 +01:00
// SetDateCreated sets the DateCreated field's value.
func ( s * ApplicationVersionDescription ) SetDateCreated ( v time . Time ) * ApplicationVersionDescription {
s . DateCreated = & v
return s
}
// SetDateUpdated sets the DateUpdated field's value.
func ( s * ApplicationVersionDescription ) SetDateUpdated ( v time . Time ) * ApplicationVersionDescription {
s . DateUpdated = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * ApplicationVersionDescription ) SetDescription ( v string ) * ApplicationVersionDescription {
s . Description = & v
return s
}
// SetSourceBuildInformation sets the SourceBuildInformation field's value.
func ( s * ApplicationVersionDescription ) SetSourceBuildInformation ( v * SourceBuildInformation ) * ApplicationVersionDescription {
s . SourceBuildInformation = v
return s
}
// SetSourceBundle sets the SourceBundle field's value.
func ( s * ApplicationVersionDescription ) SetSourceBundle ( v * S3Location ) * ApplicationVersionDescription {
s . SourceBundle = v
return s
}
// SetStatus sets the Status field's value.
func ( s * ApplicationVersionDescription ) SetStatus ( v string ) * ApplicationVersionDescription {
s . Status = & v
return s
}
// SetVersionLabel sets the VersionLabel field's value.
func ( s * ApplicationVersionDescription ) SetVersionLabel ( v string ) * ApplicationVersionDescription {
s . VersionLabel = & v
return s
}
2016-03-07 21:42:30 +01:00
// Result message wrapping a single description of an application version.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplicationVersionDescriptionMessage
2016-03-07 21:42:30 +01:00
type ApplicationVersionDescriptionMessage struct {
_ struct { } ` type:"structure" `
// The ApplicationVersionDescription of the application version.
ApplicationVersion * ApplicationVersionDescription ` type:"structure" `
}
// String returns the string representation
func ( s ApplicationVersionDescriptionMessage ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ApplicationVersionDescriptionMessage ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetApplicationVersion sets the ApplicationVersion field's value.
func ( s * ApplicationVersionDescriptionMessage ) SetApplicationVersion ( v * ApplicationVersionDescription ) * ApplicationVersionDescriptionMessage {
s . ApplicationVersion = v
return s
}
2017-01-02 21:35:31 +01:00
// The application version lifecycle settings for an application. Defines the
// rules that Elastic Beanstalk applies to an application's versions in order
// to avoid hitting the per-region limit for application versions.
//
// When Elastic Beanstalk deletes an application version from its database,
// you can no longer deploy that version to an environment. The source bundle
// remains in S3 unless you configure the rule to delete it.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplicationVersionLifecycleConfig
type ApplicationVersionLifecycleConfig struct {
_ struct { } ` type:"structure" `
// Specify a max age rule to restrict the length of time that application versions
// are retained for an application.
MaxAgeRule * MaxAgeRule ` type:"structure" `
// Specify a max count rule to restrict the number of application versions that
// are retained for an application.
MaxCountRule * MaxCountRule ` type:"structure" `
}
// String returns the string representation
func ( s ApplicationVersionLifecycleConfig ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ApplicationVersionLifecycleConfig ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ApplicationVersionLifecycleConfig ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ApplicationVersionLifecycleConfig" }
if s . MaxAgeRule != nil {
if err := s . MaxAgeRule . Validate ( ) ; err != nil {
invalidParams . AddNested ( "MaxAgeRule" , err . ( request . ErrInvalidParams ) )
}
}
if s . MaxCountRule != nil {
if err := s . MaxCountRule . Validate ( ) ; err != nil {
invalidParams . AddNested ( "MaxCountRule" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetMaxAgeRule sets the MaxAgeRule field's value.
func ( s * ApplicationVersionLifecycleConfig ) SetMaxAgeRule ( v * MaxAgeRule ) * ApplicationVersionLifecycleConfig {
s . MaxAgeRule = v
return s
}
// SetMaxCountRule sets the MaxCountRule field's value.
func ( s * ApplicationVersionLifecycleConfig ) SetMaxCountRule ( v * MaxCountRule ) * ApplicationVersionLifecycleConfig {
s . MaxCountRule = v
return s
}
2016-05-05 03:06:27 +02:00
// Request to execute a scheduled managed action immediately.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplyEnvironmentManagedActionRequest
2016-05-05 03:06:27 +02:00
type ApplyEnvironmentManagedActionInput struct {
_ struct { } ` type:"structure" `
// The action ID of the scheduled managed action to execute.
2016-10-17 23:21:08 +02:00
//
// ActionId is a required field
2016-05-05 03:06:27 +02:00
ActionId * string ` type:"string" required:"true" `
// The environment ID of the target environment.
EnvironmentId * string ` type:"string" `
// The name of the target environment.
EnvironmentName * string ` type:"string" `
}
// String returns the string representation
func ( s ApplyEnvironmentManagedActionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ApplyEnvironmentManagedActionInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ApplyEnvironmentManagedActionInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ApplyEnvironmentManagedActionInput" }
if s . ActionId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ActionId" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetActionId sets the ActionId field's value.
func ( s * ApplyEnvironmentManagedActionInput ) SetActionId ( v string ) * ApplyEnvironmentManagedActionInput {
s . ActionId = & v
return s
}
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * ApplyEnvironmentManagedActionInput ) SetEnvironmentId ( v string ) * ApplyEnvironmentManagedActionInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * ApplyEnvironmentManagedActionInput ) SetEnvironmentName ( v string ) * ApplyEnvironmentManagedActionInput {
s . EnvironmentName = & v
return s
}
2016-05-05 03:06:27 +02:00
// The result message containing information about the managed action.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplyEnvironmentManagedActionResult
2016-05-05 03:06:27 +02:00
type ApplyEnvironmentManagedActionOutput struct {
_ struct { } ` type:"structure" `
// A description of the managed action.
ActionDescription * string ` type:"string" `
// The action ID of the managed action.
ActionId * string ` type:"string" `
// The type of managed action.
ActionType * string ` type:"string" enum:"ActionType" `
// The status of the managed action.
Status * string ` type:"string" `
}
// String returns the string representation
func ( s ApplyEnvironmentManagedActionOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ApplyEnvironmentManagedActionOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetActionDescription sets the ActionDescription field's value.
func ( s * ApplyEnvironmentManagedActionOutput ) SetActionDescription ( v string ) * ApplyEnvironmentManagedActionOutput {
s . ActionDescription = & v
return s
}
// SetActionId sets the ActionId field's value.
func ( s * ApplyEnvironmentManagedActionOutput ) SetActionId ( v string ) * ApplyEnvironmentManagedActionOutput {
s . ActionId = & v
return s
}
// SetActionType sets the ActionType field's value.
func ( s * ApplyEnvironmentManagedActionOutput ) SetActionType ( v string ) * ApplyEnvironmentManagedActionOutput {
s . ActionType = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * ApplyEnvironmentManagedActionOutput ) SetStatus ( v string ) * ApplyEnvironmentManagedActionOutput {
s . Status = & v
return s
}
2016-03-07 21:42:30 +01:00
// Describes an Auto Scaling launch configuration.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/AutoScalingGroup
2016-03-07 21:42:30 +01:00
type AutoScalingGroup struct {
_ struct { } ` type:"structure" `
// The name of the AutoScalingGroup .
Name * string ` type:"string" `
}
// String returns the string representation
func ( s AutoScalingGroup ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s AutoScalingGroup ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetName sets the Name field's value.
func ( s * AutoScalingGroup ) SetName ( v string ) * AutoScalingGroup {
s . Name = & v
return s
}
2016-12-15 16:18:11 +01:00
// Settings for an AWS CodeBuild build.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/BuildConfiguration
2016-12-02 15:37:53 +01:00
type BuildConfiguration struct {
_ struct { } ` type:"structure" `
2016-12-15 16:18:11 +01:00
// The name of the artifact of the CodeBuild build. If provided, Elastic Beanstalk
// stores the build artifact in the S3 location S3-bucket/resources/application-name/codebuild/codebuild-version-label-artifact-name.zip.
// If not provided, Elastic Beanstalk stores the build artifact in the S3 location
// S3-bucket/resources/application-name/codebuild/codebuild-version-label.zip.
2016-12-02 15:37:53 +01:00
ArtifactName * string ` type:"string" `
2016-12-15 16:18:11 +01:00
// The Amazon Resource Name (ARN) of the AWS Identity and Access Management
// (IAM) role that enables AWS CodeBuild to interact with dependent AWS services
// on behalf of the AWS account.
//
2016-12-02 15:37:53 +01:00
// CodeBuildServiceRole is a required field
CodeBuildServiceRole * string ` type:"string" required:"true" `
2016-12-15 16:18:11 +01:00
// Information about the compute resources the build project will use.
//
// * BUILD_GENERAL1_SMALL: Use up to 3 GB memory and 2 vCPUs for builds
//
// * BUILD_GENERAL1_MEDIUM: Use up to 7 GB memory and 4 vCPUs for builds
//
// * BUILD_GENERAL1_LARGE: Use up to 15 GB memory and 8 vCPUs for builds
2016-12-02 15:37:53 +01:00
ComputeType * string ` type:"string" enum:"ComputeType" `
2016-12-15 16:18:11 +01:00
// The ID of the Docker image to use for this build project.
//
2016-12-02 15:37:53 +01:00
// Image is a required field
Image * string ` type:"string" required:"true" `
2016-12-15 16:18:11 +01:00
// How long in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait until
// timing out any related build that does not get marked as completed. The default
// is 60 minutes.
2016-12-02 15:37:53 +01:00
TimeoutInMinutes * int64 ` type:"integer" `
}
// String returns the string representation
func ( s BuildConfiguration ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s BuildConfiguration ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * BuildConfiguration ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "BuildConfiguration" }
if s . CodeBuildServiceRole == nil {
invalidParams . Add ( request . NewErrParamRequired ( "CodeBuildServiceRole" ) )
}
if s . Image == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Image" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetArtifactName sets the ArtifactName field's value.
func ( s * BuildConfiguration ) SetArtifactName ( v string ) * BuildConfiguration {
s . ArtifactName = & v
return s
}
// SetCodeBuildServiceRole sets the CodeBuildServiceRole field's value.
func ( s * BuildConfiguration ) SetCodeBuildServiceRole ( v string ) * BuildConfiguration {
s . CodeBuildServiceRole = & v
return s
}
// SetComputeType sets the ComputeType field's value.
func ( s * BuildConfiguration ) SetComputeType ( v string ) * BuildConfiguration {
s . ComputeType = & v
return s
}
// SetImage sets the Image field's value.
func ( s * BuildConfiguration ) SetImage ( v string ) * BuildConfiguration {
s . Image = & v
return s
}
// SetTimeoutInMinutes sets the TimeoutInMinutes field's value.
func ( s * BuildConfiguration ) SetTimeoutInMinutes ( v int64 ) * BuildConfiguration {
s . TimeoutInMinutes = & v
return s
}
2017-03-03 19:48:24 +01:00
// The builder used to build the custom platform.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/Builder
type Builder struct {
_ struct { } ` type:"structure" `
// The ARN of the builder.
ARN * string ` type:"string" `
}
// String returns the string representation
func ( s Builder ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Builder ) GoString ( ) string {
return s . String ( )
}
// SetARN sets the ARN field's value.
func ( s * Builder ) SetARN ( v string ) * Builder {
s . ARN = & v
return s
}
2016-12-02 15:37:53 +01:00
// CPU utilization metrics for an instance.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CPUUtilization
2016-03-07 21:42:30 +01:00
type CPUUtilization struct {
_ struct { } ` type:"structure" `
// Percentage of time that the CPU has spent in the I/O Wait state over the
// last 10 seconds.
IOWait * float64 ` type:"double" `
// Percentage of time that the CPU has spent in the IRQ state over the last
// 10 seconds.
IRQ * float64 ` type:"double" `
// Percentage of time that the CPU has spent in the Idle state over the last
// 10 seconds.
Idle * float64 ` type:"double" `
// Percentage of time that the CPU has spent in the Nice state over the last
// 10 seconds.
Nice * float64 ` type:"double" `
// Percentage of time that the CPU has spent in the SoftIRQ state over the last
// 10 seconds.
SoftIRQ * float64 ` type:"double" `
// Percentage of time that the CPU has spent in the System state over the last
// 10 seconds.
System * float64 ` type:"double" `
// Percentage of time that the CPU has spent in the User state over the last
// 10 seconds.
User * float64 ` type:"double" `
}
// String returns the string representation
func ( s CPUUtilization ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CPUUtilization ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetIOWait sets the IOWait field's value.
func ( s * CPUUtilization ) SetIOWait ( v float64 ) * CPUUtilization {
s . IOWait = & v
return s
}
// SetIRQ sets the IRQ field's value.
func ( s * CPUUtilization ) SetIRQ ( v float64 ) * CPUUtilization {
s . IRQ = & v
return s
}
// SetIdle sets the Idle field's value.
func ( s * CPUUtilization ) SetIdle ( v float64 ) * CPUUtilization {
s . Idle = & v
return s
}
// SetNice sets the Nice field's value.
func ( s * CPUUtilization ) SetNice ( v float64 ) * CPUUtilization {
s . Nice = & v
return s
}
// SetSoftIRQ sets the SoftIRQ field's value.
func ( s * CPUUtilization ) SetSoftIRQ ( v float64 ) * CPUUtilization {
s . SoftIRQ = & v
return s
}
// SetSystem sets the System field's value.
func ( s * CPUUtilization ) SetSystem ( v float64 ) * CPUUtilization {
s . System = & v
return s
}
// SetUser sets the User field's value.
func ( s * CPUUtilization ) SetUser ( v float64 ) * CPUUtilization {
s . User = & v
return s
}
2016-03-07 21:42:30 +01:00
// Results message indicating whether a CNAME is available.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CheckDNSAvailabilityMessage
2016-03-07 21:42:30 +01:00
type CheckDNSAvailabilityInput struct {
_ struct { } ` type:"structure" `
// The prefix used when this CNAME is reserved.
2016-10-17 23:21:08 +02:00
//
// CNAMEPrefix is a required field
2016-03-07 21:42:30 +01:00
CNAMEPrefix * string ` min:"4" type:"string" required:"true" `
}
// String returns the string representation
func ( s CheckDNSAvailabilityInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CheckDNSAvailabilityInput ) 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 * CheckDNSAvailabilityInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CheckDNSAvailabilityInput" }
if s . CNAMEPrefix == nil {
invalidParams . Add ( request . NewErrParamRequired ( "CNAMEPrefix" ) )
}
if s . CNAMEPrefix != nil && len ( * s . CNAMEPrefix ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "CNAMEPrefix" , 4 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCNAMEPrefix sets the CNAMEPrefix field's value.
func ( s * CheckDNSAvailabilityInput ) SetCNAMEPrefix ( v string ) * CheckDNSAvailabilityInput {
s . CNAMEPrefix = & v
return s
}
2016-03-07 21:42:30 +01:00
// Indicates if the specified CNAME is available.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CheckDNSAvailabilityResultMessage
2016-03-07 21:42:30 +01:00
type CheckDNSAvailabilityOutput struct {
_ struct { } ` type:"structure" `
// Indicates if the specified CNAME is available:
//
2016-11-19 19:41:01 +01:00
// * true : The CNAME is available.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * false : The CNAME is not available.
2016-03-07 21:42:30 +01:00
Available * bool ` type:"boolean" `
// The fully qualified CNAME to reserve when CreateEnvironment is called with
// the provided prefix.
FullyQualifiedCNAME * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s CheckDNSAvailabilityOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CheckDNSAvailabilityOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetAvailable sets the Available field's value.
func ( s * CheckDNSAvailabilityOutput ) SetAvailable ( v bool ) * CheckDNSAvailabilityOutput {
s . Available = & v
return s
}
// SetFullyQualifiedCNAME sets the FullyQualifiedCNAME field's value.
func ( s * CheckDNSAvailabilityOutput ) SetFullyQualifiedCNAME ( v string ) * CheckDNSAvailabilityOutput {
s . FullyQualifiedCNAME = & v
return s
}
2016-03-24 23:52:51 +01:00
// Request to create or update a group of environments.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ComposeEnvironmentsMessage
2016-03-07 21:42:30 +01:00
type ComposeEnvironmentsInput struct {
_ struct { } ` type:"structure" `
// The name of the application to which the specified source bundles belong.
ApplicationName * string ` min:"1" type:"string" `
// The name of the group to which the target environments belong. Specify a
// group name only if the environment name defined in each target environment's
// manifest ends with a + (plus) character. See Environment Manifest (env.yaml)
2016-03-24 23:52:51 +01:00
// (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html)
2016-03-07 21:42:30 +01:00
// for details.
GroupName * string ` min:"1" type:"string" `
// A list of version labels, specifying one or more application source bundles
// that belong to the target application. Each source bundle must include an
// environment manifest that specifies the name of the environment and the name
// of the solution stack to use, and optionally can specify environment links
// to create.
VersionLabels [ ] * string ` type:"list" `
}
// String returns the string representation
func ( s ComposeEnvironmentsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ComposeEnvironmentsInput ) 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 * ComposeEnvironmentsInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ComposeEnvironmentsInput" }
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . GroupName != nil && len ( * s . GroupName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "GroupName" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * ComposeEnvironmentsInput ) SetApplicationName ( v string ) * ComposeEnvironmentsInput {
s . ApplicationName = & v
return s
}
// SetGroupName sets the GroupName field's value.
func ( s * ComposeEnvironmentsInput ) SetGroupName ( v string ) * ComposeEnvironmentsInput {
s . GroupName = & v
return s
}
// SetVersionLabels sets the VersionLabels field's value.
func ( s * ComposeEnvironmentsInput ) SetVersionLabels ( v [ ] * string ) * ComposeEnvironmentsInput {
s . VersionLabels = v
return s
}
2016-03-07 21:42:30 +01:00
// Describes the possible values for a configuration option.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ConfigurationOptionDescription
2016-03-07 21:42:30 +01:00
type ConfigurationOptionDescription struct {
_ struct { } ` type:"structure" `
// An indication of which action is required if the value for this configuration
// option changes:
//
2016-11-19 19:41:01 +01:00
// * NoInterruption : There is no interruption to the environment or application
// availability.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * RestartEnvironment : The environment is entirely restarted, all AWS
// resources are deleted and recreated, and the environment is unavailable
// during the process.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * RestartApplicationServer : The environment is available the entire time.
// However, a short application outage occurs when the application servers
// on the running Amazon EC2 instances are restarted.
2016-03-07 21:42:30 +01:00
ChangeSeverity * string ` type:"string" `
// The default value for this configuration option.
DefaultValue * string ` type:"string" `
// If specified, the configuration option must be a string value no longer than
// this value.
MaxLength * int64 ` type:"integer" `
// If specified, the configuration option must be a numeric value less than
// this value.
MaxValue * int64 ` type:"integer" `
// If specified, the configuration option must be a numeric value greater than
// this value.
MinValue * int64 ` type:"integer" `
// The name of the configuration option.
Name * string ` type:"string" `
// A unique namespace identifying the option's associated AWS resource.
Namespace * string ` type:"string" `
// If specified, the configuration option must be a string value that satisfies
// this regular expression.
Regex * OptionRestrictionRegex ` type:"structure" `
// An indication of whether the user defined this configuration option:
//
2016-11-19 19:41:01 +01:00
// * true : This configuration option was defined by the user. It is a valid
// choice for specifying if this as an Option to Remove when updating configuration
// settings.
2016-03-07 21:42:30 +01:00
//
2016-11-19 19:41:01 +01:00
// * false : This configuration was not defined by the user.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// Constraint: You can remove only UserDefined options from a configuration.
2016-03-07 21:42:30 +01:00
//
2016-11-19 19:41:01 +01:00
// Valid Values: true | false
2016-03-07 21:42:30 +01:00
UserDefined * bool ` type:"boolean" `
// If specified, values for the configuration option are selected from this
// list.
ValueOptions [ ] * string ` type:"list" `
// An indication of which type of values this option has and whether it is allowable
// to select one or more than one of the possible values:
//
2016-11-19 19:41:01 +01:00
// * Scalar : Values for this option are a single selection from the possible
// values, or an unformatted string, or numeric value governed by the MIN/MAX/Regex
// constraints.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * List : Values for this option are multiple selections from the possible
// values.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * Boolean : Values for this option are either true or false .
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * Json : Values for this option are a JSON representation of a ConfigDocument.
2016-03-07 21:42:30 +01:00
ValueType * string ` type:"string" enum:"ConfigurationOptionValueType" `
}
// String returns the string representation
func ( s ConfigurationOptionDescription ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ConfigurationOptionDescription ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetChangeSeverity sets the ChangeSeverity field's value.
func ( s * ConfigurationOptionDescription ) SetChangeSeverity ( v string ) * ConfigurationOptionDescription {
s . ChangeSeverity = & v
return s
}
// SetDefaultValue sets the DefaultValue field's value.
func ( s * ConfigurationOptionDescription ) SetDefaultValue ( v string ) * ConfigurationOptionDescription {
s . DefaultValue = & v
return s
}
// SetMaxLength sets the MaxLength field's value.
func ( s * ConfigurationOptionDescription ) SetMaxLength ( v int64 ) * ConfigurationOptionDescription {
s . MaxLength = & v
return s
}
// SetMaxValue sets the MaxValue field's value.
func ( s * ConfigurationOptionDescription ) SetMaxValue ( v int64 ) * ConfigurationOptionDescription {
s . MaxValue = & v
return s
}
// SetMinValue sets the MinValue field's value.
func ( s * ConfigurationOptionDescription ) SetMinValue ( v int64 ) * ConfigurationOptionDescription {
s . MinValue = & v
return s
}
// SetName sets the Name field's value.
func ( s * ConfigurationOptionDescription ) SetName ( v string ) * ConfigurationOptionDescription {
s . Name = & v
return s
}
// SetNamespace sets the Namespace field's value.
func ( s * ConfigurationOptionDescription ) SetNamespace ( v string ) * ConfigurationOptionDescription {
s . Namespace = & v
return s
}
// SetRegex sets the Regex field's value.
func ( s * ConfigurationOptionDescription ) SetRegex ( v * OptionRestrictionRegex ) * ConfigurationOptionDescription {
s . Regex = v
return s
}
// SetUserDefined sets the UserDefined field's value.
func ( s * ConfigurationOptionDescription ) SetUserDefined ( v bool ) * ConfigurationOptionDescription {
s . UserDefined = & v
return s
}
// SetValueOptions sets the ValueOptions field's value.
func ( s * ConfigurationOptionDescription ) SetValueOptions ( v [ ] * string ) * ConfigurationOptionDescription {
s . ValueOptions = v
return s
}
// SetValueType sets the ValueType field's value.
func ( s * ConfigurationOptionDescription ) SetValueType ( v string ) * ConfigurationOptionDescription {
s . ValueType = & v
return s
}
2016-03-07 21:42:30 +01:00
// A specification identifying an individual configuration option along with
// its current value. For a list of possible option values, go to Option Values
// (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html)
// in the AWS Elastic Beanstalk Developer Guide.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ConfigurationOptionSetting
2016-03-07 21:42:30 +01:00
type ConfigurationOptionSetting struct {
_ struct { } ` type:"structure" `
// A unique namespace identifying the option's associated AWS resource.
Namespace * string ` type:"string" `
// The name of the configuration option.
OptionName * string ` type:"string" `
// A unique resource name for a time-based scaling configuration option.
ResourceName * string ` min:"1" type:"string" `
// The current value for the configuration option.
Value * string ` type:"string" `
}
// String returns the string representation
func ( s ConfigurationOptionSetting ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ConfigurationOptionSetting ) 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 * ConfigurationOptionSetting ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ConfigurationOptionSetting" }
if s . ResourceName != nil && len ( * s . ResourceName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ResourceName" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetNamespace sets the Namespace field's value.
func ( s * ConfigurationOptionSetting ) SetNamespace ( v string ) * ConfigurationOptionSetting {
s . Namespace = & v
return s
}
// SetOptionName sets the OptionName field's value.
func ( s * ConfigurationOptionSetting ) SetOptionName ( v string ) * ConfigurationOptionSetting {
s . OptionName = & v
return s
}
// SetResourceName sets the ResourceName field's value.
func ( s * ConfigurationOptionSetting ) SetResourceName ( v string ) * ConfigurationOptionSetting {
s . ResourceName = & v
return s
}
// SetValue sets the Value field's value.
func ( s * ConfigurationOptionSetting ) SetValue ( v string ) * ConfigurationOptionSetting {
s . Value = & v
return s
}
2016-03-07 21:42:30 +01:00
// Describes the settings for a configuration set.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ConfigurationSettingsDescription
2016-03-07 21:42:30 +01:00
type ConfigurationSettingsDescription struct {
_ struct { } ` type:"structure" `
// The name of the application associated with this configuration set.
ApplicationName * string ` min:"1" type:"string" `
// The date (in UTC time) when this configuration set was created.
DateCreated * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// The date (in UTC time) when this configuration set was last modified.
DateUpdated * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// If this configuration set is associated with an environment, the DeploymentStatus
// parameter indicates the deployment status of this configuration set:
//
2016-11-19 19:41:01 +01:00
// * null: This configuration is not associated with a running environment.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * pending: This is a draft configuration that is not deployed to the associated
// environment but is in the process of deploying.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * deployed: This is the configuration that is currently deployed to the
// associated running environment.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * failed: This is a draft configuration that failed to successfully deploy.
2016-03-07 21:42:30 +01:00
DeploymentStatus * string ` type:"string" enum:"ConfigurationDeploymentStatus" `
// Describes this configuration set.
Description * string ` type:"string" `
// If not null, the name of the environment for this configuration set.
EnvironmentName * string ` min:"4" type:"string" `
// A list of the configuration options and their values in this configuration
// set.
OptionSettings [ ] * ConfigurationOptionSetting ` type:"list" `
2017-03-03 19:48:24 +01:00
// The ARN of the custom platform.
PlatformArn * string ` type:"string" `
2016-03-07 21:42:30 +01:00
// The name of the solution stack this configuration set uses.
SolutionStackName * string ` type:"string" `
// If not null, the name of the configuration template for this configuration
// set.
TemplateName * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s ConfigurationSettingsDescription ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ConfigurationSettingsDescription ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * ConfigurationSettingsDescription ) SetApplicationName ( v string ) * ConfigurationSettingsDescription {
s . ApplicationName = & v
return s
}
// SetDateCreated sets the DateCreated field's value.
func ( s * ConfigurationSettingsDescription ) SetDateCreated ( v time . Time ) * ConfigurationSettingsDescription {
s . DateCreated = & v
return s
}
// SetDateUpdated sets the DateUpdated field's value.
func ( s * ConfigurationSettingsDescription ) SetDateUpdated ( v time . Time ) * ConfigurationSettingsDescription {
s . DateUpdated = & v
return s
}
// SetDeploymentStatus sets the DeploymentStatus field's value.
func ( s * ConfigurationSettingsDescription ) SetDeploymentStatus ( v string ) * ConfigurationSettingsDescription {
s . DeploymentStatus = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * ConfigurationSettingsDescription ) SetDescription ( v string ) * ConfigurationSettingsDescription {
s . Description = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * ConfigurationSettingsDescription ) SetEnvironmentName ( v string ) * ConfigurationSettingsDescription {
s . EnvironmentName = & v
return s
}
// SetOptionSettings sets the OptionSettings field's value.
func ( s * ConfigurationSettingsDescription ) SetOptionSettings ( v [ ] * ConfigurationOptionSetting ) * ConfigurationSettingsDescription {
s . OptionSettings = v
return s
}
2017-03-03 19:48:24 +01:00
// SetPlatformArn sets the PlatformArn field's value.
func ( s * ConfigurationSettingsDescription ) SetPlatformArn ( v string ) * ConfigurationSettingsDescription {
s . PlatformArn = & v
return s
}
2016-11-19 19:41:01 +01:00
// SetSolutionStackName sets the SolutionStackName field's value.
func ( s * ConfigurationSettingsDescription ) SetSolutionStackName ( v string ) * ConfigurationSettingsDescription {
s . SolutionStackName = & v
return s
}
// SetTemplateName sets the TemplateName field's value.
func ( s * ConfigurationSettingsDescription ) SetTemplateName ( v string ) * ConfigurationSettingsDescription {
s . TemplateName = & v
return s
}
2016-03-24 23:52:51 +01:00
// Request to create an application.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateApplicationMessage
2016-03-07 21:42:30 +01:00
type CreateApplicationInput struct {
_ struct { } ` type:"structure" `
// The name of the application.
//
2016-03-24 23:52:51 +01:00
// Constraint: This name must be unique within your account. If the specified
2016-03-07 21:42:30 +01:00
// name already exists, the action returns an InvalidParameterValue error.
2016-10-17 23:21:08 +02:00
//
// ApplicationName is a required field
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" required:"true" `
// Describes the application.
Description * string ` type:"string" `
2017-01-02 21:35:31 +01:00
// Specify an application resource lifecycle configuration to prevent your application
// from accumulating too many versions.
ResourceLifecycleConfig * ApplicationResourceLifecycleConfig ` type:"structure" `
2016-03-07 21:42:30 +01:00
}
// String returns the string representation
func ( s CreateApplicationInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateApplicationInput ) 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 * CreateApplicationInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreateApplicationInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
2017-01-02 21:35:31 +01:00
if s . ResourceLifecycleConfig != nil {
if err := s . ResourceLifecycleConfig . Validate ( ) ; err != nil {
invalidParams . AddNested ( "ResourceLifecycleConfig" , err . ( request . ErrInvalidParams ) )
}
}
2016-05-05 03:06:27 +02:00
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * CreateApplicationInput ) SetApplicationName ( v string ) * CreateApplicationInput {
s . ApplicationName = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * CreateApplicationInput ) SetDescription ( v string ) * CreateApplicationInput {
s . Description = & v
return s
}
2017-01-02 21:35:31 +01:00
// SetResourceLifecycleConfig sets the ResourceLifecycleConfig field's value.
func ( s * CreateApplicationInput ) SetResourceLifecycleConfig ( v * ApplicationResourceLifecycleConfig ) * CreateApplicationInput {
s . ResourceLifecycleConfig = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateApplicationVersionMessage
2016-03-07 21:42:30 +01:00
type CreateApplicationVersionInput struct {
_ struct { } ` type:"structure" `
// The name of the application. If no application is found with this name, and
// AutoCreateApplication is false, returns an InvalidParameterValue error.
2016-10-17 23:21:08 +02:00
//
// ApplicationName is a required field
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" required:"true" `
2016-12-02 15:37:53 +01:00
// Set to true to create an application with the specified name if it doesn't
// already exist.
2016-03-07 21:42:30 +01:00
AutoCreateApplication * bool ` type:"boolean" `
2016-12-15 16:18:11 +01:00
// Settings for an AWS CodeBuild build.
2016-12-02 15:37:53 +01:00
BuildConfiguration * BuildConfiguration ` type:"structure" `
2016-03-07 21:42:30 +01:00
// Describes this version.
Description * string ` type:"string" `
// Preprocesses and validates the environment manifest and configuration files
// in the source bundle. Validating configuration files can identify issues
// prior to deploying the application version to an environment.
Process * bool ` type:"boolean" `
2016-12-02 15:37:53 +01:00
// Specify a commit in an AWS CodeCommit Git repository to use as the source
// code for the application version.
2016-10-17 23:21:08 +02:00
SourceBuildInformation * SourceBuildInformation ` type:"structure" `
2016-03-07 21:42:30 +01:00
// The Amazon S3 bucket and key that identify the location of the source bundle
// for this version.
//
2016-12-15 16:18:11 +01:00
// The Amazon S3 bucket must be in the same region as the environment.
//
2016-12-02 15:37:53 +01:00
// Specify a source bundle in S3 or a commit in an AWS CodeCommit repository
// (with SourceBuildInformation), but not both. If neither SourceBundle nor
// SourceBuildInformation are provided, Elastic Beanstalk uses a sample application.
2016-03-07 21:42:30 +01:00
SourceBundle * S3Location ` type:"structure" `
// A label identifying this version.
//
// Constraint: Must be unique per application. If an application version already
// exists with this label for the specified application, AWS Elastic Beanstalk
// returns an InvalidParameterValue error.
2016-10-17 23:21:08 +02:00
//
// VersionLabel is a required field
2016-03-07 21:42:30 +01:00
VersionLabel * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s CreateApplicationVersionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateApplicationVersionInput ) 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 * CreateApplicationVersionInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreateApplicationVersionInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . VersionLabel == nil {
invalidParams . Add ( request . NewErrParamRequired ( "VersionLabel" ) )
}
if s . VersionLabel != nil && len ( * s . VersionLabel ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "VersionLabel" , 1 ) )
}
2016-12-02 15:37:53 +01:00
if s . BuildConfiguration != nil {
if err := s . BuildConfiguration . Validate ( ) ; err != nil {
invalidParams . AddNested ( "BuildConfiguration" , err . ( request . ErrInvalidParams ) )
}
}
2016-10-17 23:21:08 +02:00
if s . SourceBuildInformation != nil {
if err := s . SourceBuildInformation . Validate ( ) ; err != nil {
invalidParams . AddNested ( "SourceBuildInformation" , err . ( request . ErrInvalidParams ) )
}
}
2016-05-05 03:06:27 +02:00
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * CreateApplicationVersionInput ) SetApplicationName ( v string ) * CreateApplicationVersionInput {
s . ApplicationName = & v
return s
}
// SetAutoCreateApplication sets the AutoCreateApplication field's value.
func ( s * CreateApplicationVersionInput ) SetAutoCreateApplication ( v bool ) * CreateApplicationVersionInput {
s . AutoCreateApplication = & v
return s
}
2016-12-02 15:37:53 +01:00
// SetBuildConfiguration sets the BuildConfiguration field's value.
func ( s * CreateApplicationVersionInput ) SetBuildConfiguration ( v * BuildConfiguration ) * CreateApplicationVersionInput {
s . BuildConfiguration = v
return s
}
2016-11-19 19:41:01 +01:00
// SetDescription sets the Description field's value.
func ( s * CreateApplicationVersionInput ) SetDescription ( v string ) * CreateApplicationVersionInput {
s . Description = & v
return s
}
// SetProcess sets the Process field's value.
func ( s * CreateApplicationVersionInput ) SetProcess ( v bool ) * CreateApplicationVersionInput {
s . Process = & v
return s
}
// SetSourceBuildInformation sets the SourceBuildInformation field's value.
func ( s * CreateApplicationVersionInput ) SetSourceBuildInformation ( v * SourceBuildInformation ) * CreateApplicationVersionInput {
s . SourceBuildInformation = v
return s
}
// SetSourceBundle sets the SourceBundle field's value.
func ( s * CreateApplicationVersionInput ) SetSourceBundle ( v * S3Location ) * CreateApplicationVersionInput {
s . SourceBundle = v
return s
}
// SetVersionLabel sets the VersionLabel field's value.
func ( s * CreateApplicationVersionInput ) SetVersionLabel ( v string ) * CreateApplicationVersionInput {
s . VersionLabel = & v
return s
}
2016-03-24 23:52:51 +01:00
// Request to create a configuration template.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateConfigurationTemplateMessage
2016-03-07 21:42:30 +01:00
type CreateConfigurationTemplateInput struct {
_ struct { } ` type:"structure" `
// The name of the application to associate with this configuration template.
// If no application is found with this name, AWS Elastic Beanstalk returns
// an InvalidParameterValue error.
2016-10-17 23:21:08 +02:00
//
// ApplicationName is a required field
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" required:"true" `
// Describes this configuration.
Description * string ` type:"string" `
// The ID of the environment used with this configuration template.
EnvironmentId * string ` type:"string" `
// If specified, AWS Elastic Beanstalk sets the specified configuration option
// to the requested value. The new value overrides the value obtained from the
// solution stack or the source configuration template.
OptionSettings [ ] * ConfigurationOptionSetting ` type:"list" `
2017-03-03 19:48:24 +01:00
// The ARN of the custome platform.
PlatformArn * string ` type:"string" `
2016-03-07 21:42:30 +01:00
// The name of the solution stack used by this configuration. The solution stack
// specifies the operating system, architecture, and application server for
// a configuration template. It determines the set of configuration options
// as well as the possible and default values.
//
2016-11-19 19:41:01 +01:00
// Use ListAvailableSolutionStacks to obtain a list of available solution stacks.
2016-03-07 21:42:30 +01:00
//
2016-11-19 19:41:01 +01:00
// A solution stack name or a source configuration parameter must be specified,
2016-03-07 21:42:30 +01:00
// otherwise AWS Elastic Beanstalk returns an InvalidParameterValue error.
//
2016-10-17 23:21:08 +02:00
// If a solution stack name is not specified and the source configuration parameter
// is specified, AWS Elastic Beanstalk uses the same solution stack as the source
// configuration template.
2016-03-07 21:42:30 +01:00
SolutionStackName * string ` type:"string" `
// If specified, AWS Elastic Beanstalk uses the configuration values from the
// specified configuration template to create a new configuration.
//
2016-11-19 19:41:01 +01:00
// Values specified in the OptionSettings parameter of this call overrides any
// values obtained from the SourceConfiguration.
2016-03-07 21:42:30 +01:00
//
2016-11-19 19:41:01 +01:00
// If no configuration template is found, returns an InvalidParameterValue error.
2016-03-07 21:42:30 +01:00
//
2016-11-19 19:41:01 +01:00
// Constraint: If both the solution stack name parameter and the source configuration
2016-03-07 21:42:30 +01:00
// parameters are specified, the solution stack of the source configuration
// template must match the specified solution stack name or else AWS Elastic
// Beanstalk returns an InvalidParameterCombination error.
SourceConfiguration * SourceConfiguration ` type:"structure" `
// The name of the configuration template.
//
// Constraint: This name must be unique per application.
//
2016-11-19 19:41:01 +01:00
// Default: If a configuration template already exists with this name, AWS Elastic
// Beanstalk returns an InvalidParameterValue error.
2016-10-17 23:21:08 +02:00
//
// TemplateName is a required field
2016-03-07 21:42:30 +01:00
TemplateName * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s CreateConfigurationTemplateInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateConfigurationTemplateInput ) 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 * CreateConfigurationTemplateInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreateConfigurationTemplateInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . TemplateName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TemplateName" ) )
}
if s . TemplateName != nil && len ( * s . TemplateName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "TemplateName" , 1 ) )
}
if s . OptionSettings != nil {
for i , v := range s . OptionSettings {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "OptionSettings" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if s . SourceConfiguration != nil {
if err := s . SourceConfiguration . Validate ( ) ; err != nil {
invalidParams . AddNested ( "SourceConfiguration" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * CreateConfigurationTemplateInput ) SetApplicationName ( v string ) * CreateConfigurationTemplateInput {
s . ApplicationName = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * CreateConfigurationTemplateInput ) SetDescription ( v string ) * CreateConfigurationTemplateInput {
s . Description = & v
return s
}
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * CreateConfigurationTemplateInput ) SetEnvironmentId ( v string ) * CreateConfigurationTemplateInput {
s . EnvironmentId = & v
return s
}
// SetOptionSettings sets the OptionSettings field's value.
func ( s * CreateConfigurationTemplateInput ) SetOptionSettings ( v [ ] * ConfigurationOptionSetting ) * CreateConfigurationTemplateInput {
s . OptionSettings = v
return s
}
2017-03-03 19:48:24 +01:00
// SetPlatformArn sets the PlatformArn field's value.
func ( s * CreateConfigurationTemplateInput ) SetPlatformArn ( v string ) * CreateConfigurationTemplateInput {
s . PlatformArn = & v
return s
}
2016-11-19 19:41:01 +01:00
// SetSolutionStackName sets the SolutionStackName field's value.
func ( s * CreateConfigurationTemplateInput ) SetSolutionStackName ( v string ) * CreateConfigurationTemplateInput {
s . SolutionStackName = & v
return s
}
// SetSourceConfiguration sets the SourceConfiguration field's value.
func ( s * CreateConfigurationTemplateInput ) SetSourceConfiguration ( v * SourceConfiguration ) * CreateConfigurationTemplateInput {
s . SourceConfiguration = v
return s
}
// SetTemplateName sets the TemplateName field's value.
func ( s * CreateConfigurationTemplateInput ) SetTemplateName ( v string ) * CreateConfigurationTemplateInput {
s . TemplateName = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateEnvironmentMessage
2016-03-07 21:42:30 +01:00
type CreateEnvironmentInput struct {
_ struct { } ` type:"structure" `
// The name of the application that contains the version to be deployed.
//
2016-11-19 19:41:01 +01:00
// If no application is found with this name, CreateEnvironment returns an InvalidParameterValue
// error.
2016-10-17 23:21:08 +02:00
//
// ApplicationName is a required field
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" required:"true" `
// If specified, the environment attempts to use this value as the prefix for
// the CNAME. If not specified, the CNAME is generated automatically by appending
// a random alphanumeric string to the environment name.
CNAMEPrefix * string ` min:"4" type:"string" `
// Describes this environment.
Description * string ` type:"string" `
// A unique name for the deployment environment. Used in the application URL.
//
2016-05-05 03:06:27 +02:00
// Constraint: Must be from 4 to 40 characters in length. The name can contain
2016-03-07 21:42:30 +01:00
// only letters, numbers, and hyphens. It cannot start or end with a hyphen.
// This name must be unique in your account. If the specified name already exists,
// AWS Elastic Beanstalk returns an InvalidParameterValue error.
//
// Default: If the CNAME parameter is not specified, the environment name becomes
// part of the CNAME, and therefore part of the visible URL for your application.
EnvironmentName * string ` min:"4" type:"string" `
// The name of the group to which the target environment belongs. Specify a
// group name only if the environment's name is specified in an environment
// manifest and not with the environment name parameter. See Environment Manifest
2016-03-24 23:52:51 +01:00
// (env.yaml) (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html)
2016-03-07 21:42:30 +01:00
// for details.
GroupName * string ` min:"1" type:"string" `
// If specified, AWS Elastic Beanstalk sets the specified configuration options
// to the requested value in the configuration set for the new environment.
// These override the values obtained from the solution stack or the configuration
// template.
OptionSettings [ ] * ConfigurationOptionSetting ` type:"list" `
// A list of custom user-defined configuration options to remove from the configuration
// set for this new environment.
OptionsToRemove [ ] * OptionSpecification ` type:"list" `
2017-03-03 19:48:24 +01:00
// The ARN of the custom platform.
PlatformArn * string ` type:"string" `
2016-03-07 21:42:30 +01:00
// This is an alternative to specifying a template name. If specified, AWS Elastic
// Beanstalk sets the configuration values to the default values associated
// with the specified solution stack.
SolutionStackName * string ` type:"string" `
// This specifies the tags applied to resources in the environment.
Tags [ ] * Tag ` type:"list" `
// The name of the configuration template to use in deployment. If no configuration
// template is found with this name, AWS Elastic Beanstalk returns an InvalidParameterValue
// error.
TemplateName * string ` min:"1" type:"string" `
// This specifies the tier to use for creating this environment.
Tier * EnvironmentTier ` type:"structure" `
// The name of the application version to deploy.
//
2016-11-19 19:41:01 +01:00
// If the specified application has no associated application versions, AWS
2016-03-07 21:42:30 +01:00
// Elastic Beanstalk UpdateEnvironment returns an InvalidParameterValue error.
//
2016-11-19 19:41:01 +01:00
// Default: If not specified, AWS Elastic Beanstalk attempts to launch the sample
// application in the container.
2016-03-07 21:42:30 +01:00
VersionLabel * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s CreateEnvironmentInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateEnvironmentInput ) 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 * CreateEnvironmentInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreateEnvironmentInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . CNAMEPrefix != nil && len ( * s . CNAMEPrefix ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "CNAMEPrefix" , 4 ) )
}
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if s . GroupName != nil && len ( * s . GroupName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "GroupName" , 1 ) )
}
if s . TemplateName != nil && len ( * s . TemplateName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "TemplateName" , 1 ) )
}
if s . VersionLabel != nil && len ( * s . VersionLabel ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "VersionLabel" , 1 ) )
}
if s . OptionSettings != nil {
for i , v := range s . OptionSettings {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "OptionSettings" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if s . OptionsToRemove != nil {
for i , v := range s . OptionsToRemove {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "OptionsToRemove" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if s . Tags != nil {
for i , v := range s . Tags {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "Tags" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * CreateEnvironmentInput ) SetApplicationName ( v string ) * CreateEnvironmentInput {
s . ApplicationName = & v
return s
}
// SetCNAMEPrefix sets the CNAMEPrefix field's value.
func ( s * CreateEnvironmentInput ) SetCNAMEPrefix ( v string ) * CreateEnvironmentInput {
s . CNAMEPrefix = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * CreateEnvironmentInput ) SetDescription ( v string ) * CreateEnvironmentInput {
s . Description = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * CreateEnvironmentInput ) SetEnvironmentName ( v string ) * CreateEnvironmentInput {
s . EnvironmentName = & v
return s
}
// SetGroupName sets the GroupName field's value.
func ( s * CreateEnvironmentInput ) SetGroupName ( v string ) * CreateEnvironmentInput {
s . GroupName = & v
return s
}
// SetOptionSettings sets the OptionSettings field's value.
func ( s * CreateEnvironmentInput ) SetOptionSettings ( v [ ] * ConfigurationOptionSetting ) * CreateEnvironmentInput {
s . OptionSettings = v
return s
}
// SetOptionsToRemove sets the OptionsToRemove field's value.
func ( s * CreateEnvironmentInput ) SetOptionsToRemove ( v [ ] * OptionSpecification ) * CreateEnvironmentInput {
s . OptionsToRemove = v
return s
}
2017-03-03 19:48:24 +01:00
// SetPlatformArn sets the PlatformArn field's value.
func ( s * CreateEnvironmentInput ) SetPlatformArn ( v string ) * CreateEnvironmentInput {
s . PlatformArn = & v
return s
}
2016-11-19 19:41:01 +01:00
// SetSolutionStackName sets the SolutionStackName field's value.
func ( s * CreateEnvironmentInput ) SetSolutionStackName ( v string ) * CreateEnvironmentInput {
s . SolutionStackName = & v
return s
}
// SetTags sets the Tags field's value.
func ( s * CreateEnvironmentInput ) SetTags ( v [ ] * Tag ) * CreateEnvironmentInput {
s . Tags = v
return s
}
// SetTemplateName sets the TemplateName field's value.
func ( s * CreateEnvironmentInput ) SetTemplateName ( v string ) * CreateEnvironmentInput {
s . TemplateName = & v
return s
}
// SetTier sets the Tier field's value.
func ( s * CreateEnvironmentInput ) SetTier ( v * EnvironmentTier ) * CreateEnvironmentInput {
s . Tier = v
return s
}
// SetVersionLabel sets the VersionLabel field's value.
func ( s * CreateEnvironmentInput ) SetVersionLabel ( v string ) * CreateEnvironmentInput {
s . VersionLabel = & v
return s
}
2017-03-03 19:48:24 +01:00
// Request to create a new platform version.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreatePlatformVersionRequest
type CreatePlatformVersionInput struct {
2016-03-07 21:42:30 +01:00
_ struct { } ` type:"structure" `
2017-03-03 19:48:24 +01:00
// The name of the builder environment.
EnvironmentName * string ` min:"4" type:"string" `
2016-03-07 21:42:30 +01:00
2017-03-03 19:48:24 +01:00
// The configuration option settings to apply to the builder environment.
OptionSettings [ ] * ConfigurationOptionSetting ` type:"list" `
// The location of the platform definition archive in Amazon S3.
//
// PlatformDefinitionBundle is a required field
PlatformDefinitionBundle * S3Location ` type:"structure" required:"true" `
// The name of your custom platform.
//
// PlatformName is a required field
PlatformName * string ` type:"string" required:"true" `
// The number, such as 1.0.2, for the new platform version.
//
// PlatformVersion is a required field
PlatformVersion * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s CreatePlatformVersionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreatePlatformVersionInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * CreatePlatformVersionInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreatePlatformVersionInput" }
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if s . PlatformDefinitionBundle == nil {
invalidParams . Add ( request . NewErrParamRequired ( "PlatformDefinitionBundle" ) )
}
if s . PlatformName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "PlatformName" ) )
}
if s . PlatformVersion == nil {
invalidParams . Add ( request . NewErrParamRequired ( "PlatformVersion" ) )
}
if s . OptionSettings != nil {
for i , v := range s . OptionSettings {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "OptionSettings" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * CreatePlatformVersionInput ) SetEnvironmentName ( v string ) * CreatePlatformVersionInput {
s . EnvironmentName = & v
return s
}
// SetOptionSettings sets the OptionSettings field's value.
func ( s * CreatePlatformVersionInput ) SetOptionSettings ( v [ ] * ConfigurationOptionSetting ) * CreatePlatformVersionInput {
s . OptionSettings = v
return s
}
// SetPlatformDefinitionBundle sets the PlatformDefinitionBundle field's value.
func ( s * CreatePlatformVersionInput ) SetPlatformDefinitionBundle ( v * S3Location ) * CreatePlatformVersionInput {
s . PlatformDefinitionBundle = v
return s
}
// SetPlatformName sets the PlatformName field's value.
func ( s * CreatePlatformVersionInput ) SetPlatformName ( v string ) * CreatePlatformVersionInput {
s . PlatformName = & v
return s
}
// SetPlatformVersion sets the PlatformVersion field's value.
func ( s * CreatePlatformVersionInput ) SetPlatformVersion ( v string ) * CreatePlatformVersionInput {
s . PlatformVersion = & v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreatePlatformVersionResult
type CreatePlatformVersionOutput struct {
_ struct { } ` type:"structure" `
// The builder used to create the custom platform.
Builder * Builder ` type:"structure" `
// Detailed information about the new version of the custom platform.
PlatformSummary * PlatformSummary ` type:"structure" `
}
// String returns the string representation
func ( s CreatePlatformVersionOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreatePlatformVersionOutput ) GoString ( ) string {
return s . String ( )
}
// SetBuilder sets the Builder field's value.
func ( s * CreatePlatformVersionOutput ) SetBuilder ( v * Builder ) * CreatePlatformVersionOutput {
s . Builder = v
return s
}
// SetPlatformSummary sets the PlatformSummary field's value.
func ( s * CreatePlatformVersionOutput ) SetPlatformSummary ( v * PlatformSummary ) * CreatePlatformVersionOutput {
s . PlatformSummary = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateStorageLocationInput
type CreateStorageLocationInput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s CreateStorageLocationInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateStorageLocationInput ) GoString ( ) string {
2016-03-07 21:42:30 +01:00
return s . String ( )
}
// Results of a CreateStorageLocationResult call.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CreateStorageLocationResultMessage
2016-03-07 21:42:30 +01:00
type CreateStorageLocationOutput struct {
_ struct { } ` type:"structure" `
// The name of the Amazon S3 bucket created.
S3Bucket * string ` type:"string" `
}
// String returns the string representation
func ( s CreateStorageLocationOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateStorageLocationOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetS3Bucket sets the S3Bucket field's value.
func ( s * CreateStorageLocationOutput ) SetS3Bucket ( v string ) * CreateStorageLocationOutput {
s . S3Bucket = & v
return s
}
2017-03-03 19:48:24 +01:00
// A custom AMI available to platforms.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/CustomAmi
type CustomAmi struct {
_ struct { } ` type:"structure" `
// THe ID of the image used to create the custom AMI.
ImageId * string ` type:"string" `
// The type of virtualization used to create the custom AMI.
VirtualizationType * string ` type:"string" `
}
// String returns the string representation
func ( s CustomAmi ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CustomAmi ) GoString ( ) string {
return s . String ( )
}
// SetImageId sets the ImageId field's value.
func ( s * CustomAmi ) SetImageId ( v string ) * CustomAmi {
s . ImageId = & v
return s
}
// SetVirtualizationType sets the VirtualizationType field's value.
func ( s * CustomAmi ) SetVirtualizationType ( v string ) * CustomAmi {
s . VirtualizationType = & v
return s
}
2016-03-24 23:52:51 +01:00
// Request to delete an application.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteApplicationMessage
2016-03-07 21:42:30 +01:00
type DeleteApplicationInput struct {
_ struct { } ` type:"structure" `
// The name of the application to delete.
2016-10-17 23:21:08 +02:00
//
// ApplicationName is a required field
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" required:"true" `
// When set to true, running environments will be terminated before deleting
// the application.
TerminateEnvByForce * bool ` type:"boolean" `
}
// String returns the string representation
func ( s DeleteApplicationInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteApplicationInput ) 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 * DeleteApplicationInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteApplicationInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * DeleteApplicationInput ) SetApplicationName ( v string ) * DeleteApplicationInput {
s . ApplicationName = & v
return s
}
// SetTerminateEnvByForce sets the TerminateEnvByForce field's value.
func ( s * DeleteApplicationInput ) SetTerminateEnvByForce ( v bool ) * DeleteApplicationInput {
s . TerminateEnvByForce = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteApplicationOutput
2016-03-07 21:42:30 +01:00
type DeleteApplicationOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteApplicationOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteApplicationOutput ) GoString ( ) string {
return s . String ( )
}
2016-03-24 23:52:51 +01:00
// Request to delete an application version.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteApplicationVersionMessage
2016-03-07 21:42:30 +01:00
type DeleteApplicationVersionInput struct {
_ struct { } ` type:"structure" `
2016-12-02 15:37:53 +01:00
// The name of the application to which the version belongs.
2016-10-17 23:21:08 +02:00
//
// ApplicationName is a required field
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" required:"true" `
2016-12-02 15:37:53 +01:00
// Set to true to delete the source bundle from your storage bucket. Otherwise,
// the application version is deleted only from Elastic Beanstalk and the source
// bundle remains in Amazon S3.
2016-03-07 21:42:30 +01:00
DeleteSourceBundle * bool ` type:"boolean" `
// The label of the version to delete.
2016-10-17 23:21:08 +02:00
//
// VersionLabel is a required field
2016-03-07 21:42:30 +01:00
VersionLabel * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteApplicationVersionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteApplicationVersionInput ) 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 * DeleteApplicationVersionInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteApplicationVersionInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . VersionLabel == nil {
invalidParams . Add ( request . NewErrParamRequired ( "VersionLabel" ) )
}
if s . VersionLabel != nil && len ( * s . VersionLabel ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "VersionLabel" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * DeleteApplicationVersionInput ) SetApplicationName ( v string ) * DeleteApplicationVersionInput {
s . ApplicationName = & v
return s
}
// SetDeleteSourceBundle sets the DeleteSourceBundle field's value.
func ( s * DeleteApplicationVersionInput ) SetDeleteSourceBundle ( v bool ) * DeleteApplicationVersionInput {
s . DeleteSourceBundle = & v
return s
}
// SetVersionLabel sets the VersionLabel field's value.
func ( s * DeleteApplicationVersionInput ) SetVersionLabel ( v string ) * DeleteApplicationVersionInput {
s . VersionLabel = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteApplicationVersionOutput
2016-03-07 21:42:30 +01:00
type DeleteApplicationVersionOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteApplicationVersionOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteApplicationVersionOutput ) GoString ( ) string {
return s . String ( )
}
2016-03-24 23:52:51 +01:00
// Request to delete a configuration template.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteConfigurationTemplateMessage
2016-03-07 21:42:30 +01:00
type DeleteConfigurationTemplateInput struct {
_ struct { } ` type:"structure" `
// The name of the application to delete the configuration template from.
2016-10-17 23:21:08 +02:00
//
// ApplicationName is a required field
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" required:"true" `
// The name of the configuration template to delete.
2016-10-17 23:21:08 +02:00
//
// TemplateName is a required field
2016-03-07 21:42:30 +01:00
TemplateName * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteConfigurationTemplateInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteConfigurationTemplateInput ) 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 * DeleteConfigurationTemplateInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteConfigurationTemplateInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . TemplateName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TemplateName" ) )
}
if s . TemplateName != nil && len ( * s . TemplateName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "TemplateName" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * DeleteConfigurationTemplateInput ) SetApplicationName ( v string ) * DeleteConfigurationTemplateInput {
s . ApplicationName = & v
return s
}
// SetTemplateName sets the TemplateName field's value.
func ( s * DeleteConfigurationTemplateInput ) SetTemplateName ( v string ) * DeleteConfigurationTemplateInput {
s . TemplateName = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteConfigurationTemplateOutput
2016-03-07 21:42:30 +01:00
type DeleteConfigurationTemplateOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteConfigurationTemplateOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteConfigurationTemplateOutput ) GoString ( ) string {
return s . String ( )
}
2016-03-24 23:52:51 +01:00
// Request to delete a draft environment configuration.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteEnvironmentConfigurationMessage
2016-03-07 21:42:30 +01:00
type DeleteEnvironmentConfigurationInput struct {
_ struct { } ` type:"structure" `
// The name of the application the environment is associated with.
2016-10-17 23:21:08 +02:00
//
// ApplicationName is a required field
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" required:"true" `
// The name of the environment to delete the draft configuration from.
2016-10-17 23:21:08 +02:00
//
// EnvironmentName is a required field
2016-03-07 21:42:30 +01:00
EnvironmentName * string ` min:"4" type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteEnvironmentConfigurationInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteEnvironmentConfigurationInput ) 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 * DeleteEnvironmentConfigurationInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteEnvironmentConfigurationInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . EnvironmentName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "EnvironmentName" ) )
}
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * DeleteEnvironmentConfigurationInput ) SetApplicationName ( v string ) * DeleteEnvironmentConfigurationInput {
s . ApplicationName = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * DeleteEnvironmentConfigurationInput ) SetEnvironmentName ( v string ) * DeleteEnvironmentConfigurationInput {
s . EnvironmentName = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeleteEnvironmentConfigurationOutput
2016-03-07 21:42:30 +01:00
type DeleteEnvironmentConfigurationOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteEnvironmentConfigurationOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteEnvironmentConfigurationOutput ) GoString ( ) string {
return s . String ( )
}
2017-03-03 19:48:24 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeletePlatformVersionRequest
type DeletePlatformVersionInput struct {
_ struct { } ` type:"structure" `
// The ARN of the version of the custom platform.
PlatformArn * string ` type:"string" `
}
// String returns the string representation
func ( s DeletePlatformVersionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeletePlatformVersionInput ) GoString ( ) string {
return s . String ( )
}
// SetPlatformArn sets the PlatformArn field's value.
func ( s * DeletePlatformVersionInput ) SetPlatformArn ( v string ) * DeletePlatformVersionInput {
s . PlatformArn = & v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DeletePlatformVersionResult
type DeletePlatformVersionOutput struct {
_ struct { } ` type:"structure" `
// Detailed information about the version of the custom platform.
PlatformSummary * PlatformSummary ` type:"structure" `
}
// String returns the string representation
func ( s DeletePlatformVersionOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeletePlatformVersionOutput ) GoString ( ) string {
return s . String ( )
}
// SetPlatformSummary sets the PlatformSummary field's value.
func ( s * DeletePlatformVersionOutput ) SetPlatformSummary ( v * PlatformSummary ) * DeletePlatformVersionOutput {
s . PlatformSummary = v
return s
}
2016-05-05 03:06:27 +02:00
// Information about an application version deployment.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/Deployment
2016-05-05 03:06:27 +02:00
type Deployment struct {
_ struct { } ` type:"structure" `
// The ID of the deployment. This number increases by one each time that you
// deploy source code or change instance configuration settings.
DeploymentId * int64 ` type:"long" `
// For in-progress deployments, the time that the deloyment started.
//
// For completed deployments, the time that the deployment ended.
DeploymentTime * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// The status of the deployment:
//
2016-11-19 19:41:01 +01:00
// * In Progress : The deployment is in progress.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * Deployed : The deployment succeeded.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * Failed : The deployment failed.
2016-05-05 03:06:27 +02:00
Status * string ` type:"string" `
// The version label of the application version in the deployment.
VersionLabel * string ` type:"string" `
}
// 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
// SetDeploymentId sets the DeploymentId field's value.
func ( s * Deployment ) SetDeploymentId ( v int64 ) * Deployment {
s . DeploymentId = & v
return s
}
// SetDeploymentTime sets the DeploymentTime field's value.
func ( s * Deployment ) SetDeploymentTime ( v time . Time ) * Deployment {
s . DeploymentTime = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * Deployment ) SetStatus ( v string ) * Deployment {
s . Status = & v
return s
}
// SetVersionLabel sets the VersionLabel field's value.
func ( s * Deployment ) SetVersionLabel ( v string ) * Deployment {
s . VersionLabel = & v
return s
}
2016-12-02 15:37:53 +01:00
// Request to describe application versions.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeApplicationVersionsMessage
2016-03-07 21:42:30 +01:00
type DescribeApplicationVersionsInput struct {
_ struct { } ` type:"structure" `
2016-12-02 15:37:53 +01:00
// Specify an application name to show only application versions for that application.
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" `
2016-10-17 23:21:08 +02:00
// Specify a maximum number of application versions to paginate in the request.
MaxRecords * int64 ` min:"1" type:"integer" `
// Specify a next token to retrieve the next page in a paginated request.
NextToken * string ` type:"string" `
2016-12-02 15:37:53 +01:00
// Specify a version label to show a specific application version.
2016-03-07 21:42:30 +01:00
VersionLabels [ ] * string ` type:"list" `
}
// String returns the string representation
func ( s DescribeApplicationVersionsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeApplicationVersionsInput ) 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 * DescribeApplicationVersionsInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeApplicationVersionsInput" }
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
2016-10-17 23:21:08 +02:00
if s . MaxRecords != nil && * s . MaxRecords < 1 {
invalidParams . Add ( request . NewErrParamMinValue ( "MaxRecords" , 1 ) )
}
2016-05-05 03:06:27 +02:00
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * DescribeApplicationVersionsInput ) SetApplicationName ( v string ) * DescribeApplicationVersionsInput {
s . ApplicationName = & v
return s
}
// SetMaxRecords sets the MaxRecords field's value.
func ( s * DescribeApplicationVersionsInput ) SetMaxRecords ( v int64 ) * DescribeApplicationVersionsInput {
s . MaxRecords = & v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * DescribeApplicationVersionsInput ) SetNextToken ( v string ) * DescribeApplicationVersionsInput {
s . NextToken = & v
return s
}
// SetVersionLabels sets the VersionLabels field's value.
func ( s * DescribeApplicationVersionsInput ) SetVersionLabels ( v [ ] * string ) * DescribeApplicationVersionsInput {
s . VersionLabels = v
return s
}
2016-03-07 21:42:30 +01:00
// Result message wrapping a list of application version descriptions.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplicationVersionDescriptionsMessage
2016-03-07 21:42:30 +01:00
type DescribeApplicationVersionsOutput struct {
_ struct { } ` type:"structure" `
2016-12-02 15:37:53 +01:00
// List of ApplicationVersionDescription objects sorted in order of creation.
2016-03-07 21:42:30 +01:00
ApplicationVersions [ ] * ApplicationVersionDescription ` type:"list" `
2016-10-17 23:21:08 +02:00
// For a paginated request, the token that you can pass in a subsequent request
// to get the next page.
NextToken * string ` type:"string" `
2016-03-07 21:42:30 +01:00
}
// String returns the string representation
func ( s DescribeApplicationVersionsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeApplicationVersionsOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetApplicationVersions sets the ApplicationVersions field's value.
func ( s * DescribeApplicationVersionsOutput ) SetApplicationVersions ( v [ ] * ApplicationVersionDescription ) * DescribeApplicationVersionsOutput {
s . ApplicationVersions = v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * DescribeApplicationVersionsOutput ) SetNextToken ( v string ) * DescribeApplicationVersionsOutput {
s . NextToken = & v
return s
}
2016-03-24 23:52:51 +01:00
// Request to describe one or more applications.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeApplicationsMessage
2016-03-07 21:42:30 +01:00
type DescribeApplicationsInput struct {
_ struct { } ` type:"structure" `
// If specified, AWS Elastic Beanstalk restricts the returned descriptions to
// only include those with the specified names.
ApplicationNames [ ] * string ` type:"list" `
}
// String returns the string representation
func ( s DescribeApplicationsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeApplicationsInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetApplicationNames sets the ApplicationNames field's value.
func ( s * DescribeApplicationsInput ) SetApplicationNames ( v [ ] * string ) * DescribeApplicationsInput {
s . ApplicationNames = v
return s
}
2016-03-07 21:42:30 +01:00
// Result message containing a list of application descriptions.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplicationDescriptionsMessage
2016-03-07 21:42:30 +01:00
type DescribeApplicationsOutput struct {
_ struct { } ` type:"structure" `
// This parameter contains a list of ApplicationDescription.
Applications [ ] * ApplicationDescription ` type:"list" `
}
// String returns the string representation
func ( s DescribeApplicationsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeApplicationsOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetApplications sets the Applications field's value.
func ( s * DescribeApplicationsOutput ) SetApplications ( v [ ] * ApplicationDescription ) * DescribeApplicationsOutput {
s . Applications = v
return s
}
2017-03-03 19:48:24 +01:00
// Result message containing a list of application version descriptions.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeConfigurationOptionsMessage
2016-03-07 21:42:30 +01:00
type DescribeConfigurationOptionsInput struct {
_ struct { } ` type:"structure" `
// The name of the application associated with the configuration template or
// environment. Only needed if you want to describe the configuration options
// associated with either the configuration template or environment.
ApplicationName * string ` min:"1" type:"string" `
// The name of the environment whose configuration options you want to describe.
EnvironmentName * string ` min:"4" type:"string" `
// If specified, restricts the descriptions to only the specified options.
Options [ ] * OptionSpecification ` type:"list" `
2017-03-03 19:48:24 +01:00
// The ARN of the custom platform.
PlatformArn * string ` type:"string" `
2016-03-07 21:42:30 +01:00
// The name of the solution stack whose configuration options you want to describe.
SolutionStackName * string ` type:"string" `
// The name of the configuration template whose configuration options you want
// to describe.
TemplateName * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s DescribeConfigurationOptionsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeConfigurationOptionsInput ) 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 * DescribeConfigurationOptionsInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeConfigurationOptionsInput" }
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if s . TemplateName != nil && len ( * s . TemplateName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "TemplateName" , 1 ) )
}
if s . Options != nil {
for i , v := range s . Options {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "Options" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * DescribeConfigurationOptionsInput ) SetApplicationName ( v string ) * DescribeConfigurationOptionsInput {
s . ApplicationName = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * DescribeConfigurationOptionsInput ) SetEnvironmentName ( v string ) * DescribeConfigurationOptionsInput {
s . EnvironmentName = & v
return s
}
// SetOptions sets the Options field's value.
func ( s * DescribeConfigurationOptionsInput ) SetOptions ( v [ ] * OptionSpecification ) * DescribeConfigurationOptionsInput {
s . Options = v
return s
}
2017-03-03 19:48:24 +01:00
// SetPlatformArn sets the PlatformArn field's value.
func ( s * DescribeConfigurationOptionsInput ) SetPlatformArn ( v string ) * DescribeConfigurationOptionsInput {
s . PlatformArn = & v
return s
}
2016-11-19 19:41:01 +01:00
// SetSolutionStackName sets the SolutionStackName field's value.
func ( s * DescribeConfigurationOptionsInput ) SetSolutionStackName ( v string ) * DescribeConfigurationOptionsInput {
s . SolutionStackName = & v
return s
}
// SetTemplateName sets the TemplateName field's value.
func ( s * DescribeConfigurationOptionsInput ) SetTemplateName ( v string ) * DescribeConfigurationOptionsInput {
s . TemplateName = & v
return s
}
2016-03-07 21:42:30 +01:00
// Describes the settings for a specified configuration set.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ConfigurationOptionsDescription
2016-03-07 21:42:30 +01:00
type DescribeConfigurationOptionsOutput struct {
_ struct { } ` type:"structure" `
// A list of ConfigurationOptionDescription.
Options [ ] * ConfigurationOptionDescription ` type:"list" `
2017-03-03 19:48:24 +01:00
// The ARN of the custom platform.
PlatformArn * string ` type:"string" `
2016-03-07 21:42:30 +01:00
// The name of the solution stack these configuration options belong to.
SolutionStackName * string ` type:"string" `
}
// String returns the string representation
func ( s DescribeConfigurationOptionsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeConfigurationOptionsOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetOptions sets the Options field's value.
func ( s * DescribeConfigurationOptionsOutput ) SetOptions ( v [ ] * ConfigurationOptionDescription ) * DescribeConfigurationOptionsOutput {
s . Options = v
return s
}
2017-03-03 19:48:24 +01:00
// SetPlatformArn sets the PlatformArn field's value.
func ( s * DescribeConfigurationOptionsOutput ) SetPlatformArn ( v string ) * DescribeConfigurationOptionsOutput {
s . PlatformArn = & v
return s
}
2016-11-19 19:41:01 +01:00
// SetSolutionStackName sets the SolutionStackName field's value.
func ( s * DescribeConfigurationOptionsOutput ) SetSolutionStackName ( v string ) * DescribeConfigurationOptionsOutput {
s . SolutionStackName = & v
return s
}
2016-03-07 21:42:30 +01:00
// Result message containing all of the configuration settings for a specified
// solution stack or configuration template.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeConfigurationSettingsMessage
2016-03-07 21:42:30 +01:00
type DescribeConfigurationSettingsInput struct {
_ struct { } ` type:"structure" `
// The application for the environment or configuration template.
2016-10-17 23:21:08 +02:00
//
// ApplicationName is a required field
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" required:"true" `
// The name of the environment to describe.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify either this or a TemplateName, but not both.
2016-03-07 21:42:30 +01:00
// If you specify both, AWS Elastic Beanstalk returns an InvalidParameterCombination
// error. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
// error.
EnvironmentName * string ` min:"4" type:"string" `
// The name of the configuration template to describe.
//
2016-11-19 19:41:01 +01:00
// Conditional: You must specify either this parameter or an EnvironmentName,
2016-03-07 21:42:30 +01:00
// but not both. If you specify both, AWS Elastic Beanstalk returns an InvalidParameterCombination
// error. If you do not specify either, AWS Elastic Beanstalk returns a MissingRequiredParameter
// error.
TemplateName * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s DescribeConfigurationSettingsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeConfigurationSettingsInput ) 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 * DescribeConfigurationSettingsInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeConfigurationSettingsInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if s . TemplateName != nil && len ( * s . TemplateName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "TemplateName" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * DescribeConfigurationSettingsInput ) SetApplicationName ( v string ) * DescribeConfigurationSettingsInput {
s . ApplicationName = & v
return s
}
2016-03-07 21:42:30 +01:00
2016-11-19 19:41:01 +01:00
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * DescribeConfigurationSettingsInput ) SetEnvironmentName ( v string ) * DescribeConfigurationSettingsInput {
s . EnvironmentName = & v
return s
}
// SetTemplateName sets the TemplateName field's value.
func ( s * DescribeConfigurationSettingsInput ) SetTemplateName ( v string ) * DescribeConfigurationSettingsInput {
s . TemplateName = & v
return s
}
// The results from a request to change the configuration settings of an environment.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ConfigurationSettingsDescriptions
2016-11-19 19:41:01 +01:00
type DescribeConfigurationSettingsOutput struct {
_ struct { } ` type:"structure" `
// A list of ConfigurationSettingsDescription.
2016-03-07 21:42:30 +01:00
ConfigurationSettings [ ] * ConfigurationSettingsDescription ` type:"list" `
}
// String returns the string representation
func ( s DescribeConfigurationSettingsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeConfigurationSettingsOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetConfigurationSettings sets the ConfigurationSettings field's value.
func ( s * DescribeConfigurationSettingsOutput ) SetConfigurationSettings ( v [ ] * ConfigurationSettingsDescription ) * DescribeConfigurationSettingsOutput {
s . ConfigurationSettings = v
return s
}
2016-03-07 21:42:30 +01:00
// See the example below to learn how to create a request body.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentHealthRequest
2016-03-07 21:42:30 +01:00
type DescribeEnvironmentHealthInput struct {
_ struct { } ` type:"structure" `
2016-12-02 15:37:53 +01:00
// Specify the response elements to return. To retrieve all attributes, set
// to All. If no attribute names are specified, returns the name of the environment.
2016-03-07 21:42:30 +01:00
AttributeNames [ ] * string ` type:"list" `
2016-12-02 15:37:53 +01:00
// Specify the environment by ID.
2016-03-07 21:42:30 +01:00
//
2016-12-02 15:37:53 +01:00
// You must specify either this or an EnvironmentName, or both.
2016-03-07 21:42:30 +01:00
EnvironmentId * string ` type:"string" `
2016-12-02 15:37:53 +01:00
// Specify the environment by name.
2016-03-07 21:42:30 +01:00
//
2016-12-02 15:37:53 +01:00
// You must specify either this or an EnvironmentName, or both.
2016-03-07 21:42:30 +01:00
EnvironmentName * string ` min:"4" type:"string" `
}
// String returns the string representation
func ( s DescribeEnvironmentHealthInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeEnvironmentHealthInput ) 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 * DescribeEnvironmentHealthInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeEnvironmentHealthInput" }
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetAttributeNames sets the AttributeNames field's value.
func ( s * DescribeEnvironmentHealthInput ) SetAttributeNames ( v [ ] * string ) * DescribeEnvironmentHealthInput {
s . AttributeNames = v
return s
}
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * DescribeEnvironmentHealthInput ) SetEnvironmentId ( v string ) * DescribeEnvironmentHealthInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * DescribeEnvironmentHealthInput ) SetEnvironmentName ( v string ) * DescribeEnvironmentHealthInput {
s . EnvironmentName = & v
return s
}
2016-12-02 15:37:53 +01:00
// Health details for an AWS Elastic Beanstalk environment.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentHealthResult
2016-03-07 21:42:30 +01:00
type DescribeEnvironmentHealthOutput struct {
_ struct { } ` type:"structure" `
2016-12-02 15:37:53 +01:00
// Application request metrics for the environment.
2016-03-07 21:42:30 +01:00
ApplicationMetrics * ApplicationMetrics ` type:"structure" `
2016-12-02 15:37:53 +01:00
// Descriptions of the data that contributed to the environment's current health
// status.
2016-03-07 21:42:30 +01:00
Causes [ ] * string ` type:"list" `
2016-12-02 15:37:53 +01:00
// The health color (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html)
// of the environment.
2016-03-07 21:42:30 +01:00
Color * string ` type:"string" `
2016-12-02 15:37:53 +01:00
// The environment's name.
2016-03-07 21:42:30 +01:00
EnvironmentName * string ` min:"4" type:"string" `
2016-12-02 15:37:53 +01:00
// The health status (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html)
// of the environment. For example, Ok.
2016-03-07 21:42:30 +01:00
HealthStatus * string ` type:"string" `
2016-12-02 15:37:53 +01:00
// Summary health information for the instances in the environment.
2016-03-07 21:42:30 +01:00
InstancesHealth * InstanceHealthSummary ` type:"structure" `
2016-12-02 15:37:53 +01:00
// The date and time that the health information was retrieved.
2016-03-07 21:42:30 +01:00
RefreshedAt * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
2016-12-02 15:37:53 +01:00
// The environment's operational status. Ready, Launching, Updating, Terminating,
// or Terminated.
2016-03-07 21:42:30 +01:00
Status * string ` type:"string" enum:"EnvironmentHealth" `
}
// String returns the string representation
func ( s DescribeEnvironmentHealthOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeEnvironmentHealthOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetApplicationMetrics sets the ApplicationMetrics field's value.
func ( s * DescribeEnvironmentHealthOutput ) SetApplicationMetrics ( v * ApplicationMetrics ) * DescribeEnvironmentHealthOutput {
s . ApplicationMetrics = v
return s
}
// SetCauses sets the Causes field's value.
func ( s * DescribeEnvironmentHealthOutput ) SetCauses ( v [ ] * string ) * DescribeEnvironmentHealthOutput {
s . Causes = v
return s
}
// SetColor sets the Color field's value.
func ( s * DescribeEnvironmentHealthOutput ) SetColor ( v string ) * DescribeEnvironmentHealthOutput {
s . Color = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * DescribeEnvironmentHealthOutput ) SetEnvironmentName ( v string ) * DescribeEnvironmentHealthOutput {
s . EnvironmentName = & v
return s
}
// SetHealthStatus sets the HealthStatus field's value.
func ( s * DescribeEnvironmentHealthOutput ) SetHealthStatus ( v string ) * DescribeEnvironmentHealthOutput {
s . HealthStatus = & v
return s
}
// SetInstancesHealth sets the InstancesHealth field's value.
func ( s * DescribeEnvironmentHealthOutput ) SetInstancesHealth ( v * InstanceHealthSummary ) * DescribeEnvironmentHealthOutput {
s . InstancesHealth = v
return s
}
// SetRefreshedAt sets the RefreshedAt field's value.
func ( s * DescribeEnvironmentHealthOutput ) SetRefreshedAt ( v time . Time ) * DescribeEnvironmentHealthOutput {
s . RefreshedAt = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * DescribeEnvironmentHealthOutput ) SetStatus ( v string ) * DescribeEnvironmentHealthOutput {
s . Status = & v
return s
}
2016-05-05 03:06:27 +02:00
// Request to list completed and failed managed actions.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentManagedActionHistoryRequest
2016-05-05 03:06:27 +02:00
type DescribeEnvironmentManagedActionHistoryInput struct {
_ struct { } ` type:"structure" `
// The environment ID of the target environment.
EnvironmentId * string ` type:"string" `
// The name of the target environment.
EnvironmentName * string ` min:"4" type:"string" `
// The maximum number of items to return for a single request.
MaxItems * int64 ` type:"integer" `
// The pagination token returned by a previous request.
NextToken * string ` type:"string" `
}
// String returns the string representation
func ( s DescribeEnvironmentManagedActionHistoryInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeEnvironmentManagedActionHistoryInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DescribeEnvironmentManagedActionHistoryInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeEnvironmentManagedActionHistoryInput" }
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * DescribeEnvironmentManagedActionHistoryInput ) SetEnvironmentId ( v string ) * DescribeEnvironmentManagedActionHistoryInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * DescribeEnvironmentManagedActionHistoryInput ) SetEnvironmentName ( v string ) * DescribeEnvironmentManagedActionHistoryInput {
s . EnvironmentName = & v
return s
}
// SetMaxItems sets the MaxItems field's value.
func ( s * DescribeEnvironmentManagedActionHistoryInput ) SetMaxItems ( v int64 ) * DescribeEnvironmentManagedActionHistoryInput {
s . MaxItems = & v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * DescribeEnvironmentManagedActionHistoryInput ) SetNextToken ( v string ) * DescribeEnvironmentManagedActionHistoryInput {
s . NextToken = & v
return s
}
2016-05-05 03:06:27 +02:00
// A result message containing a list of completed and failed managed actions.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentManagedActionHistoryResult
2016-05-05 03:06:27 +02:00
type DescribeEnvironmentManagedActionHistoryOutput struct {
_ struct { } ` type:"structure" `
// A list of completed and failed managed actions.
ManagedActionHistoryItems [ ] * ManagedActionHistoryItem ` min:"1" type:"list" `
// A pagination token that you pass to DescribeEnvironmentManagedActionHistory
// to get the next page of results.
NextToken * string ` type:"string" `
}
// String returns the string representation
func ( s DescribeEnvironmentManagedActionHistoryOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeEnvironmentManagedActionHistoryOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetManagedActionHistoryItems sets the ManagedActionHistoryItems field's value.
func ( s * DescribeEnvironmentManagedActionHistoryOutput ) SetManagedActionHistoryItems ( v [ ] * ManagedActionHistoryItem ) * DescribeEnvironmentManagedActionHistoryOutput {
s . ManagedActionHistoryItems = v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * DescribeEnvironmentManagedActionHistoryOutput ) SetNextToken ( v string ) * DescribeEnvironmentManagedActionHistoryOutput {
s . NextToken = & v
return s
}
2016-05-05 03:06:27 +02:00
// Request to list an environment's upcoming and in-progress managed actions.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentManagedActionsRequest
2016-05-05 03:06:27 +02:00
type DescribeEnvironmentManagedActionsInput struct {
_ struct { } ` type:"structure" `
// The environment ID of the target environment.
EnvironmentId * string ` type:"string" `
// The name of the target environment.
EnvironmentName * string ` type:"string" `
// To show only actions with a particular status, specify a status.
Status * string ` type:"string" enum:"ActionStatus" `
}
// String returns the string representation
func ( s DescribeEnvironmentManagedActionsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeEnvironmentManagedActionsInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * DescribeEnvironmentManagedActionsInput ) SetEnvironmentId ( v string ) * DescribeEnvironmentManagedActionsInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * DescribeEnvironmentManagedActionsInput ) SetEnvironmentName ( v string ) * DescribeEnvironmentManagedActionsInput {
s . EnvironmentName = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * DescribeEnvironmentManagedActionsInput ) SetStatus ( v string ) * DescribeEnvironmentManagedActionsInput {
s . Status = & v
return s
}
2016-05-05 03:06:27 +02:00
// The result message containing a list of managed actions.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentManagedActionsResult
2016-05-05 03:06:27 +02:00
type DescribeEnvironmentManagedActionsOutput struct {
_ struct { } ` type:"structure" `
// A list of upcoming and in-progress managed actions.
ManagedActions [ ] * ManagedAction ` min:"1" type:"list" `
}
// String returns the string representation
func ( s DescribeEnvironmentManagedActionsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeEnvironmentManagedActionsOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetManagedActions sets the ManagedActions field's value.
func ( s * DescribeEnvironmentManagedActionsOutput ) SetManagedActions ( v [ ] * ManagedAction ) * DescribeEnvironmentManagedActionsOutput {
s . ManagedActions = v
return s
}
2016-03-24 23:52:51 +01:00
// Request to describe the resources in an environment.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentResourcesMessage
2016-03-07 21:42:30 +01:00
type DescribeEnvironmentResourcesInput struct {
_ struct { } ` type:"structure" `
// The ID of the environment to retrieve AWS resource usage data.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify either this or an EnvironmentName, or both. If
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
2016-03-07 21:42:30 +01:00
// error.
EnvironmentId * string ` type:"string" `
// The name of the environment to retrieve AWS resource usage data.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify either this or an EnvironmentId, or both. If
2016-03-07 21:42:30 +01:00
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
// error.
EnvironmentName * string ` min:"4" type:"string" `
}
// String returns the string representation
func ( s DescribeEnvironmentResourcesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeEnvironmentResourcesInput ) 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 * DescribeEnvironmentResourcesInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeEnvironmentResourcesInput" }
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * DescribeEnvironmentResourcesInput ) SetEnvironmentId ( v string ) * DescribeEnvironmentResourcesInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * DescribeEnvironmentResourcesInput ) SetEnvironmentName ( v string ) * DescribeEnvironmentResourcesInput {
s . EnvironmentName = & v
return s
}
2016-03-07 21:42:30 +01:00
// Result message containing a list of environment resource descriptions.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EnvironmentResourceDescriptionsMessage
2016-03-07 21:42:30 +01:00
type DescribeEnvironmentResourcesOutput struct {
_ struct { } ` type:"structure" `
// A list of EnvironmentResourceDescription.
EnvironmentResources * EnvironmentResourceDescription ` type:"structure" `
}
// String returns the string representation
func ( s DescribeEnvironmentResourcesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeEnvironmentResourcesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetEnvironmentResources sets the EnvironmentResources field's value.
func ( s * DescribeEnvironmentResourcesOutput ) SetEnvironmentResources ( v * EnvironmentResourceDescription ) * DescribeEnvironmentResourcesOutput {
s . EnvironmentResources = v
return s
}
2016-03-24 23:52:51 +01:00
// Request to describe one or more environments.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentsMessage
2016-03-07 21:42:30 +01:00
type DescribeEnvironmentsInput struct {
_ struct { } ` type:"structure" `
// If specified, AWS Elastic Beanstalk restricts the returned descriptions to
// include only those that are associated with this application.
ApplicationName * string ` min:"1" type:"string" `
// If specified, AWS Elastic Beanstalk restricts the returned descriptions to
// include only those that have the specified IDs.
EnvironmentIds [ ] * string ` type:"list" `
// If specified, AWS Elastic Beanstalk restricts the returned descriptions to
// include only those that have the specified names.
EnvironmentNames [ ] * string ` type:"list" `
// Indicates whether to include deleted environments:
//
2016-11-19 19:41:01 +01:00
// true: Environments that have been deleted after IncludedDeletedBackTo are
2016-03-07 21:42:30 +01:00
// displayed.
//
2016-11-19 19:41:01 +01:00
// false: Do not include deleted environments.
2016-03-07 21:42:30 +01:00
IncludeDeleted * bool ` type:"boolean" `
// If specified when IncludeDeleted is set to true, then environments deleted
// after this date are displayed.
IncludedDeletedBackTo * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// If specified, AWS Elastic Beanstalk restricts the returned descriptions to
// include only those that are associated with this application version.
VersionLabel * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s DescribeEnvironmentsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeEnvironmentsInput ) 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 * DescribeEnvironmentsInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeEnvironmentsInput" }
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . VersionLabel != nil && len ( * s . VersionLabel ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "VersionLabel" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * DescribeEnvironmentsInput ) SetApplicationName ( v string ) * DescribeEnvironmentsInput {
s . ApplicationName = & v
return s
}
// SetEnvironmentIds sets the EnvironmentIds field's value.
func ( s * DescribeEnvironmentsInput ) SetEnvironmentIds ( v [ ] * string ) * DescribeEnvironmentsInput {
s . EnvironmentIds = v
return s
}
// SetEnvironmentNames sets the EnvironmentNames field's value.
func ( s * DescribeEnvironmentsInput ) SetEnvironmentNames ( v [ ] * string ) * DescribeEnvironmentsInput {
s . EnvironmentNames = v
return s
}
// SetIncludeDeleted sets the IncludeDeleted field's value.
func ( s * DescribeEnvironmentsInput ) SetIncludeDeleted ( v bool ) * DescribeEnvironmentsInput {
s . IncludeDeleted = & v
return s
}
// SetIncludedDeletedBackTo sets the IncludedDeletedBackTo field's value.
func ( s * DescribeEnvironmentsInput ) SetIncludedDeletedBackTo ( v time . Time ) * DescribeEnvironmentsInput {
s . IncludedDeletedBackTo = & v
return s
}
// SetVersionLabel sets the VersionLabel field's value.
func ( s * DescribeEnvironmentsInput ) SetVersionLabel ( v string ) * DescribeEnvironmentsInput {
s . VersionLabel = & v
return s
}
2016-03-24 23:52:51 +01:00
// Request to retrieve a list of events for an environment.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEventsMessage
2016-03-07 21:42:30 +01:00
type DescribeEventsInput struct {
_ struct { } ` type:"structure" `
// If specified, AWS Elastic Beanstalk restricts the returned descriptions to
// include only those associated with this application.
ApplicationName * string ` min:"1" type:"string" `
// If specified, AWS Elastic Beanstalk restricts the returned descriptions to
// those that occur up to, but not including, the EndTime.
EndTime * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// If specified, AWS Elastic Beanstalk restricts the returned descriptions to
// those associated with this environment.
EnvironmentId * string ` type:"string" `
// If specified, AWS Elastic Beanstalk restricts the returned descriptions to
// those associated with this environment.
EnvironmentName * string ` min:"4" type:"string" `
// Specifies the maximum number of events that can be returned, beginning with
// the most recent event.
MaxRecords * int64 ` min:"1" type:"integer" `
// Pagination token. If specified, the events return the next batch of results.
NextToken * string ` type:"string" `
2017-03-03 19:48:24 +01:00
// The ARN of the version of the custom platform.
PlatformArn * string ` type:"string" `
2016-03-07 21:42:30 +01:00
// If specified, AWS Elastic Beanstalk restricts the described events to include
// only those associated with this request ID.
RequestId * string ` type:"string" `
// If specified, limits the events returned from this call to include only those
// with the specified severity or higher.
Severity * string ` type:"string" enum:"EventSeverity" `
// If specified, AWS Elastic Beanstalk restricts the returned descriptions to
// those that occur on or after this time.
StartTime * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// If specified, AWS Elastic Beanstalk restricts the returned descriptions to
// those that are associated with this environment configuration.
TemplateName * string ` min:"1" type:"string" `
// If specified, AWS Elastic Beanstalk restricts the returned descriptions to
// those associated with this application version.
VersionLabel * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s DescribeEventsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeEventsInput ) 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 * DescribeEventsInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeEventsInput" }
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if s . MaxRecords != nil && * s . MaxRecords < 1 {
invalidParams . Add ( request . NewErrParamMinValue ( "MaxRecords" , 1 ) )
}
if s . TemplateName != nil && len ( * s . TemplateName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "TemplateName" , 1 ) )
}
if s . VersionLabel != nil && len ( * s . VersionLabel ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "VersionLabel" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * DescribeEventsInput ) SetApplicationName ( v string ) * DescribeEventsInput {
s . ApplicationName = & v
return s
}
// SetEndTime sets the EndTime field's value.
func ( s * DescribeEventsInput ) SetEndTime ( v time . Time ) * DescribeEventsInput {
s . EndTime = & v
return s
}
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * DescribeEventsInput ) SetEnvironmentId ( v string ) * DescribeEventsInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * DescribeEventsInput ) SetEnvironmentName ( v string ) * DescribeEventsInput {
s . EnvironmentName = & v
return s
}
// SetMaxRecords sets the MaxRecords field's value.
func ( s * DescribeEventsInput ) SetMaxRecords ( v int64 ) * DescribeEventsInput {
s . MaxRecords = & v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * DescribeEventsInput ) SetNextToken ( v string ) * DescribeEventsInput {
s . NextToken = & v
return s
}
2017-03-03 19:48:24 +01:00
// SetPlatformArn sets the PlatformArn field's value.
func ( s * DescribeEventsInput ) SetPlatformArn ( v string ) * DescribeEventsInput {
s . PlatformArn = & v
return s
}
2016-11-19 19:41:01 +01:00
// SetRequestId sets the RequestId field's value.
func ( s * DescribeEventsInput ) SetRequestId ( v string ) * DescribeEventsInput {
s . RequestId = & v
return s
}
// SetSeverity sets the Severity field's value.
func ( s * DescribeEventsInput ) SetSeverity ( v string ) * DescribeEventsInput {
s . Severity = & v
return s
}
// SetStartTime sets the StartTime field's value.
func ( s * DescribeEventsInput ) SetStartTime ( v time . Time ) * DescribeEventsInput {
s . StartTime = & v
return s
}
// SetTemplateName sets the TemplateName field's value.
func ( s * DescribeEventsInput ) SetTemplateName ( v string ) * DescribeEventsInput {
s . TemplateName = & v
return s
}
// SetVersionLabel sets the VersionLabel field's value.
func ( s * DescribeEventsInput ) SetVersionLabel ( v string ) * DescribeEventsInput {
s . VersionLabel = & v
return s
}
2016-03-07 21:42:30 +01:00
// Result message wrapping a list of event descriptions.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EventDescriptionsMessage
2016-03-07 21:42:30 +01:00
type DescribeEventsOutput struct {
_ struct { } ` type:"structure" `
// A list of EventDescription.
Events [ ] * EventDescription ` type:"list" `
// If returned, this indicates that there are more results to obtain. Use this
// token in the next DescribeEvents call to get the next batch of events.
NextToken * string ` type:"string" `
}
// String returns the string representation
func ( s DescribeEventsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeEventsOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetEvents sets the Events field's value.
func ( s * DescribeEventsOutput ) SetEvents ( v [ ] * EventDescription ) * DescribeEventsOutput {
s . Events = v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * DescribeEventsOutput ) SetNextToken ( v string ) * DescribeEventsOutput {
s . NextToken = & v
return s
}
2016-12-02 15:37:53 +01:00
// Parameters for a call to DescribeInstancesHealth.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeInstancesHealthRequest
2016-03-07 21:42:30 +01:00
type DescribeInstancesHealthInput struct {
_ struct { } ` type:"structure" `
2016-12-02 15:37:53 +01:00
// Specifies the response elements you wish to receive. To retrieve all attributes,
// set to All. If no attribute names are specified, returns a list of instances.
2016-03-07 21:42:30 +01:00
AttributeNames [ ] * string ` type:"list" `
2016-12-02 15:37:53 +01:00
// Specify the AWS Elastic Beanstalk environment by ID.
2016-03-07 21:42:30 +01:00
EnvironmentId * string ` type:"string" `
2016-12-02 15:37:53 +01:00
// Specify the AWS Elastic Beanstalk environment by name.
2016-03-07 21:42:30 +01:00
EnvironmentName * string ` min:"4" type:"string" `
2016-12-02 15:37:53 +01:00
// Specify the pagination token returned by a previous call.
2016-03-07 21:42:30 +01:00
NextToken * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s DescribeInstancesHealthInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeInstancesHealthInput ) 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 * DescribeInstancesHealthInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeInstancesHealthInput" }
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if s . NextToken != nil && len ( * s . NextToken ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "NextToken" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetAttributeNames sets the AttributeNames field's value.
func ( s * DescribeInstancesHealthInput ) SetAttributeNames ( v [ ] * string ) * DescribeInstancesHealthInput {
s . AttributeNames = v
return s
}
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * DescribeInstancesHealthInput ) SetEnvironmentId ( v string ) * DescribeInstancesHealthInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * DescribeInstancesHealthInput ) SetEnvironmentName ( v string ) * DescribeInstancesHealthInput {
s . EnvironmentName = & v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * DescribeInstancesHealthInput ) SetNextToken ( v string ) * DescribeInstancesHealthInput {
s . NextToken = & v
return s
}
2016-12-02 15:37:53 +01:00
// Detailed health information about the Amazon EC2 instances in an AWS Elastic
// Beanstalk environment.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeInstancesHealthResult
2016-03-07 21:42:30 +01:00
type DescribeInstancesHealthOutput struct {
_ struct { } ` type:"structure" `
2016-12-02 15:37:53 +01:00
// Detailed health information about each instance.
2016-03-07 21:42:30 +01:00
InstanceHealthList [ ] * SingleInstanceHealth ` type:"list" `
2016-12-02 15:37:53 +01:00
// Pagination token for the next page of results, if available.
2016-03-07 21:42:30 +01:00
NextToken * string ` min:"1" type:"string" `
2016-12-02 15:37:53 +01:00
// The date and time that the health information was retrieved.
2016-03-07 21:42:30 +01:00
RefreshedAt * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
}
// String returns the string representation
func ( s DescribeInstancesHealthOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeInstancesHealthOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetInstanceHealthList sets the InstanceHealthList field's value.
func ( s * DescribeInstancesHealthOutput ) SetInstanceHealthList ( v [ ] * SingleInstanceHealth ) * DescribeInstancesHealthOutput {
s . InstanceHealthList = v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * DescribeInstancesHealthOutput ) SetNextToken ( v string ) * DescribeInstancesHealthOutput {
s . NextToken = & v
return s
}
// SetRefreshedAt sets the RefreshedAt field's value.
func ( s * DescribeInstancesHealthOutput ) SetRefreshedAt ( v time . Time ) * DescribeInstancesHealthOutput {
s . RefreshedAt = & v
return s
}
2017-03-03 19:48:24 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribePlatformVersionRequest
type DescribePlatformVersionInput struct {
_ struct { } ` type:"structure" `
// The ARN of the version of the platform.
PlatformArn * string ` type:"string" `
}
// String returns the string representation
func ( s DescribePlatformVersionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribePlatformVersionInput ) GoString ( ) string {
return s . String ( )
}
// SetPlatformArn sets the PlatformArn field's value.
func ( s * DescribePlatformVersionInput ) SetPlatformArn ( v string ) * DescribePlatformVersionInput {
s . PlatformArn = & v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribePlatformVersionResult
type DescribePlatformVersionOutput struct {
_ struct { } ` type:"structure" `
// Detailed information about the version of the platform.
PlatformDescription * PlatformDescription ` type:"structure" `
}
// String returns the string representation
func ( s DescribePlatformVersionOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribePlatformVersionOutput ) GoString ( ) string {
return s . String ( )
}
// SetPlatformDescription sets the PlatformDescription field's value.
func ( s * DescribePlatformVersionOutput ) SetPlatformDescription ( v * PlatformDescription ) * DescribePlatformVersionOutput {
s . PlatformDescription = v
return s
}
2016-03-07 21:42:30 +01:00
// Describes the properties of an environment.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EnvironmentDescription
2016-03-07 21:42:30 +01:00
type EnvironmentDescription struct {
_ struct { } ` type:"structure" `
// Indicates if there is an in-progress environment configuration update or
// application version deployment that you can cancel.
//
2016-11-19 19:41:01 +01:00
// true: There is an update in progress.
2016-03-07 21:42:30 +01:00
//
2016-11-19 19:41:01 +01:00
// false: There are no updates currently in progress.
2016-03-07 21:42:30 +01:00
AbortableOperationInProgress * bool ` type:"boolean" `
// The name of the application associated with this environment.
ApplicationName * string ` min:"1" type:"string" `
// The URL to the CNAME for this environment.
CNAME * string ` min:"1" type:"string" `
// The creation date for this environment.
DateCreated * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// The last modified date for this environment.
DateUpdated * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// Describes this environment.
Description * string ` type:"string" `
// For load-balanced, autoscaling environments, the URL to the LoadBalancer.
// For single-instance environments, the IP address of the instance.
EndpointURL * string ` type:"string" `
// The ID of this environment.
EnvironmentId * string ` type:"string" `
// A list of links to other environments in the same group.
EnvironmentLinks [ ] * EnvironmentLink ` type:"list" `
// The name of this environment.
EnvironmentName * string ` min:"4" type:"string" `
// Describes the health status of the environment. AWS Elastic Beanstalk indicates
// the failure levels for a running environment:
//
2016-11-19 19:41:01 +01:00
// * Red: Indicates the environment is not responsive. Occurs when three
// or more consecutive failures occur for an environment.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * Yellow: Indicates that something is wrong. Occurs when two consecutive
// failures occur for an environment.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * Green: Indicates the environment is healthy and fully functional.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * Grey: Default health for a new environment. The environment is not fully
// launched and health checks have not started or health checks are suspended
// during an UpdateEnvironment or RestartEnvironement request.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// Default: Grey
2016-03-07 21:42:30 +01:00
Health * string ` type:"string" enum:"EnvironmentHealth" `
// Returns the health status of the application running in your environment.
// For more information, see Health Colors and Statuses (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html).
HealthStatus * string ` type:"string" enum:"EnvironmentHealthStatus" `
2017-03-03 19:48:24 +01:00
// The ARN of the custom platform.
PlatformArn * string ` type:"string" `
2016-03-07 21:42:30 +01:00
// The description of the AWS resources used by this environment.
Resources * EnvironmentResourcesDescription ` type:"structure" `
// The name of the SolutionStack deployed with this environment.
SolutionStackName * string ` type:"string" `
// The current operational status of the environment:
//
2016-11-19 19:41:01 +01:00
// * Launching: Environment is in the process of initial deployment.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * Updating: Environment is in the process of updating its configuration
// settings or application version.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * Ready: Environment is available to have an action performed on it, such
// as update or terminate.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * Terminating: Environment is in the shut-down process.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * Terminated: Environment is not running.
2016-03-07 21:42:30 +01:00
Status * string ` type:"string" enum:"EnvironmentStatus" `
// The name of the configuration template used to originally launch this environment.
TemplateName * string ` min:"1" type:"string" `
// Describes the current tier of this environment.
Tier * EnvironmentTier ` type:"structure" `
// The application version deployed in this environment.
VersionLabel * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s EnvironmentDescription ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EnvironmentDescription ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetAbortableOperationInProgress sets the AbortableOperationInProgress field's value.
func ( s * EnvironmentDescription ) SetAbortableOperationInProgress ( v bool ) * EnvironmentDescription {
s . AbortableOperationInProgress = & v
return s
}
// SetApplicationName sets the ApplicationName field's value.
func ( s * EnvironmentDescription ) SetApplicationName ( v string ) * EnvironmentDescription {
s . ApplicationName = & v
return s
}
// SetCNAME sets the CNAME field's value.
func ( s * EnvironmentDescription ) SetCNAME ( v string ) * EnvironmentDescription {
s . CNAME = & v
return s
}
// SetDateCreated sets the DateCreated field's value.
func ( s * EnvironmentDescription ) SetDateCreated ( v time . Time ) * EnvironmentDescription {
s . DateCreated = & v
return s
}
// SetDateUpdated sets the DateUpdated field's value.
func ( s * EnvironmentDescription ) SetDateUpdated ( v time . Time ) * EnvironmentDescription {
s . DateUpdated = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * EnvironmentDescription ) SetDescription ( v string ) * EnvironmentDescription {
s . Description = & v
return s
}
// SetEndpointURL sets the EndpointURL field's value.
func ( s * EnvironmentDescription ) SetEndpointURL ( v string ) * EnvironmentDescription {
s . EndpointURL = & v
return s
}
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * EnvironmentDescription ) SetEnvironmentId ( v string ) * EnvironmentDescription {
s . EnvironmentId = & v
return s
}
// SetEnvironmentLinks sets the EnvironmentLinks field's value.
func ( s * EnvironmentDescription ) SetEnvironmentLinks ( v [ ] * EnvironmentLink ) * EnvironmentDescription {
s . EnvironmentLinks = v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * EnvironmentDescription ) SetEnvironmentName ( v string ) * EnvironmentDescription {
s . EnvironmentName = & v
return s
}
// SetHealth sets the Health field's value.
func ( s * EnvironmentDescription ) SetHealth ( v string ) * EnvironmentDescription {
s . Health = & v
return s
}
// SetHealthStatus sets the HealthStatus field's value.
func ( s * EnvironmentDescription ) SetHealthStatus ( v string ) * EnvironmentDescription {
s . HealthStatus = & v
return s
}
2017-03-03 19:48:24 +01:00
// SetPlatformArn sets the PlatformArn field's value.
func ( s * EnvironmentDescription ) SetPlatformArn ( v string ) * EnvironmentDescription {
s . PlatformArn = & v
return s
}
2016-11-19 19:41:01 +01:00
// SetResources sets the Resources field's value.
func ( s * EnvironmentDescription ) SetResources ( v * EnvironmentResourcesDescription ) * EnvironmentDescription {
s . Resources = v
return s
}
// SetSolutionStackName sets the SolutionStackName field's value.
func ( s * EnvironmentDescription ) SetSolutionStackName ( v string ) * EnvironmentDescription {
s . SolutionStackName = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * EnvironmentDescription ) SetStatus ( v string ) * EnvironmentDescription {
s . Status = & v
return s
}
// SetTemplateName sets the TemplateName field's value.
func ( s * EnvironmentDescription ) SetTemplateName ( v string ) * EnvironmentDescription {
s . TemplateName = & v
return s
}
// SetTier sets the Tier field's value.
func ( s * EnvironmentDescription ) SetTier ( v * EnvironmentTier ) * EnvironmentDescription {
s . Tier = v
return s
}
// SetVersionLabel sets the VersionLabel field's value.
func ( s * EnvironmentDescription ) SetVersionLabel ( v string ) * EnvironmentDescription {
s . VersionLabel = & v
return s
}
2016-03-07 21:42:30 +01:00
// Result message containing a list of environment descriptions.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EnvironmentDescriptionsMessage
2016-03-07 21:42:30 +01:00
type EnvironmentDescriptionsMessage struct {
_ struct { } ` type:"structure" `
// Returns an EnvironmentDescription list.
Environments [ ] * EnvironmentDescription ` type:"list" `
}
// String returns the string representation
func ( s EnvironmentDescriptionsMessage ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EnvironmentDescriptionsMessage ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetEnvironments sets the Environments field's value.
func ( s * EnvironmentDescriptionsMessage ) SetEnvironments ( v [ ] * EnvironmentDescription ) * EnvironmentDescriptionsMessage {
s . Environments = v
return s
}
2016-03-07 21:42:30 +01:00
// The information retrieved from the Amazon EC2 instances.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EnvironmentInfoDescription
2016-03-07 21:42:30 +01:00
type EnvironmentInfoDescription struct {
_ struct { } ` type:"structure" `
// The Amazon EC2 Instance ID for this information.
Ec2InstanceId * string ` type:"string" `
// The type of information retrieved.
InfoType * string ` type:"string" enum:"EnvironmentInfoType" `
// The retrieved information.
Message * string ` type:"string" `
// The time stamp when this information was retrieved.
SampleTimestamp * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
}
// String returns the string representation
func ( s EnvironmentInfoDescription ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EnvironmentInfoDescription ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetEc2InstanceId sets the Ec2InstanceId field's value.
func ( s * EnvironmentInfoDescription ) SetEc2InstanceId ( v string ) * EnvironmentInfoDescription {
s . Ec2InstanceId = & v
return s
}
// SetInfoType sets the InfoType field's value.
func ( s * EnvironmentInfoDescription ) SetInfoType ( v string ) * EnvironmentInfoDescription {
s . InfoType = & v
return s
}
// SetMessage sets the Message field's value.
func ( s * EnvironmentInfoDescription ) SetMessage ( v string ) * EnvironmentInfoDescription {
s . Message = & v
return s
}
// SetSampleTimestamp sets the SampleTimestamp field's value.
func ( s * EnvironmentInfoDescription ) SetSampleTimestamp ( v time . Time ) * EnvironmentInfoDescription {
s . SampleTimestamp = & v
return s
}
2016-03-07 21:42:30 +01:00
// A link to another environment, defined in the environment's manifest. Links
// provide connection information in system properties that can be used to connect
// to another environment in the same group. See Environment Manifest (env.yaml)
2016-03-24 23:52:51 +01:00
// (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html)
2016-03-07 21:42:30 +01:00
// for details.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EnvironmentLink
2016-03-07 21:42:30 +01:00
type EnvironmentLink struct {
_ struct { } ` type:"structure" `
// The name of the linked environment (the dependency).
EnvironmentName * string ` type:"string" `
// The name of the link.
LinkName * string ` type:"string" `
}
// String returns the string representation
func ( s EnvironmentLink ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EnvironmentLink ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * EnvironmentLink ) SetEnvironmentName ( v string ) * EnvironmentLink {
s . EnvironmentName = & v
return s
}
// SetLinkName sets the LinkName field's value.
func ( s * EnvironmentLink ) SetLinkName ( v string ) * EnvironmentLink {
s . LinkName = & v
return s
}
2016-03-07 21:42:30 +01:00
// Describes the AWS resources in use by this environment. This data is live.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EnvironmentResourceDescription
2016-03-07 21:42:30 +01:00
type EnvironmentResourceDescription struct {
_ struct { } ` type:"structure" `
// The AutoScalingGroups used by this environment.
AutoScalingGroups [ ] * AutoScalingGroup ` type:"list" `
// The name of the environment.
EnvironmentName * string ` min:"4" type:"string" `
// The Amazon EC2 instances used by this environment.
Instances [ ] * Instance ` type:"list" `
// The Auto Scaling launch configurations in use by this environment.
LaunchConfigurations [ ] * LaunchConfiguration ` type:"list" `
// The LoadBalancers in use by this environment.
LoadBalancers [ ] * LoadBalancer ` type:"list" `
// The queues used by this environment.
Queues [ ] * Queue ` type:"list" `
// The AutoScaling triggers in use by this environment.
Triggers [ ] * Trigger ` type:"list" `
}
// String returns the string representation
func ( s EnvironmentResourceDescription ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EnvironmentResourceDescription ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetAutoScalingGroups sets the AutoScalingGroups field's value.
func ( s * EnvironmentResourceDescription ) SetAutoScalingGroups ( v [ ] * AutoScalingGroup ) * EnvironmentResourceDescription {
s . AutoScalingGroups = v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * EnvironmentResourceDescription ) SetEnvironmentName ( v string ) * EnvironmentResourceDescription {
s . EnvironmentName = & v
return s
}
// SetInstances sets the Instances field's value.
func ( s * EnvironmentResourceDescription ) SetInstances ( v [ ] * Instance ) * EnvironmentResourceDescription {
s . Instances = v
return s
}
// SetLaunchConfigurations sets the LaunchConfigurations field's value.
func ( s * EnvironmentResourceDescription ) SetLaunchConfigurations ( v [ ] * LaunchConfiguration ) * EnvironmentResourceDescription {
s . LaunchConfigurations = v
return s
}
// SetLoadBalancers sets the LoadBalancers field's value.
func ( s * EnvironmentResourceDescription ) SetLoadBalancers ( v [ ] * LoadBalancer ) * EnvironmentResourceDescription {
s . LoadBalancers = v
return s
}
// SetQueues sets the Queues field's value.
func ( s * EnvironmentResourceDescription ) SetQueues ( v [ ] * Queue ) * EnvironmentResourceDescription {
s . Queues = v
return s
}
// SetTriggers sets the Triggers field's value.
func ( s * EnvironmentResourceDescription ) SetTriggers ( v [ ] * Trigger ) * EnvironmentResourceDescription {
s . Triggers = v
return s
}
2016-03-07 21:42:30 +01:00
// Describes the AWS resources in use by this environment. This data is not
// live data.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EnvironmentResourcesDescription
2016-03-07 21:42:30 +01:00
type EnvironmentResourcesDescription struct {
_ struct { } ` type:"structure" `
// Describes the LoadBalancer.
LoadBalancer * LoadBalancerDescription ` type:"structure" `
}
// String returns the string representation
func ( s EnvironmentResourcesDescription ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EnvironmentResourcesDescription ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetLoadBalancer sets the LoadBalancer field's value.
func ( s * EnvironmentResourcesDescription ) SetLoadBalancer ( v * LoadBalancerDescription ) * EnvironmentResourcesDescription {
s . LoadBalancer = v
return s
}
2016-03-07 21:42:30 +01:00
// Describes the properties of an environment tier
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EnvironmentTier
2016-03-07 21:42:30 +01:00
type EnvironmentTier struct {
_ struct { } ` type:"structure" `
// The name of this environment tier.
Name * string ` type:"string" `
// The type of this environment tier.
Type * string ` type:"string" `
// The version of this environment tier.
Version * string ` type:"string" `
}
// String returns the string representation
func ( s EnvironmentTier ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EnvironmentTier ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetName sets the Name field's value.
func ( s * EnvironmentTier ) SetName ( v string ) * EnvironmentTier {
s . Name = & v
return s
}
// SetType sets the Type field's value.
func ( s * EnvironmentTier ) SetType ( v string ) * EnvironmentTier {
s . Type = & v
return s
}
// SetVersion sets the Version field's value.
func ( s * EnvironmentTier ) SetVersion ( v string ) * EnvironmentTier {
s . Version = & v
return s
}
2016-03-07 21:42:30 +01:00
// Describes an event.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/EventDescription
2016-03-07 21:42:30 +01:00
type EventDescription struct {
_ struct { } ` type:"structure" `
// The application associated with the event.
ApplicationName * string ` min:"1" type:"string" `
// The name of the environment associated with this event.
EnvironmentName * string ` min:"4" type:"string" `
// The date when the event occurred.
EventDate * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// The event message.
Message * string ` type:"string" `
2017-03-03 19:48:24 +01:00
// The ARN of the custom platform.
PlatformArn * string ` type:"string" `
2016-03-07 21:42:30 +01:00
// The web service request ID for the activity of this event.
RequestId * string ` type:"string" `
// The severity level of this event.
Severity * string ` type:"string" enum:"EventSeverity" `
// The name of the configuration associated with this event.
TemplateName * string ` min:"1" type:"string" `
// The release label for the application version associated with this event.
VersionLabel * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s EventDescription ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EventDescription ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * EventDescription ) SetApplicationName ( v string ) * EventDescription {
s . ApplicationName = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * EventDescription ) SetEnvironmentName ( v string ) * EventDescription {
s . EnvironmentName = & v
return s
}
// SetEventDate sets the EventDate field's value.
func ( s * EventDescription ) SetEventDate ( v time . Time ) * EventDescription {
s . EventDate = & v
return s
}
// SetMessage sets the Message field's value.
func ( s * EventDescription ) SetMessage ( v string ) * EventDescription {
s . Message = & v
return s
}
2017-03-03 19:48:24 +01:00
// SetPlatformArn sets the PlatformArn field's value.
func ( s * EventDescription ) SetPlatformArn ( v string ) * EventDescription {
s . PlatformArn = & v
return s
}
2016-11-19 19:41:01 +01:00
// SetRequestId sets the RequestId field's value.
func ( s * EventDescription ) SetRequestId ( v string ) * EventDescription {
s . RequestId = & v
return s
}
// SetSeverity sets the Severity field's value.
func ( s * EventDescription ) SetSeverity ( v string ) * EventDescription {
s . Severity = & v
return s
}
// SetTemplateName sets the TemplateName field's value.
func ( s * EventDescription ) SetTemplateName ( v string ) * EventDescription {
s . TemplateName = & v
return s
}
// SetVersionLabel sets the VersionLabel field's value.
func ( s * EventDescription ) SetVersionLabel ( v string ) * EventDescription {
s . VersionLabel = & v
return s
}
2016-03-07 21:42:30 +01:00
// The description of an Amazon EC2 instance.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/Instance
2016-03-07 21:42:30 +01:00
type Instance struct {
_ struct { } ` type:"structure" `
// The ID of the Amazon EC2 instance.
Id * string ` type:"string" `
}
// String returns the string representation
func ( s Instance ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Instance ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetId sets the Id field's value.
func ( s * Instance ) SetId ( v string ) * Instance {
s . Id = & v
return s
}
2016-03-07 21:42:30 +01:00
// Represents summary information about the health of an instance. For more
// information, see Health Colors and Statuses (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/InstanceHealthSummary
2016-03-07 21:42:30 +01:00
type InstanceHealthSummary struct {
_ struct { } ` type:"structure" `
// Red. The health agent is reporting a high number of request failures or other
// issues for an instance or environment.
Degraded * int64 ` type:"integer" `
// Green. An operation is in progress on an instance.
Info * int64 ` type:"integer" `
// Grey. AWS Elastic Beanstalk and the health agent are reporting no data on
// an instance.
NoData * int64 ` type:"integer" `
// Green. An instance is passing health checks and the health agent is not reporting
// any problems.
Ok * int64 ` type:"integer" `
// Grey. An operation is in progress on an instance within the command timeout.
Pending * int64 ` type:"integer" `
// Red. The health agent is reporting a very high number of request failures
// or other issues for an instance or environment.
Severe * int64 ` type:"integer" `
// Grey. AWS Elastic Beanstalk and the health agent are reporting an insufficient
// amount of data on an instance.
Unknown * int64 ` type:"integer" `
// Yellow. The health agent is reporting a moderate number of request failures
// or other issues for an instance or environment.
Warning * int64 ` type:"integer" `
}
// String returns the string representation
func ( s InstanceHealthSummary ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s InstanceHealthSummary ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetDegraded sets the Degraded field's value.
func ( s * InstanceHealthSummary ) SetDegraded ( v int64 ) * InstanceHealthSummary {
s . Degraded = & v
return s
}
// SetInfo sets the Info field's value.
func ( s * InstanceHealthSummary ) SetInfo ( v int64 ) * InstanceHealthSummary {
s . Info = & v
return s
}
// SetNoData sets the NoData field's value.
func ( s * InstanceHealthSummary ) SetNoData ( v int64 ) * InstanceHealthSummary {
s . NoData = & v
return s
}
// SetOk sets the Ok field's value.
func ( s * InstanceHealthSummary ) SetOk ( v int64 ) * InstanceHealthSummary {
s . Ok = & v
return s
}
// SetPending sets the Pending field's value.
func ( s * InstanceHealthSummary ) SetPending ( v int64 ) * InstanceHealthSummary {
s . Pending = & v
return s
}
// SetSevere sets the Severe field's value.
func ( s * InstanceHealthSummary ) SetSevere ( v int64 ) * InstanceHealthSummary {
s . Severe = & v
return s
}
// SetUnknown sets the Unknown field's value.
func ( s * InstanceHealthSummary ) SetUnknown ( v int64 ) * InstanceHealthSummary {
s . Unknown = & v
return s
}
// SetWarning sets the Warning field's value.
func ( s * InstanceHealthSummary ) SetWarning ( v int64 ) * InstanceHealthSummary {
s . Warning = & v
return s
}
2016-03-07 21:42:30 +01:00
// Represents the average latency for the slowest X percent of requests over
// the last 10 seconds.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/Latency
2016-03-07 21:42:30 +01:00
type Latency struct {
_ struct { } ` type:"structure" `
// The average latency for the slowest 90 percent of requests over the last
// 10 seconds.
P10 * float64 ` type:"double" `
// The average latency for the slowest 50 percent of requests over the last
// 10 seconds.
P50 * float64 ` type:"double" `
// The average latency for the slowest 25 percent of requests over the last
// 10 seconds.
P75 * float64 ` type:"double" `
// The average latency for the slowest 15 percent of requests over the last
// 10 seconds.
P85 * float64 ` type:"double" `
// The average latency for the slowest 10 percent of requests over the last
// 10 seconds.
P90 * float64 ` type:"double" `
// The average latency for the slowest 5 percent of requests over the last 10
// seconds.
P95 * float64 ` type:"double" `
// The average latency for the slowest 1 percent of requests over the last 10
// seconds.
P99 * float64 ` type:"double" `
// The average latency for the slowest 0.1 percent of requests over the last
// 10 seconds.
P999 * float64 ` type:"double" `
}
// String returns the string representation
func ( s Latency ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Latency ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetP10 sets the P10 field's value.
func ( s * Latency ) SetP10 ( v float64 ) * Latency {
s . P10 = & v
return s
}
// SetP50 sets the P50 field's value.
func ( s * Latency ) SetP50 ( v float64 ) * Latency {
s . P50 = & v
return s
}
// SetP75 sets the P75 field's value.
func ( s * Latency ) SetP75 ( v float64 ) * Latency {
s . P75 = & v
return s
}
// SetP85 sets the P85 field's value.
func ( s * Latency ) SetP85 ( v float64 ) * Latency {
s . P85 = & v
return s
}
// SetP90 sets the P90 field's value.
func ( s * Latency ) SetP90 ( v float64 ) * Latency {
s . P90 = & v
return s
}
// SetP95 sets the P95 field's value.
func ( s * Latency ) SetP95 ( v float64 ) * Latency {
s . P95 = & v
return s
}
// SetP99 sets the P99 field's value.
func ( s * Latency ) SetP99 ( v float64 ) * Latency {
s . P99 = & v
return s
}
// SetP999 sets the P999 field's value.
func ( s * Latency ) SetP999 ( v float64 ) * Latency {
s . P999 = & v
return s
}
2016-03-07 21:42:30 +01:00
// Describes an Auto Scaling launch configuration.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/LaunchConfiguration
2016-03-07 21:42:30 +01:00
type LaunchConfiguration struct {
_ struct { } ` type:"structure" `
// The name of the launch configuration.
Name * string ` type:"string" `
}
// String returns the string representation
func ( s LaunchConfiguration ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s LaunchConfiguration ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetName sets the Name field's value.
func ( s * LaunchConfiguration ) SetName ( v string ) * LaunchConfiguration {
s . Name = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListAvailableSolutionStacksInput
2016-03-07 21:42:30 +01:00
type ListAvailableSolutionStacksInput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s ListAvailableSolutionStacksInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListAvailableSolutionStacksInput ) GoString ( ) string {
return s . String ( )
}
// A list of available AWS Elastic Beanstalk solution stacks.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListAvailableSolutionStacksResultMessage
2016-03-07 21:42:30 +01:00
type ListAvailableSolutionStacksOutput struct {
_ struct { } ` type:"structure" `
// A list of available solution stacks and their SolutionStackDescription.
SolutionStackDetails [ ] * SolutionStackDescription ` type:"list" `
// A list of available solution stacks.
SolutionStacks [ ] * string ` type:"list" `
}
// String returns the string representation
func ( s ListAvailableSolutionStacksOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListAvailableSolutionStacksOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetSolutionStackDetails sets the SolutionStackDetails field's value.
func ( s * ListAvailableSolutionStacksOutput ) SetSolutionStackDetails ( v [ ] * SolutionStackDescription ) * ListAvailableSolutionStacksOutput {
s . SolutionStackDetails = v
return s
}
// SetSolutionStacks sets the SolutionStacks field's value.
func ( s * ListAvailableSolutionStacksOutput ) SetSolutionStacks ( v [ ] * string ) * ListAvailableSolutionStacksOutput {
s . SolutionStacks = v
return s
}
2017-03-03 19:48:24 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListPlatformVersionsRequest
type ListPlatformVersionsInput struct {
_ struct { } ` type:"structure" `
// List only the platforms where the platform member value relates to one of
// the supplied values.
Filters [ ] * PlatformFilter ` type:"list" `
// The maximum number of platform values returned in one call.
MaxRecords * int64 ` min:"1" type:"integer" `
// The starting index into the remaining list of platforms. Use the NextToken
// value from a previous ListPlatformVersion call.
NextToken * string ` type:"string" `
}
// String returns the string representation
func ( s ListPlatformVersionsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListPlatformVersionsInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ListPlatformVersionsInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ListPlatformVersionsInput" }
if s . MaxRecords != nil && * s . MaxRecords < 1 {
invalidParams . Add ( request . NewErrParamMinValue ( "MaxRecords" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetFilters sets the Filters field's value.
func ( s * ListPlatformVersionsInput ) SetFilters ( v [ ] * PlatformFilter ) * ListPlatformVersionsInput {
s . Filters = v
return s
}
// SetMaxRecords sets the MaxRecords field's value.
func ( s * ListPlatformVersionsInput ) SetMaxRecords ( v int64 ) * ListPlatformVersionsInput {
s . MaxRecords = & v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListPlatformVersionsInput ) SetNextToken ( v string ) * ListPlatformVersionsInput {
s . NextToken = & v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ListPlatformVersionsResult
type ListPlatformVersionsOutput struct {
_ struct { } ` type:"structure" `
// The starting index into the remaining list of platforms. if this value is
// not null, you can use it in a subsequent ListPlatformVersion call.
NextToken * string ` type:"string" `
// Detailed information about the platforms.
PlatformSummaryList [ ] * PlatformSummary ` type:"list" `
}
// String returns the string representation
func ( s ListPlatformVersionsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListPlatformVersionsOutput ) GoString ( ) string {
return s . String ( )
}
// SetNextToken sets the NextToken field's value.
func ( s * ListPlatformVersionsOutput ) SetNextToken ( v string ) * ListPlatformVersionsOutput {
s . NextToken = & v
return s
}
// SetPlatformSummaryList sets the PlatformSummaryList field's value.
func ( s * ListPlatformVersionsOutput ) SetPlatformSummaryList ( v [ ] * PlatformSummary ) * ListPlatformVersionsOutput {
s . PlatformSummaryList = v
return s
}
2016-03-07 21:42:30 +01:00
// Describes the properties of a Listener for the LoadBalancer.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/Listener
2016-03-07 21:42:30 +01:00
type Listener struct {
_ struct { } ` type:"structure" `
// The port that is used by the Listener.
Port * int64 ` type:"integer" `
// The protocol that is used by the Listener.
Protocol * string ` type:"string" `
}
// String returns the string representation
func ( s Listener ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Listener ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetPort sets the Port field's value.
func ( s * Listener ) SetPort ( v int64 ) * Listener {
s . Port = & v
return s
}
// SetProtocol sets the Protocol field's value.
func ( s * Listener ) SetProtocol ( v string ) * Listener {
s . Protocol = & v
return s
}
2016-03-07 21:42:30 +01:00
// Describes a LoadBalancer.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/LoadBalancer
2016-03-07 21:42:30 +01:00
type LoadBalancer struct {
_ struct { } ` type:"structure" `
// The name of the LoadBalancer.
Name * string ` type:"string" `
}
// 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
// SetName sets the Name field's value.
func ( s * LoadBalancer ) SetName ( v string ) * LoadBalancer {
s . Name = & v
return s
}
2016-03-07 21:42:30 +01:00
// Describes the details of a LoadBalancer.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/LoadBalancerDescription
2016-03-07 21:42:30 +01:00
type LoadBalancerDescription struct {
_ struct { } ` type:"structure" `
// The domain name of the LoadBalancer.
Domain * string ` type:"string" `
// A list of Listeners used by the LoadBalancer.
Listeners [ ] * Listener ` type:"list" `
// The name of the LoadBalancer.
LoadBalancerName * string ` type:"string" `
}
// String returns the string representation
func ( s LoadBalancerDescription ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s LoadBalancerDescription ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetDomain sets the Domain field's value.
func ( s * LoadBalancerDescription ) SetDomain ( v string ) * LoadBalancerDescription {
s . Domain = & v
return s
}
// SetListeners sets the Listeners field's value.
func ( s * LoadBalancerDescription ) SetListeners ( v [ ] * Listener ) * LoadBalancerDescription {
s . Listeners = v
return s
}
// SetLoadBalancerName sets the LoadBalancerName field's value.
func ( s * LoadBalancerDescription ) SetLoadBalancerName ( v string ) * LoadBalancerDescription {
s . LoadBalancerName = & v
return s
}
2016-05-05 03:06:27 +02:00
// The record of an upcoming or in-progress managed action.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ManagedAction
2016-05-05 03:06:27 +02:00
type ManagedAction struct {
_ struct { } ` type:"structure" `
// A description of the managed action.
ActionDescription * string ` type:"string" `
// A unique identifier for the managed action.
ActionId * string ` type:"string" `
// The type of managed action.
ActionType * string ` type:"string" enum:"ActionType" `
// The status of the managed action. If the action is Scheduled, you can apply
// it immediately with ApplyEnvironmentManagedAction.
Status * string ` type:"string" enum:"ActionStatus" `
// The start time of the maintenance window in which the managed action will
// execute.
WindowStartTime * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
}
// String returns the string representation
func ( s ManagedAction ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ManagedAction ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetActionDescription sets the ActionDescription field's value.
func ( s * ManagedAction ) SetActionDescription ( v string ) * ManagedAction {
s . ActionDescription = & v
return s
}
// SetActionId sets the ActionId field's value.
func ( s * ManagedAction ) SetActionId ( v string ) * ManagedAction {
s . ActionId = & v
return s
}
// SetActionType sets the ActionType field's value.
func ( s * ManagedAction ) SetActionType ( v string ) * ManagedAction {
s . ActionType = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * ManagedAction ) SetStatus ( v string ) * ManagedAction {
s . Status = & v
return s
}
// SetWindowStartTime sets the WindowStartTime field's value.
func ( s * ManagedAction ) SetWindowStartTime ( v time . Time ) * ManagedAction {
s . WindowStartTime = & v
return s
}
2016-05-05 03:06:27 +02:00
// The record of a completed or failed managed action.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ManagedActionHistoryItem
2016-05-05 03:06:27 +02:00
type ManagedActionHistoryItem struct {
_ struct { } ` type:"structure" `
// A description of the managed action.
ActionDescription * string ` type:"string" `
// A unique identifier for the managed action.
ActionId * string ` type:"string" `
// The type of the managed action.
ActionType * string ` type:"string" enum:"ActionType" `
// The date and time that the action started executing.
ExecutedTime * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// If the action failed, a description of the failure.
FailureDescription * string ` type:"string" `
// If the action failed, the type of failure.
FailureType * string ` type:"string" enum:"FailureType" `
// The date and time that the action finished executing.
FinishedTime * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// The status of the action.
Status * string ` type:"string" enum:"ActionHistoryStatus" `
}
// String returns the string representation
func ( s ManagedActionHistoryItem ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ManagedActionHistoryItem ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetActionDescription sets the ActionDescription field's value.
func ( s * ManagedActionHistoryItem ) SetActionDescription ( v string ) * ManagedActionHistoryItem {
s . ActionDescription = & v
return s
}
// SetActionId sets the ActionId field's value.
func ( s * ManagedActionHistoryItem ) SetActionId ( v string ) * ManagedActionHistoryItem {
s . ActionId = & v
return s
}
// SetActionType sets the ActionType field's value.
func ( s * ManagedActionHistoryItem ) SetActionType ( v string ) * ManagedActionHistoryItem {
s . ActionType = & v
return s
}
// SetExecutedTime sets the ExecutedTime field's value.
func ( s * ManagedActionHistoryItem ) SetExecutedTime ( v time . Time ) * ManagedActionHistoryItem {
s . ExecutedTime = & v
return s
}
// SetFailureDescription sets the FailureDescription field's value.
func ( s * ManagedActionHistoryItem ) SetFailureDescription ( v string ) * ManagedActionHistoryItem {
s . FailureDescription = & v
return s
}
// SetFailureType sets the FailureType field's value.
func ( s * ManagedActionHistoryItem ) SetFailureType ( v string ) * ManagedActionHistoryItem {
s . FailureType = & v
return s
}
// SetFinishedTime sets the FinishedTime field's value.
func ( s * ManagedActionHistoryItem ) SetFinishedTime ( v time . Time ) * ManagedActionHistoryItem {
s . FinishedTime = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * ManagedActionHistoryItem ) SetStatus ( v string ) * ManagedActionHistoryItem {
s . Status = & v
return s
}
2017-01-02 21:35:31 +01:00
// A lifecycle rule that deletes application versions after the specified number
// of days.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/MaxAgeRule
type MaxAgeRule struct {
_ struct { } ` type:"structure" `
// Set to true to delete a version's source bundle from Amazon S3 when Elastic
// Beanstalk deletes the application version.
DeleteSourceFromS3 * bool ` type:"boolean" `
// Specify true to apply the rule, or false to disable it.
//
// Enabled is a required field
Enabled * bool ` type:"boolean" required:"true" `
// Specify the number of days to retain an application versions.
MaxAgeInDays * int64 ` type:"integer" `
}
// String returns the string representation
func ( s MaxAgeRule ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s MaxAgeRule ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * MaxAgeRule ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "MaxAgeRule" }
if s . Enabled == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Enabled" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetDeleteSourceFromS3 sets the DeleteSourceFromS3 field's value.
func ( s * MaxAgeRule ) SetDeleteSourceFromS3 ( v bool ) * MaxAgeRule {
s . DeleteSourceFromS3 = & v
return s
}
// SetEnabled sets the Enabled field's value.
func ( s * MaxAgeRule ) SetEnabled ( v bool ) * MaxAgeRule {
s . Enabled = & v
return s
}
// SetMaxAgeInDays sets the MaxAgeInDays field's value.
func ( s * MaxAgeRule ) SetMaxAgeInDays ( v int64 ) * MaxAgeRule {
s . MaxAgeInDays = & v
return s
}
// A lifecycle rule that deletes the oldest application version when the maximum
// count is exceeded.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/MaxCountRule
type MaxCountRule struct {
_ struct { } ` type:"structure" `
// Set to true to delete a version's source bundle from Amazon S3 when Elastic
// Beanstalk deletes the application version.
DeleteSourceFromS3 * bool ` type:"boolean" `
// Specify true to apply the rule, or false to disable it.
//
// Enabled is a required field
Enabled * bool ` type:"boolean" required:"true" `
// Specify the maximum number of application versions to retain.
MaxCount * int64 ` type:"integer" `
}
// String returns the string representation
func ( s MaxCountRule ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s MaxCountRule ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * MaxCountRule ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "MaxCountRule" }
if s . Enabled == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Enabled" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetDeleteSourceFromS3 sets the DeleteSourceFromS3 field's value.
func ( s * MaxCountRule ) SetDeleteSourceFromS3 ( v bool ) * MaxCountRule {
s . DeleteSourceFromS3 = & v
return s
}
// SetEnabled sets the Enabled field's value.
func ( s * MaxCountRule ) SetEnabled ( v bool ) * MaxCountRule {
s . Enabled = & v
return s
}
// SetMaxCount sets the MaxCount field's value.
func ( s * MaxCountRule ) SetMaxCount ( v int64 ) * MaxCountRule {
s . MaxCount = & v
return s
}
2016-03-07 21:42:30 +01:00
// A regular expression representing a restriction on a string configuration
// option value.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/OptionRestrictionRegex
2016-03-07 21:42:30 +01:00
type OptionRestrictionRegex struct {
_ struct { } ` type:"structure" `
// A unique name representing this regular expression.
Label * string ` type:"string" `
// The regular expression pattern that a string configuration option value with
// this restriction must match.
Pattern * string ` type:"string" `
}
// String returns the string representation
func ( s OptionRestrictionRegex ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s OptionRestrictionRegex ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetLabel sets the Label field's value.
func ( s * OptionRestrictionRegex ) SetLabel ( v string ) * OptionRestrictionRegex {
s . Label = & v
return s
}
// SetPattern sets the Pattern field's value.
func ( s * OptionRestrictionRegex ) SetPattern ( v string ) * OptionRestrictionRegex {
s . Pattern = & v
return s
}
2016-03-07 21:42:30 +01:00
// A specification identifying an individual configuration option.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/OptionSpecification
2016-03-07 21:42:30 +01:00
type OptionSpecification struct {
_ struct { } ` type:"structure" `
// A unique namespace identifying the option's associated AWS resource.
Namespace * string ` type:"string" `
// The name of the configuration option.
OptionName * string ` type:"string" `
// A unique resource name for a time-based scaling configuration option.
ResourceName * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s OptionSpecification ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s OptionSpecification ) 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 * OptionSpecification ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "OptionSpecification" }
if s . ResourceName != nil && len ( * s . ResourceName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ResourceName" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetNamespace sets the Namespace field's value.
func ( s * OptionSpecification ) SetNamespace ( v string ) * OptionSpecification {
s . Namespace = & v
return s
}
// SetOptionName sets the OptionName field's value.
func ( s * OptionSpecification ) SetOptionName ( v string ) * OptionSpecification {
s . OptionName = & v
return s
}
// SetResourceName sets the ResourceName field's value.
func ( s * OptionSpecification ) SetResourceName ( v string ) * OptionSpecification {
s . ResourceName = & v
return s
}
2017-03-03 19:48:24 +01:00
// Detailed information about a platform.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformDescription
type PlatformDescription struct {
_ struct { } ` type:"structure" `
// The custom AMIs supported by the platform.
CustomAmiList [ ] * CustomAmi ` type:"list" `
// The date when the platform was created.
DateCreated * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// The date when the platform was last updated.
DateUpdated * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
// The description of the platform.
Description * string ` type:"string" `
// The frameworks supported by the platform.
Frameworks [ ] * PlatformFramework ` type:"list" `
// Information about the maintainer of the platform.
Maintainer * string ` type:"string" `
// The operating system used by the platform.
OperatingSystemName * string ` type:"string" `
// The version of the operating system used by the platform.
OperatingSystemVersion * string ` type:"string" `
// The ARN of the platform.
PlatformArn * string ` type:"string" `
// The category of the platform.
PlatformCategory * string ` type:"string" `
// The name of the platform.
PlatformName * string ` type:"string" `
// The AWS account ID of the person who created the platform.
PlatformOwner * string ` type:"string" `
// The status of the platform.
PlatformStatus * string ` type:"string" enum:"PlatformStatus" `
// The version of the platform.
PlatformVersion * string ` type:"string" `
// The programming languages supported by the platform.
ProgrammingLanguages [ ] * PlatformProgrammingLanguage ` type:"list" `
// The name of the solution stack used by the platform.
SolutionStackName * string ` type:"string" `
// The additions supported by the platform.
SupportedAddonList [ ] * string ` type:"list" `
// The tiers supported by the platform.
SupportedTierList [ ] * string ` type:"list" `
}
// String returns the string representation
func ( s PlatformDescription ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s PlatformDescription ) GoString ( ) string {
return s . String ( )
}
// SetCustomAmiList sets the CustomAmiList field's value.
func ( s * PlatformDescription ) SetCustomAmiList ( v [ ] * CustomAmi ) * PlatformDescription {
s . CustomAmiList = v
return s
}
// SetDateCreated sets the DateCreated field's value.
func ( s * PlatformDescription ) SetDateCreated ( v time . Time ) * PlatformDescription {
s . DateCreated = & v
return s
}
// SetDateUpdated sets the DateUpdated field's value.
func ( s * PlatformDescription ) SetDateUpdated ( v time . Time ) * PlatformDescription {
s . DateUpdated = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * PlatformDescription ) SetDescription ( v string ) * PlatformDescription {
s . Description = & v
return s
}
// SetFrameworks sets the Frameworks field's value.
func ( s * PlatformDescription ) SetFrameworks ( v [ ] * PlatformFramework ) * PlatformDescription {
s . Frameworks = v
return s
}
// SetMaintainer sets the Maintainer field's value.
func ( s * PlatformDescription ) SetMaintainer ( v string ) * PlatformDescription {
s . Maintainer = & v
return s
}
// SetOperatingSystemName sets the OperatingSystemName field's value.
func ( s * PlatformDescription ) SetOperatingSystemName ( v string ) * PlatformDescription {
s . OperatingSystemName = & v
return s
}
// SetOperatingSystemVersion sets the OperatingSystemVersion field's value.
func ( s * PlatformDescription ) SetOperatingSystemVersion ( v string ) * PlatformDescription {
s . OperatingSystemVersion = & v
return s
}
// SetPlatformArn sets the PlatformArn field's value.
func ( s * PlatformDescription ) SetPlatformArn ( v string ) * PlatformDescription {
s . PlatformArn = & v
return s
}
// SetPlatformCategory sets the PlatformCategory field's value.
func ( s * PlatformDescription ) SetPlatformCategory ( v string ) * PlatformDescription {
s . PlatformCategory = & v
return s
}
// SetPlatformName sets the PlatformName field's value.
func ( s * PlatformDescription ) SetPlatformName ( v string ) * PlatformDescription {
s . PlatformName = & v
return s
}
// SetPlatformOwner sets the PlatformOwner field's value.
func ( s * PlatformDescription ) SetPlatformOwner ( v string ) * PlatformDescription {
s . PlatformOwner = & v
return s
}
// SetPlatformStatus sets the PlatformStatus field's value.
func ( s * PlatformDescription ) SetPlatformStatus ( v string ) * PlatformDescription {
s . PlatformStatus = & v
return s
}
// SetPlatformVersion sets the PlatformVersion field's value.
func ( s * PlatformDescription ) SetPlatformVersion ( v string ) * PlatformDescription {
s . PlatformVersion = & v
return s
}
// SetProgrammingLanguages sets the ProgrammingLanguages field's value.
func ( s * PlatformDescription ) SetProgrammingLanguages ( v [ ] * PlatformProgrammingLanguage ) * PlatformDescription {
s . ProgrammingLanguages = v
return s
}
// SetSolutionStackName sets the SolutionStackName field's value.
func ( s * PlatformDescription ) SetSolutionStackName ( v string ) * PlatformDescription {
s . SolutionStackName = & v
return s
}
// SetSupportedAddonList sets the SupportedAddonList field's value.
func ( s * PlatformDescription ) SetSupportedAddonList ( v [ ] * string ) * PlatformDescription {
s . SupportedAddonList = v
return s
}
// SetSupportedTierList sets the SupportedTierList field's value.
func ( s * PlatformDescription ) SetSupportedTierList ( v [ ] * string ) * PlatformDescription {
s . SupportedTierList = v
return s
}
// Specify criteria to restrict the results when listing custom platforms.
//
// The filter is evaluated as the expression:
//
// TypeOperatorValues[i]
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformFilter
type PlatformFilter struct {
_ struct { } ` type:"structure" `
// The operator to apply to the Type with each of the Values.
//
// Valid Values: = (equal to) | != (not equal to) | < (less than) | <= (less
// than or equal to) | > (greater than) | >= (greater than or equal to) | contains
// | begins_with | ends_with
Operator * string ` type:"string" `
// The custom platform attribute to which the filter values are applied.
//
// Valid Values: PlatformName | PlatformVersion | PlatformStatus | PlatformOwner
Type * string ` type:"string" `
// The list of values applied to the custom platform attribute.
Values [ ] * string ` type:"list" `
}
// String returns the string representation
func ( s PlatformFilter ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s PlatformFilter ) GoString ( ) string {
return s . String ( )
}
// SetOperator sets the Operator field's value.
func ( s * PlatformFilter ) SetOperator ( v string ) * PlatformFilter {
s . Operator = & v
return s
}
// SetType sets the Type field's value.
func ( s * PlatformFilter ) SetType ( v string ) * PlatformFilter {
s . Type = & v
return s
}
// SetValues sets the Values field's value.
func ( s * PlatformFilter ) SetValues ( v [ ] * string ) * PlatformFilter {
s . Values = v
return s
}
// A framework supported by the custom platform.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformFramework
type PlatformFramework struct {
_ struct { } ` type:"structure" `
// The name of the framework.
Name * string ` type:"string" `
// The version of the framework.
Version * string ` type:"string" `
}
// String returns the string representation
func ( s PlatformFramework ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s PlatformFramework ) GoString ( ) string {
return s . String ( )
}
// SetName sets the Name field's value.
func ( s * PlatformFramework ) SetName ( v string ) * PlatformFramework {
s . Name = & v
return s
}
// SetVersion sets the Version field's value.
func ( s * PlatformFramework ) SetVersion ( v string ) * PlatformFramework {
s . Version = & v
return s
}
// A programming language supported by the platform.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformProgrammingLanguage
type PlatformProgrammingLanguage struct {
_ struct { } ` type:"structure" `
// The name of the programming language.
Name * string ` type:"string" `
// The version of the programming language.
Version * string ` type:"string" `
}
// String returns the string representation
func ( s PlatformProgrammingLanguage ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s PlatformProgrammingLanguage ) GoString ( ) string {
return s . String ( )
}
// SetName sets the Name field's value.
func ( s * PlatformProgrammingLanguage ) SetName ( v string ) * PlatformProgrammingLanguage {
s . Name = & v
return s
}
// SetVersion sets the Version field's value.
func ( s * PlatformProgrammingLanguage ) SetVersion ( v string ) * PlatformProgrammingLanguage {
s . Version = & v
return s
}
// Detailed information about a platform.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformSummary
type PlatformSummary struct {
_ struct { } ` type:"structure" `
// The operating system used by the platform.
OperatingSystemName * string ` type:"string" `
// The version of the operating system used by the platform.
OperatingSystemVersion * string ` type:"string" `
// The ARN of the platform.
PlatformArn * string ` type:"string" `
// The category of platform.
PlatformCategory * string ` type:"string" `
// The AWS account ID of the person who created the platform.
PlatformOwner * string ` type:"string" `
// The status of the platform. You can create an environment from the platform
// once it is ready.
PlatformStatus * string ` type:"string" enum:"PlatformStatus" `
// The additions associated with the platform.
SupportedAddonList [ ] * string ` type:"list" `
// The tiers in which the platform runs.
SupportedTierList [ ] * string ` type:"list" `
}
// String returns the string representation
func ( s PlatformSummary ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s PlatformSummary ) GoString ( ) string {
return s . String ( )
}
// SetOperatingSystemName sets the OperatingSystemName field's value.
func ( s * PlatformSummary ) SetOperatingSystemName ( v string ) * PlatformSummary {
s . OperatingSystemName = & v
return s
}
// SetOperatingSystemVersion sets the OperatingSystemVersion field's value.
func ( s * PlatformSummary ) SetOperatingSystemVersion ( v string ) * PlatformSummary {
s . OperatingSystemVersion = & v
return s
}
// SetPlatformArn sets the PlatformArn field's value.
func ( s * PlatformSummary ) SetPlatformArn ( v string ) * PlatformSummary {
s . PlatformArn = & v
return s
}
// SetPlatformCategory sets the PlatformCategory field's value.
func ( s * PlatformSummary ) SetPlatformCategory ( v string ) * PlatformSummary {
s . PlatformCategory = & v
return s
}
// SetPlatformOwner sets the PlatformOwner field's value.
func ( s * PlatformSummary ) SetPlatformOwner ( v string ) * PlatformSummary {
s . PlatformOwner = & v
return s
}
// SetPlatformStatus sets the PlatformStatus field's value.
func ( s * PlatformSummary ) SetPlatformStatus ( v string ) * PlatformSummary {
s . PlatformStatus = & v
return s
}
// SetSupportedAddonList sets the SupportedAddonList field's value.
func ( s * PlatformSummary ) SetSupportedAddonList ( v [ ] * string ) * PlatformSummary {
s . SupportedAddonList = v
return s
}
// SetSupportedTierList sets the SupportedTierList field's value.
func ( s * PlatformSummary ) SetSupportedTierList ( v [ ] * string ) * PlatformSummary {
s . SupportedTierList = v
return s
}
2016-03-07 21:42:30 +01:00
// Describes a queue.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/Queue
2016-03-07 21:42:30 +01:00
type Queue struct {
_ struct { } ` type:"structure" `
// The name of the queue.
Name * string ` type:"string" `
// The URL of the queue.
URL * string ` type:"string" `
}
// String returns the string representation
func ( s Queue ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Queue ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetName sets the Name field's value.
func ( s * Queue ) SetName ( v string ) * Queue {
s . Name = & v
return s
}
// SetURL sets the URL field's value.
func ( s * Queue ) SetURL ( v string ) * Queue {
s . URL = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RebuildEnvironmentMessage
2016-03-07 21:42:30 +01:00
type RebuildEnvironmentInput struct {
_ struct { } ` type:"structure" `
// The ID of the environment to rebuild.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify either this or an EnvironmentName, or both. If
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
2016-03-07 21:42:30 +01:00
// error.
EnvironmentId * string ` type:"string" `
// The name of the environment to rebuild.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify either this or an EnvironmentId, or both. If
2016-03-07 21:42:30 +01:00
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
// error.
EnvironmentName * string ` min:"4" type:"string" `
}
// String returns the string representation
func ( s RebuildEnvironmentInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RebuildEnvironmentInput ) 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 * RebuildEnvironmentInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "RebuildEnvironmentInput" }
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * RebuildEnvironmentInput ) SetEnvironmentId ( v string ) * RebuildEnvironmentInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * RebuildEnvironmentInput ) SetEnvironmentName ( v string ) * RebuildEnvironmentInput {
s . EnvironmentName = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RebuildEnvironmentOutput
2016-03-07 21:42:30 +01:00
type RebuildEnvironmentOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s RebuildEnvironmentOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RebuildEnvironmentOutput ) GoString ( ) string {
return s . String ( )
}
2016-03-24 23:52:51 +01:00
// Request to retrieve logs from an environment and store them in your Elastic
// Beanstalk storage bucket.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RequestEnvironmentInfoMessage
2016-03-07 21:42:30 +01:00
type RequestEnvironmentInfoInput struct {
_ struct { } ` type:"structure" `
// The ID of the environment of the requested data.
//
2016-03-24 23:52:51 +01:00
// If no such environment is found, RequestEnvironmentInfo returns an InvalidParameterValue
2016-03-07 21:42:30 +01:00
// error.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify either this or an EnvironmentName, or both. If
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
2016-03-07 21:42:30 +01:00
// error.
EnvironmentId * string ` type:"string" `
// The name of the environment of the requested data.
//
2016-03-24 23:52:51 +01:00
// If no such environment is found, RequestEnvironmentInfo returns an InvalidParameterValue
2016-03-07 21:42:30 +01:00
// error.
//
2016-03-24 23:52:51 +01:00
// Condition: You must specify either this or an EnvironmentId, or both. If
2016-03-07 21:42:30 +01:00
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
// error.
EnvironmentName * string ` min:"4" type:"string" `
// The type of information to request.
2016-10-17 23:21:08 +02:00
//
// InfoType is a required field
2016-03-07 21:42:30 +01:00
InfoType * string ` type:"string" required:"true" enum:"EnvironmentInfoType" `
}
// String returns the string representation
func ( s RequestEnvironmentInfoInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RequestEnvironmentInfoInput ) 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 * RequestEnvironmentInfoInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "RequestEnvironmentInfoInput" }
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if s . InfoType == nil {
invalidParams . Add ( request . NewErrParamRequired ( "InfoType" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * RequestEnvironmentInfoInput ) SetEnvironmentId ( v string ) * RequestEnvironmentInfoInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * RequestEnvironmentInfoInput ) SetEnvironmentName ( v string ) * RequestEnvironmentInfoInput {
s . EnvironmentName = & v
return s
}
// SetInfoType sets the InfoType field's value.
func ( s * RequestEnvironmentInfoInput ) SetInfoType ( v string ) * RequestEnvironmentInfoInput {
s . InfoType = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RequestEnvironmentInfoOutput
2016-03-07 21:42:30 +01:00
type RequestEnvironmentInfoOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s RequestEnvironmentInfoOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RequestEnvironmentInfoOutput ) GoString ( ) string {
return s . String ( )
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RestartAppServerMessage
2016-03-07 21:42:30 +01:00
type RestartAppServerInput struct {
_ struct { } ` type:"structure" `
// The ID of the environment to restart the server for.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify either this or an EnvironmentName, or both. If
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
2016-03-07 21:42:30 +01:00
// error.
EnvironmentId * string ` type:"string" `
// The name of the environment to restart the server for.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify either this or an EnvironmentId, or both. If
2016-03-07 21:42:30 +01:00
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
// error.
EnvironmentName * string ` min:"4" type:"string" `
}
// String returns the string representation
func ( s RestartAppServerInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RestartAppServerInput ) 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 * RestartAppServerInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "RestartAppServerInput" }
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * RestartAppServerInput ) SetEnvironmentId ( v string ) * RestartAppServerInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * RestartAppServerInput ) SetEnvironmentName ( v string ) * RestartAppServerInput {
s . EnvironmentName = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RestartAppServerOutput
2016-03-07 21:42:30 +01:00
type RestartAppServerOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s RestartAppServerOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RestartAppServerOutput ) GoString ( ) string {
return s . String ( )
}
2016-03-24 23:52:51 +01:00
// Request to download logs retrieved with RequestEnvironmentInfo.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RetrieveEnvironmentInfoMessage
2016-03-07 21:42:30 +01:00
type RetrieveEnvironmentInfoInput struct {
_ struct { } ` type:"structure" `
// The ID of the data's environment.
//
2016-03-24 23:52:51 +01:00
// If no such environment is found, returns an InvalidParameterValue error.
2016-03-07 21:42:30 +01:00
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify either this or an EnvironmentName, or both. If
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
2016-03-07 21:42:30 +01:00
// error.
EnvironmentId * string ` type:"string" `
// The name of the data's environment.
//
2016-11-19 19:41:01 +01:00
// If no such environment is found, returns an InvalidParameterValue error.
2016-03-07 21:42:30 +01:00
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify either this or an EnvironmentId, or both. If
2016-03-07 21:42:30 +01:00
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
// error.
EnvironmentName * string ` min:"4" type:"string" `
// The type of information to retrieve.
2016-10-17 23:21:08 +02:00
//
// InfoType is a required field
2016-03-07 21:42:30 +01:00
InfoType * string ` type:"string" required:"true" enum:"EnvironmentInfoType" `
}
// String returns the string representation
func ( s RetrieveEnvironmentInfoInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RetrieveEnvironmentInfoInput ) 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 * RetrieveEnvironmentInfoInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "RetrieveEnvironmentInfoInput" }
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if s . InfoType == nil {
invalidParams . Add ( request . NewErrParamRequired ( "InfoType" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * RetrieveEnvironmentInfoInput ) SetEnvironmentId ( v string ) * RetrieveEnvironmentInfoInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * RetrieveEnvironmentInfoInput ) SetEnvironmentName ( v string ) * RetrieveEnvironmentInfoInput {
s . EnvironmentName = & v
return s
}
// SetInfoType sets the InfoType field's value.
func ( s * RetrieveEnvironmentInfoInput ) SetInfoType ( v string ) * RetrieveEnvironmentInfoInput {
s . InfoType = & v
return s
}
2016-03-07 21:42:30 +01:00
// Result message containing a description of the requested environment info.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/RetrieveEnvironmentInfoResultMessage
2016-03-07 21:42:30 +01:00
type RetrieveEnvironmentInfoOutput struct {
_ struct { } ` type:"structure" `
// The EnvironmentInfoDescription of the environment.
EnvironmentInfo [ ] * EnvironmentInfoDescription ` type:"list" `
}
// String returns the string representation
func ( s RetrieveEnvironmentInfoOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RetrieveEnvironmentInfoOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetEnvironmentInfo sets the EnvironmentInfo field's value.
func ( s * RetrieveEnvironmentInfoOutput ) SetEnvironmentInfo ( v [ ] * EnvironmentInfoDescription ) * RetrieveEnvironmentInfoOutput {
s . EnvironmentInfo = v
return s
}
2016-12-02 15:37:53 +01:00
// The bucket and key of an item stored in Amazon S3.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/S3Location
2016-03-07 21:42:30 +01:00
type S3Location struct {
_ struct { } ` type:"structure" `
// The Amazon S3 bucket where the data is located.
S3Bucket * string ` type:"string" `
// The Amazon S3 key where the data is located.
S3Key * string ` type:"string" `
}
// String returns the string representation
func ( s S3Location ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s S3Location ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetS3Bucket sets the S3Bucket field's value.
func ( s * S3Location ) SetS3Bucket ( v string ) * S3Location {
s . S3Bucket = & v
return s
}
// SetS3Key sets the S3Key field's value.
func ( s * S3Location ) SetS3Key ( v string ) * S3Location {
s . S3Key = & v
return s
}
2016-12-02 15:37:53 +01:00
// Detailed health information about an Amazon EC2 instance in your Elastic
// Beanstalk environment.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SingleInstanceHealth
2016-03-07 21:42:30 +01:00
type SingleInstanceHealth struct {
_ struct { } ` type:"structure" `
2016-12-02 15:37:53 +01:00
// Request metrics from your application.
2016-03-07 21:42:30 +01:00
ApplicationMetrics * ApplicationMetrics ` type:"structure" `
2016-05-05 03:06:27 +02:00
// The availability zone in which the instance runs.
AvailabilityZone * string ` type:"string" `
2016-03-07 21:42:30 +01:00
// Represents the causes, which provide more information about the current health
// status.
Causes [ ] * string ` type:"list" `
// Represents the color indicator that gives you information about the health
// of the EC2 instance. For more information, see Health Colors and Statuses
// (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html).
Color * string ` type:"string" `
2016-05-05 03:06:27 +02:00
// Information about the most recent deployment to an instance.
Deployment * Deployment ` type:"structure" `
2016-03-07 21:42:30 +01:00
// Returns the health status of the specified instance. For more information,
// see Health Colors and Statuses (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html).
HealthStatus * string ` type:"string" `
// The ID of the Amazon EC2 instance.
InstanceId * string ` min:"1" type:"string" `
2016-05-05 03:06:27 +02:00
// The instance's type.
InstanceType * string ` type:"string" `
2016-03-07 21:42:30 +01:00
// The time at which the EC2 instance was launched.
LaunchedAt * time . Time ` type:"timestamp" timestampFormat:"iso8601" `
2016-12-02 15:37:53 +01:00
// Operating system metrics from the instance.
2016-03-07 21:42:30 +01:00
System * SystemStatus ` type:"structure" `
}
// String returns the string representation
func ( s SingleInstanceHealth ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SingleInstanceHealth ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetApplicationMetrics sets the ApplicationMetrics field's value.
func ( s * SingleInstanceHealth ) SetApplicationMetrics ( v * ApplicationMetrics ) * SingleInstanceHealth {
s . ApplicationMetrics = v
return s
}
// SetAvailabilityZone sets the AvailabilityZone field's value.
func ( s * SingleInstanceHealth ) SetAvailabilityZone ( v string ) * SingleInstanceHealth {
s . AvailabilityZone = & v
return s
}
// SetCauses sets the Causes field's value.
func ( s * SingleInstanceHealth ) SetCauses ( v [ ] * string ) * SingleInstanceHealth {
s . Causes = v
return s
}
// SetColor sets the Color field's value.
func ( s * SingleInstanceHealth ) SetColor ( v string ) * SingleInstanceHealth {
s . Color = & v
return s
}
// SetDeployment sets the Deployment field's value.
func ( s * SingleInstanceHealth ) SetDeployment ( v * Deployment ) * SingleInstanceHealth {
s . Deployment = v
return s
}
// SetHealthStatus sets the HealthStatus field's value.
func ( s * SingleInstanceHealth ) SetHealthStatus ( v string ) * SingleInstanceHealth {
s . HealthStatus = & v
return s
}
// SetInstanceId sets the InstanceId field's value.
func ( s * SingleInstanceHealth ) SetInstanceId ( v string ) * SingleInstanceHealth {
s . InstanceId = & v
return s
}
// SetInstanceType sets the InstanceType field's value.
func ( s * SingleInstanceHealth ) SetInstanceType ( v string ) * SingleInstanceHealth {
s . InstanceType = & v
return s
}
// SetLaunchedAt sets the LaunchedAt field's value.
func ( s * SingleInstanceHealth ) SetLaunchedAt ( v time . Time ) * SingleInstanceHealth {
s . LaunchedAt = & v
return s
}
// SetSystem sets the System field's value.
func ( s * SingleInstanceHealth ) SetSystem ( v * SystemStatus ) * SingleInstanceHealth {
s . System = v
return s
}
2016-03-07 21:42:30 +01:00
// Describes the solution stack.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SolutionStackDescription
2016-03-07 21:42:30 +01:00
type SolutionStackDescription struct {
_ struct { } ` type:"structure" `
// The permitted file types allowed for a solution stack.
PermittedFileTypes [ ] * string ` type:"list" `
// The name of the solution stack.
SolutionStackName * string ` type:"string" `
}
// String returns the string representation
func ( s SolutionStackDescription ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SolutionStackDescription ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetPermittedFileTypes sets the PermittedFileTypes field's value.
func ( s * SolutionStackDescription ) SetPermittedFileTypes ( v [ ] * string ) * SolutionStackDescription {
s . PermittedFileTypes = v
return s
}
// SetSolutionStackName sets the SolutionStackName field's value.
func ( s * SolutionStackDescription ) SetSolutionStackName ( v string ) * SolutionStackDescription {
s . SolutionStackName = & v
return s
}
2016-12-02 15:37:53 +01:00
// Location of the source code for an application version.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SourceBuildInformation
2016-10-17 23:21:08 +02:00
type SourceBuildInformation struct {
_ struct { } ` type:"structure" `
2016-12-15 16:18:11 +01:00
// The location of the source code, as a formatted string, depending on the
// value of SourceRepository
//
// * For CodeCommit, the format is the repository name and commit ID, separated
// by a forward slash. For example, my-git-repo/265cfa0cf6af46153527f55d6503ec030551f57a.
//
// * For S3, the format is the S3 bucket name and object key, separated by
// a forward slash. For example, my-s3-bucket/Folders/my-source-file.
2016-12-02 15:37:53 +01:00
//
2016-10-17 23:21:08 +02:00
// SourceLocation is a required field
SourceLocation * string ` min:"3" type:"string" required:"true" `
2016-12-15 16:18:11 +01:00
// Location where the repository is stored.
//
// * CodeCommit
//
// * S3
2016-12-02 15:37:53 +01:00
//
2016-10-17 23:21:08 +02:00
// SourceRepository is a required field
SourceRepository * string ` type:"string" required:"true" enum:"SourceRepository" `
2016-12-15 16:18:11 +01:00
// The type of repository.
//
// * Git
//
// * Zip
2016-12-02 15:37:53 +01:00
//
2016-10-17 23:21:08 +02:00
// SourceType is a required field
SourceType * string ` type:"string" required:"true" enum:"SourceType" `
}
// String returns the string representation
func ( s SourceBuildInformation ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SourceBuildInformation ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * SourceBuildInformation ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "SourceBuildInformation" }
if s . SourceLocation == nil {
invalidParams . Add ( request . NewErrParamRequired ( "SourceLocation" ) )
}
if s . SourceLocation != nil && len ( * s . SourceLocation ) < 3 {
invalidParams . Add ( request . NewErrParamMinLen ( "SourceLocation" , 3 ) )
}
if s . SourceRepository == nil {
invalidParams . Add ( request . NewErrParamRequired ( "SourceRepository" ) )
}
if s . SourceType == nil {
invalidParams . Add ( request . NewErrParamRequired ( "SourceType" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetSourceLocation sets the SourceLocation field's value.
func ( s * SourceBuildInformation ) SetSourceLocation ( v string ) * SourceBuildInformation {
s . SourceLocation = & v
return s
}
// SetSourceRepository sets the SourceRepository field's value.
func ( s * SourceBuildInformation ) SetSourceRepository ( v string ) * SourceBuildInformation {
s . SourceRepository = & v
return s
}
// SetSourceType sets the SourceType field's value.
func ( s * SourceBuildInformation ) SetSourceType ( v string ) * SourceBuildInformation {
s . SourceType = & v
return s
}
2016-03-07 21:42:30 +01:00
// A specification for an environment configuration
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SourceConfiguration
2016-03-07 21:42:30 +01:00
type SourceConfiguration struct {
_ struct { } ` type:"structure" `
// The name of the application associated with the configuration.
ApplicationName * string ` min:"1" type:"string" `
// The name of the configuration template.
TemplateName * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s SourceConfiguration ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SourceConfiguration ) 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 * SourceConfiguration ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "SourceConfiguration" }
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . TemplateName != nil && len ( * s . TemplateName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "TemplateName" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * SourceConfiguration ) SetApplicationName ( v string ) * SourceConfiguration {
s . ApplicationName = & v
return s
}
// SetTemplateName sets the TemplateName field's value.
func ( s * SourceConfiguration ) SetTemplateName ( v string ) * SourceConfiguration {
s . TemplateName = & v
return s
}
2016-03-07 21:42:30 +01:00
// Represents the percentage of requests over the last 10 seconds that resulted
// in each type of status code response. For more information, see Status Code
// Definitions (http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/StatusCodes
2016-03-07 21:42:30 +01:00
type StatusCodes struct {
_ struct { } ` type:"structure" `
// The percentage of requests over the last 10 seconds that resulted in a 2xx
// (200, 201, etc.) status code.
Status2xx * int64 ` type:"integer" `
// The percentage of requests over the last 10 seconds that resulted in a 3xx
// (300, 301, etc.) status code.
Status3xx * int64 ` type:"integer" `
// The percentage of requests over the last 10 seconds that resulted in a 4xx
// (400, 401, etc.) status code.
Status4xx * int64 ` type:"integer" `
// The percentage of requests over the last 10 seconds that resulted in a 5xx
// (500, 501, etc.) status code.
Status5xx * int64 ` type:"integer" `
}
// String returns the string representation
func ( s StatusCodes ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s StatusCodes ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetStatus2xx sets the Status2xx field's value.
func ( s * StatusCodes ) SetStatus2xx ( v int64 ) * StatusCodes {
s . Status2xx = & v
return s
}
// SetStatus3xx sets the Status3xx field's value.
func ( s * StatusCodes ) SetStatus3xx ( v int64 ) * StatusCodes {
s . Status3xx = & v
return s
}
// SetStatus4xx sets the Status4xx field's value.
func ( s * StatusCodes ) SetStatus4xx ( v int64 ) * StatusCodes {
s . Status4xx = & v
return s
}
// SetStatus5xx sets the Status5xx field's value.
func ( s * StatusCodes ) SetStatus5xx ( v int64 ) * StatusCodes {
s . Status5xx = & v
return s
}
2016-03-07 21:42:30 +01:00
// Swaps the CNAMEs of two environments.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SwapEnvironmentCNAMEsMessage
2016-03-07 21:42:30 +01:00
type SwapEnvironmentCNAMEsInput struct {
_ struct { } ` type:"structure" `
// The ID of the destination environment.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify at least the DestinationEnvironmentID or the
2016-03-07 21:42:30 +01:00
// DestinationEnvironmentName. You may also specify both. You must specify the
// SourceEnvironmentId with the DestinationEnvironmentId.
DestinationEnvironmentId * string ` type:"string" `
// The name of the destination environment.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify at least the DestinationEnvironmentID or the
2016-03-07 21:42:30 +01:00
// DestinationEnvironmentName. You may also specify both. You must specify the
// SourceEnvironmentName with the DestinationEnvironmentName.
DestinationEnvironmentName * string ` min:"4" type:"string" `
// The ID of the source environment.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify at least the SourceEnvironmentID or the SourceEnvironmentName.
2016-03-07 21:42:30 +01:00
// You may also specify both. If you specify the SourceEnvironmentId, you must
// specify the DestinationEnvironmentId.
SourceEnvironmentId * string ` type:"string" `
// The name of the source environment.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify at least the SourceEnvironmentID or the SourceEnvironmentName.
2016-03-07 21:42:30 +01:00
// You may also specify both. If you specify the SourceEnvironmentName, you
// must specify the DestinationEnvironmentName.
SourceEnvironmentName * string ` min:"4" type:"string" `
}
// String returns the string representation
func ( s SwapEnvironmentCNAMEsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SwapEnvironmentCNAMEsInput ) 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 * SwapEnvironmentCNAMEsInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "SwapEnvironmentCNAMEsInput" }
if s . DestinationEnvironmentName != nil && len ( * s . DestinationEnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "DestinationEnvironmentName" , 4 ) )
}
if s . SourceEnvironmentName != nil && len ( * s . SourceEnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "SourceEnvironmentName" , 4 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetDestinationEnvironmentId sets the DestinationEnvironmentId field's value.
func ( s * SwapEnvironmentCNAMEsInput ) SetDestinationEnvironmentId ( v string ) * SwapEnvironmentCNAMEsInput {
s . DestinationEnvironmentId = & v
return s
}
// SetDestinationEnvironmentName sets the DestinationEnvironmentName field's value.
func ( s * SwapEnvironmentCNAMEsInput ) SetDestinationEnvironmentName ( v string ) * SwapEnvironmentCNAMEsInput {
s . DestinationEnvironmentName = & v
return s
}
// SetSourceEnvironmentId sets the SourceEnvironmentId field's value.
func ( s * SwapEnvironmentCNAMEsInput ) SetSourceEnvironmentId ( v string ) * SwapEnvironmentCNAMEsInput {
s . SourceEnvironmentId = & v
return s
}
// SetSourceEnvironmentName sets the SourceEnvironmentName field's value.
func ( s * SwapEnvironmentCNAMEsInput ) SetSourceEnvironmentName ( v string ) * SwapEnvironmentCNAMEsInput {
s . SourceEnvironmentName = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SwapEnvironmentCNAMEsOutput
2016-03-07 21:42:30 +01:00
type SwapEnvironmentCNAMEsOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s SwapEnvironmentCNAMEsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SwapEnvironmentCNAMEsOutput ) GoString ( ) string {
return s . String ( )
}
2016-12-02 15:37:53 +01:00
// CPU utilization and load average metrics for an Amazon EC2 instance.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/SystemStatus
2016-03-07 21:42:30 +01:00
type SystemStatus struct {
_ struct { } ` type:"structure" `
2016-12-02 15:37:53 +01:00
// CPU utilization metrics for the instance.
2016-03-07 21:42:30 +01:00
CPUUtilization * CPUUtilization ` type:"structure" `
2017-03-03 19:48:24 +01:00
// Load average in the last 1-minute, 5-minute, and 15-minute periods. For more
// information, see Operating System Metrics (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-metrics.html#health-enhanced-metrics-os).
2016-03-07 21:42:30 +01:00
LoadAverage [ ] * float64 ` type:"list" `
}
// String returns the string representation
func ( s SystemStatus ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SystemStatus ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCPUUtilization sets the CPUUtilization field's value.
func ( s * SystemStatus ) SetCPUUtilization ( v * CPUUtilization ) * SystemStatus {
s . CPUUtilization = v
return s
}
// SetLoadAverage sets the LoadAverage field's value.
func ( s * SystemStatus ) SetLoadAverage ( v [ ] * float64 ) * SystemStatus {
s . LoadAverage = v
return s
}
2016-03-07 21:42:30 +01:00
// Describes a tag applied to a resource in an environment.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/Tag
2016-03-07 21:42:30 +01:00
type Tag struct {
_ struct { } ` type:"structure" `
// The key of the tag.
Key * string ` min:"1" type:"string" `
// The value of the tag.
Value * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s Tag ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Tag ) 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 * Tag ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "Tag" }
if s . Key != nil && len ( * s . Key ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "Key" , 1 ) )
}
if s . Value != nil && len ( * s . Value ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "Value" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetKey sets the Key field's value.
func ( s * Tag ) SetKey ( v string ) * Tag {
s . Key = & v
return s
}
// SetValue sets the Value field's value.
func ( s * Tag ) SetValue ( v string ) * Tag {
s . Value = & v
return s
}
2016-03-24 23:52:51 +01:00
// Request to terminate an environment.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/TerminateEnvironmentMessage
2016-03-07 21:42:30 +01:00
type TerminateEnvironmentInput struct {
_ struct { } ` type:"structure" `
// The ID of the environment to terminate.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify either this or an EnvironmentName, or both. If
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
2016-03-07 21:42:30 +01:00
// error.
EnvironmentId * string ` type:"string" `
// The name of the environment to terminate.
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify either this or an EnvironmentId, or both. If
2016-03-07 21:42:30 +01:00
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
// error.
EnvironmentName * string ` min:"4" type:"string" `
// Terminates the target environment even if another environment in the same
// group is dependent on it.
ForceTerminate * bool ` type:"boolean" `
// Indicates whether the associated AWS resources should shut down when the
// environment is terminated:
//
2016-11-19 19:41:01 +01:00
// * true: The specified environment as well as the associated AWS resources,
// such as Auto Scaling group and LoadBalancer, are terminated.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * false: AWS Elastic Beanstalk resource management is removed from the
// environment, but the AWS resources continue to operate.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// For more information, see the AWS Elastic Beanstalk User Guide. (http://docs.aws.amazon.com/elasticbeanstalk/latest/ug/)
2016-03-07 21:42:30 +01:00
//
2016-11-19 19:41:01 +01:00
// Default: true
2016-03-07 21:42:30 +01:00
//
2016-11-19 19:41:01 +01:00
// Valid Values: true | false
2016-03-07 21:42:30 +01:00
TerminateResources * bool ` type:"boolean" `
}
// String returns the string representation
func ( s TerminateEnvironmentInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s TerminateEnvironmentInput ) 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 * TerminateEnvironmentInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "TerminateEnvironmentInput" }
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * TerminateEnvironmentInput ) SetEnvironmentId ( v string ) * TerminateEnvironmentInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * TerminateEnvironmentInput ) SetEnvironmentName ( v string ) * TerminateEnvironmentInput {
s . EnvironmentName = & v
return s
}
// SetForceTerminate sets the ForceTerminate field's value.
func ( s * TerminateEnvironmentInput ) SetForceTerminate ( v bool ) * TerminateEnvironmentInput {
s . ForceTerminate = & v
return s
}
// SetTerminateResources sets the TerminateResources field's value.
func ( s * TerminateEnvironmentInput ) SetTerminateResources ( v bool ) * TerminateEnvironmentInput {
s . TerminateResources = & v
return s
}
2016-03-07 21:42:30 +01:00
// Describes a trigger.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/Trigger
2016-03-07 21:42:30 +01:00
type Trigger struct {
_ struct { } ` type:"structure" `
// The name of the trigger.
Name * string ` type:"string" `
}
// String returns the string representation
func ( s Trigger ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Trigger ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetName sets the Name field's value.
func ( s * Trigger ) SetName ( v string ) * Trigger {
s . Name = & v
return s
}
2016-03-24 23:52:51 +01:00
// Request to update an application.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateApplicationMessage
2016-03-07 21:42:30 +01:00
type UpdateApplicationInput struct {
_ struct { } ` type:"structure" `
// The name of the application to update. If no such application is found, UpdateApplication
// returns an InvalidParameterValue error.
2016-10-17 23:21:08 +02:00
//
// ApplicationName is a required field
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" required:"true" `
// A new description for the application.
//
// Default: If not specified, AWS Elastic Beanstalk does not update the description.
Description * string ` type:"string" `
}
// String returns the string representation
func ( s UpdateApplicationInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateApplicationInput ) 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 * UpdateApplicationInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "UpdateApplicationInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * UpdateApplicationInput ) SetApplicationName ( v string ) * UpdateApplicationInput {
s . ApplicationName = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * UpdateApplicationInput ) SetDescription ( v string ) * UpdateApplicationInput {
s . Description = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateApplicationResourceLifecycleMessage
type UpdateApplicationResourceLifecycleInput struct {
_ struct { } ` type:"structure" `
// The name of the application.
//
// ApplicationName is a required field
ApplicationName * string ` min:"1" type:"string" required:"true" `
// The lifecycle configuration.
//
// ResourceLifecycleConfig is a required field
ResourceLifecycleConfig * ApplicationResourceLifecycleConfig ` type:"structure" required:"true" `
}
// String returns the string representation
func ( s UpdateApplicationResourceLifecycleInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateApplicationResourceLifecycleInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * UpdateApplicationResourceLifecycleInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "UpdateApplicationResourceLifecycleInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . ResourceLifecycleConfig == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ResourceLifecycleConfig" ) )
}
if s . ResourceLifecycleConfig != nil {
if err := s . ResourceLifecycleConfig . Validate ( ) ; err != nil {
invalidParams . AddNested ( "ResourceLifecycleConfig" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetApplicationName sets the ApplicationName field's value.
func ( s * UpdateApplicationResourceLifecycleInput ) SetApplicationName ( v string ) * UpdateApplicationResourceLifecycleInput {
s . ApplicationName = & v
return s
}
// SetResourceLifecycleConfig sets the ResourceLifecycleConfig field's value.
func ( s * UpdateApplicationResourceLifecycleInput ) SetResourceLifecycleConfig ( v * ApplicationResourceLifecycleConfig ) * UpdateApplicationResourceLifecycleInput {
s . ResourceLifecycleConfig = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplicationResourceLifecycleDescriptionMessage
type UpdateApplicationResourceLifecycleOutput struct {
_ struct { } ` type:"structure" `
// The name of the application.
ApplicationName * string ` min:"1" type:"string" `
// The lifecycle configuration.
ResourceLifecycleConfig * ApplicationResourceLifecycleConfig ` type:"structure" `
}
// String returns the string representation
func ( s UpdateApplicationResourceLifecycleOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateApplicationResourceLifecycleOutput ) GoString ( ) string {
return s . String ( )
}
// SetApplicationName sets the ApplicationName field's value.
func ( s * UpdateApplicationResourceLifecycleOutput ) SetApplicationName ( v string ) * UpdateApplicationResourceLifecycleOutput {
s . ApplicationName = & v
return s
}
// SetResourceLifecycleConfig sets the ResourceLifecycleConfig field's value.
func ( s * UpdateApplicationResourceLifecycleOutput ) SetResourceLifecycleConfig ( v * ApplicationResourceLifecycleConfig ) * UpdateApplicationResourceLifecycleOutput {
s . ResourceLifecycleConfig = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateApplicationVersionMessage
2016-03-07 21:42:30 +01:00
type UpdateApplicationVersionInput struct {
_ struct { } ` type:"structure" `
// The name of the application associated with this version.
//
2016-11-19 19:41:01 +01:00
// If no application is found with this name, UpdateApplication returns an InvalidParameterValue
// error.
2016-10-17 23:21:08 +02:00
//
// ApplicationName is a required field
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" required:"true" `
2016-12-02 15:37:53 +01:00
// A new description for this version.
2016-03-07 21:42:30 +01:00
Description * string ` type:"string" `
// The name of the version to update.
//
2016-11-19 19:41:01 +01:00
// If no application version is found with this label, UpdateApplication returns
2016-03-07 21:42:30 +01:00
// an InvalidParameterValue error.
2016-10-17 23:21:08 +02:00
//
// VersionLabel is a required field
2016-03-07 21:42:30 +01:00
VersionLabel * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s UpdateApplicationVersionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateApplicationVersionInput ) 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 * UpdateApplicationVersionInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "UpdateApplicationVersionInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . VersionLabel == nil {
invalidParams . Add ( request . NewErrParamRequired ( "VersionLabel" ) )
}
if s . VersionLabel != nil && len ( * s . VersionLabel ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "VersionLabel" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * UpdateApplicationVersionInput ) SetApplicationName ( v string ) * UpdateApplicationVersionInput {
s . ApplicationName = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * UpdateApplicationVersionInput ) SetDescription ( v string ) * UpdateApplicationVersionInput {
s . Description = & v
return s
}
// SetVersionLabel sets the VersionLabel field's value.
func ( s * UpdateApplicationVersionInput ) SetVersionLabel ( v string ) * UpdateApplicationVersionInput {
s . VersionLabel = & v
return s
}
2016-03-07 21:42:30 +01:00
// The result message containing the options for the specified solution stack.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateConfigurationTemplateMessage
2016-03-07 21:42:30 +01:00
type UpdateConfigurationTemplateInput struct {
_ struct { } ` type:"structure" `
// The name of the application associated with the configuration template to
// update.
//
2016-11-19 19:41:01 +01:00
// If no application is found with this name, UpdateConfigurationTemplate returns
// an InvalidParameterValue error.
2016-10-17 23:21:08 +02:00
//
// ApplicationName is a required field
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" required:"true" `
// A new description for the configuration.
Description * string ` type:"string" `
// A list of configuration option settings to update with the new specified
// option value.
OptionSettings [ ] * ConfigurationOptionSetting ` type:"list" `
// A list of configuration options to remove from the configuration set.
//
2016-11-19 19:41:01 +01:00
// Constraint: You can remove only UserDefined configuration options.
2016-03-07 21:42:30 +01:00
OptionsToRemove [ ] * OptionSpecification ` type:"list" `
// The name of the configuration template to update.
//
2016-11-19 19:41:01 +01:00
// If no configuration template is found with this name, UpdateConfigurationTemplate
2016-03-07 21:42:30 +01:00
// returns an InvalidParameterValue error.
2016-10-17 23:21:08 +02:00
//
// TemplateName is a required field
2016-03-07 21:42:30 +01:00
TemplateName * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s UpdateConfigurationTemplateInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateConfigurationTemplateInput ) 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 * UpdateConfigurationTemplateInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "UpdateConfigurationTemplateInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . TemplateName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TemplateName" ) )
}
if s . TemplateName != nil && len ( * s . TemplateName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "TemplateName" , 1 ) )
}
if s . OptionSettings != nil {
for i , v := range s . OptionSettings {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "OptionSettings" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if s . OptionsToRemove != nil {
for i , v := range s . OptionsToRemove {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "OptionsToRemove" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * UpdateConfigurationTemplateInput ) SetApplicationName ( v string ) * UpdateConfigurationTemplateInput {
s . ApplicationName = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * UpdateConfigurationTemplateInput ) SetDescription ( v string ) * UpdateConfigurationTemplateInput {
s . Description = & v
return s
}
// SetOptionSettings sets the OptionSettings field's value.
func ( s * UpdateConfigurationTemplateInput ) SetOptionSettings ( v [ ] * ConfigurationOptionSetting ) * UpdateConfigurationTemplateInput {
s . OptionSettings = v
return s
}
// SetOptionsToRemove sets the OptionsToRemove field's value.
func ( s * UpdateConfigurationTemplateInput ) SetOptionsToRemove ( v [ ] * OptionSpecification ) * UpdateConfigurationTemplateInput {
s . OptionsToRemove = v
return s
}
// SetTemplateName sets the TemplateName field's value.
func ( s * UpdateConfigurationTemplateInput ) SetTemplateName ( v string ) * UpdateConfigurationTemplateInput {
s . TemplateName = & v
return s
}
2016-03-24 23:52:51 +01:00
// Request to update an environment.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/UpdateEnvironmentMessage
2016-03-07 21:42:30 +01:00
type UpdateEnvironmentInput struct {
_ struct { } ` type:"structure" `
// The name of the application with which the environment is associated.
ApplicationName * string ` min:"1" type:"string" `
// If this parameter is specified, AWS Elastic Beanstalk updates the description
// of this environment.
Description * string ` type:"string" `
// The ID of the environment to update.
//
2016-11-19 19:41:01 +01:00
// If no environment with this ID exists, AWS Elastic Beanstalk returns an InvalidParameterValue
// error.
2016-03-07 21:42:30 +01:00
//
2016-11-19 19:41:01 +01:00
// Condition: You must specify either this or an EnvironmentName, or both. If
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
2016-03-07 21:42:30 +01:00
// error.
EnvironmentId * string ` type:"string" `
// The name of the environment to update. If no environment with this name exists,
// AWS Elastic Beanstalk returns an InvalidParameterValue error.
//
// Condition: You must specify either this or an EnvironmentId, or both. If
// you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
// error.
EnvironmentName * string ` min:"4" type:"string" `
// The name of the group to which the target environment belongs. Specify a
// group name only if the environment's name is specified in an environment
// manifest and not with the environment name or environment ID parameters.
2016-03-24 23:52:51 +01:00
// See Environment Manifest (env.yaml) (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html)
2016-03-07 21:42:30 +01:00
// for details.
GroupName * string ` min:"1" type:"string" `
// If specified, AWS Elastic Beanstalk updates the configuration set associated
// with the running environment and sets the specified configuration options
// to the requested value.
OptionSettings [ ] * ConfigurationOptionSetting ` type:"list" `
// A list of custom user-defined configuration options to remove from the configuration
// set for this environment.
OptionsToRemove [ ] * OptionSpecification ` type:"list" `
2017-03-03 19:48:24 +01:00
// The ARN of the platform, if used.
PlatformArn * string ` type:"string" `
2016-03-07 21:42:30 +01:00
// This specifies the platform version that the environment will run after the
// environment is updated.
SolutionStackName * string ` type:"string" `
// If this parameter is specified, AWS Elastic Beanstalk deploys this configuration
// template to the environment. If no such configuration template is found,
// AWS Elastic Beanstalk returns an InvalidParameterValue error.
TemplateName * string ` min:"1" type:"string" `
// This specifies the tier to use to update the environment.
//
2016-11-19 19:41:01 +01:00
// Condition: At this time, if you change the tier version, name, or type, AWS
// Elastic Beanstalk returns InvalidParameterValue error.
2016-03-07 21:42:30 +01:00
Tier * EnvironmentTier ` type:"structure" `
// If this parameter is specified, AWS Elastic Beanstalk deploys the named application
// version to the environment. If no such application version is found, returns
// an InvalidParameterValue error.
VersionLabel * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s UpdateEnvironmentInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateEnvironmentInput ) 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 * UpdateEnvironmentInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "UpdateEnvironmentInput" }
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if s . GroupName != nil && len ( * s . GroupName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "GroupName" , 1 ) )
}
if s . TemplateName != nil && len ( * s . TemplateName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "TemplateName" , 1 ) )
}
if s . VersionLabel != nil && len ( * s . VersionLabel ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "VersionLabel" , 1 ) )
}
if s . OptionSettings != nil {
for i , v := range s . OptionSettings {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "OptionSettings" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if s . OptionsToRemove != nil {
for i , v := range s . OptionsToRemove {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "OptionsToRemove" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * UpdateEnvironmentInput ) SetApplicationName ( v string ) * UpdateEnvironmentInput {
s . ApplicationName = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * UpdateEnvironmentInput ) SetDescription ( v string ) * UpdateEnvironmentInput {
s . Description = & v
return s
}
// SetEnvironmentId sets the EnvironmentId field's value.
func ( s * UpdateEnvironmentInput ) SetEnvironmentId ( v string ) * UpdateEnvironmentInput {
s . EnvironmentId = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * UpdateEnvironmentInput ) SetEnvironmentName ( v string ) * UpdateEnvironmentInput {
s . EnvironmentName = & v
return s
}
// SetGroupName sets the GroupName field's value.
func ( s * UpdateEnvironmentInput ) SetGroupName ( v string ) * UpdateEnvironmentInput {
s . GroupName = & v
return s
}
// SetOptionSettings sets the OptionSettings field's value.
func ( s * UpdateEnvironmentInput ) SetOptionSettings ( v [ ] * ConfigurationOptionSetting ) * UpdateEnvironmentInput {
s . OptionSettings = v
return s
}
// SetOptionsToRemove sets the OptionsToRemove field's value.
func ( s * UpdateEnvironmentInput ) SetOptionsToRemove ( v [ ] * OptionSpecification ) * UpdateEnvironmentInput {
s . OptionsToRemove = v
return s
}
2017-03-03 19:48:24 +01:00
// SetPlatformArn sets the PlatformArn field's value.
func ( s * UpdateEnvironmentInput ) SetPlatformArn ( v string ) * UpdateEnvironmentInput {
s . PlatformArn = & v
return s
}
2016-11-19 19:41:01 +01:00
// SetSolutionStackName sets the SolutionStackName field's value.
func ( s * UpdateEnvironmentInput ) SetSolutionStackName ( v string ) * UpdateEnvironmentInput {
s . SolutionStackName = & v
return s
}
// SetTemplateName sets the TemplateName field's value.
func ( s * UpdateEnvironmentInput ) SetTemplateName ( v string ) * UpdateEnvironmentInput {
s . TemplateName = & v
return s
}
// SetTier sets the Tier field's value.
func ( s * UpdateEnvironmentInput ) SetTier ( v * EnvironmentTier ) * UpdateEnvironmentInput {
s . Tier = v
return s
}
// SetVersionLabel sets the VersionLabel field's value.
func ( s * UpdateEnvironmentInput ) SetVersionLabel ( v string ) * UpdateEnvironmentInput {
s . VersionLabel = & v
return s
}
2016-03-07 21:42:30 +01:00
// A list of validation messages for a specified configuration template.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ValidateConfigurationSettingsMessage
2016-03-07 21:42:30 +01:00
type ValidateConfigurationSettingsInput struct {
_ struct { } ` type:"structure" `
// The name of the application that the configuration template or environment
// belongs to.
2016-10-17 23:21:08 +02:00
//
// ApplicationName is a required field
2016-03-07 21:42:30 +01:00
ApplicationName * string ` min:"1" type:"string" required:"true" `
// The name of the environment to validate the settings against.
//
2016-10-17 23:21:08 +02:00
// Condition: You cannot specify both this and a configuration template name.
2016-03-07 21:42:30 +01:00
EnvironmentName * string ` min:"4" type:"string" `
// A list of the options and desired values to evaluate.
2016-10-17 23:21:08 +02:00
//
// OptionSettings is a required field
2016-03-07 21:42:30 +01:00
OptionSettings [ ] * ConfigurationOptionSetting ` type:"list" required:"true" `
// The name of the configuration template to validate the settings against.
//
2016-10-17 23:21:08 +02:00
// Condition: You cannot specify both this and an environment name.
2016-03-07 21:42:30 +01:00
TemplateName * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s ValidateConfigurationSettingsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ValidateConfigurationSettingsInput ) 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 * ValidateConfigurationSettingsInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ValidateConfigurationSettingsInput" }
if s . ApplicationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ApplicationName" ) )
}
if s . ApplicationName != nil && len ( * s . ApplicationName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ApplicationName" , 1 ) )
}
if s . EnvironmentName != nil && len ( * s . EnvironmentName ) < 4 {
invalidParams . Add ( request . NewErrParamMinLen ( "EnvironmentName" , 4 ) )
}
if s . OptionSettings == nil {
invalidParams . Add ( request . NewErrParamRequired ( "OptionSettings" ) )
}
if s . TemplateName != nil && len ( * s . TemplateName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "TemplateName" , 1 ) )
}
if s . OptionSettings != nil {
for i , v := range s . OptionSettings {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "OptionSettings" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetApplicationName sets the ApplicationName field's value.
func ( s * ValidateConfigurationSettingsInput ) SetApplicationName ( v string ) * ValidateConfigurationSettingsInput {
s . ApplicationName = & v
return s
}
// SetEnvironmentName sets the EnvironmentName field's value.
func ( s * ValidateConfigurationSettingsInput ) SetEnvironmentName ( v string ) * ValidateConfigurationSettingsInput {
s . EnvironmentName = & v
return s
}
// SetOptionSettings sets the OptionSettings field's value.
func ( s * ValidateConfigurationSettingsInput ) SetOptionSettings ( v [ ] * ConfigurationOptionSetting ) * ValidateConfigurationSettingsInput {
s . OptionSettings = v
return s
}
// SetTemplateName sets the TemplateName field's value.
func ( s * ValidateConfigurationSettingsInput ) SetTemplateName ( v string ) * ValidateConfigurationSettingsInput {
s . TemplateName = & v
return s
}
2016-03-07 21:42:30 +01:00
// Provides a list of validation messages.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ConfigurationSettingsValidationMessages
2016-03-07 21:42:30 +01:00
type ValidateConfigurationSettingsOutput struct {
_ struct { } ` type:"structure" `
// A list of ValidationMessage.
Messages [ ] * ValidationMessage ` type:"list" `
}
// String returns the string representation
func ( s ValidateConfigurationSettingsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ValidateConfigurationSettingsOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetMessages sets the Messages field's value.
func ( s * ValidateConfigurationSettingsOutput ) SetMessages ( v [ ] * ValidationMessage ) * ValidateConfigurationSettingsOutput {
s . Messages = v
return s
}
2016-03-07 21:42:30 +01:00
// An error or warning for a desired configuration option value.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ValidationMessage
2016-03-07 21:42:30 +01:00
type ValidationMessage struct {
_ struct { } ` type:"structure" `
// A message describing the error or warning.
Message * string ` type:"string" `
2016-12-02 15:37:53 +01:00
// The namespace to which the option belongs.
2016-03-07 21:42:30 +01:00
Namespace * string ` type:"string" `
2016-12-02 15:37:53 +01:00
// The name of the option.
2016-03-07 21:42:30 +01:00
OptionName * string ` type:"string" `
// An indication of the severity of this message:
//
2016-11-19 19:41:01 +01:00
// * error: This message indicates that this is not a valid setting for an
// option.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * warning: This message is providing information you should take into
// account.
2016-03-07 21:42:30 +01:00
Severity * string ` type:"string" enum:"ValidationSeverity" `
}
// String returns the string representation
func ( s ValidationMessage ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ValidationMessage ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetMessage sets the Message field's value.
func ( s * ValidationMessage ) SetMessage ( v string ) * ValidationMessage {
s . Message = & v
return s
}
// SetNamespace sets the Namespace field's value.
func ( s * ValidationMessage ) SetNamespace ( v string ) * ValidationMessage {
s . Namespace = & v
return s
}
// SetOptionName sets the OptionName field's value.
func ( s * ValidationMessage ) SetOptionName ( v string ) * ValidationMessage {
s . OptionName = & v
return s
}
// SetSeverity sets the Severity field's value.
func ( s * ValidationMessage ) SetSeverity ( v string ) * ValidationMessage {
s . Severity = & v
return s
}
2016-05-05 03:06:27 +02:00
const (
2016-10-17 23:21:08 +02:00
// ActionHistoryStatusCompleted is a ActionHistoryStatus enum value
2016-05-05 03:06:27 +02:00
ActionHistoryStatusCompleted = "Completed"
2016-10-17 23:21:08 +02:00
// ActionHistoryStatusFailed is a ActionHistoryStatus enum value
2016-05-05 03:06:27 +02:00
ActionHistoryStatusFailed = "Failed"
2016-10-17 23:21:08 +02:00
// ActionHistoryStatusUnknown is a ActionHistoryStatus enum value
2016-05-05 03:06:27 +02:00
ActionHistoryStatusUnknown = "Unknown"
)
const (
2016-10-17 23:21:08 +02:00
// ActionStatusScheduled is a ActionStatus enum value
2016-05-05 03:06:27 +02:00
ActionStatusScheduled = "Scheduled"
2016-10-17 23:21:08 +02:00
// ActionStatusPending is a ActionStatus enum value
2016-05-05 03:06:27 +02:00
ActionStatusPending = "Pending"
2016-10-17 23:21:08 +02:00
// ActionStatusRunning is a ActionStatus enum value
2016-05-05 03:06:27 +02:00
ActionStatusRunning = "Running"
2016-10-17 23:21:08 +02:00
// ActionStatusUnknown is a ActionStatus enum value
2016-05-05 03:06:27 +02:00
ActionStatusUnknown = "Unknown"
)
const (
2016-10-17 23:21:08 +02:00
// ActionTypeInstanceRefresh is a ActionType enum value
2016-05-05 03:06:27 +02:00
ActionTypeInstanceRefresh = "InstanceRefresh"
2016-10-17 23:21:08 +02:00
// ActionTypePlatformUpdate is a ActionType enum value
2016-05-05 03:06:27 +02:00
ActionTypePlatformUpdate = "PlatformUpdate"
2016-10-17 23:21:08 +02:00
// ActionTypeUnknown is a ActionType enum value
2016-05-05 03:06:27 +02:00
ActionTypeUnknown = "Unknown"
)
2016-03-07 21:42:30 +01:00
const (
2016-10-17 23:21:08 +02:00
// ApplicationVersionStatusProcessed is a ApplicationVersionStatus enum value
2016-03-07 21:42:30 +01:00
ApplicationVersionStatusProcessed = "Processed"
2016-10-17 23:21:08 +02:00
// ApplicationVersionStatusUnprocessed is a ApplicationVersionStatus enum value
2016-03-07 21:42:30 +01:00
ApplicationVersionStatusUnprocessed = "Unprocessed"
2016-10-17 23:21:08 +02:00
// ApplicationVersionStatusFailed is a ApplicationVersionStatus enum value
2016-03-07 21:42:30 +01:00
ApplicationVersionStatusFailed = "Failed"
2016-10-17 23:21:08 +02:00
// ApplicationVersionStatusProcessing is a ApplicationVersionStatus enum value
2016-03-07 21:42:30 +01:00
ApplicationVersionStatusProcessing = "Processing"
2016-12-02 15:37:53 +01:00
// ApplicationVersionStatusBuilding is a ApplicationVersionStatus enum value
ApplicationVersionStatusBuilding = "Building"
)
const (
// ComputeTypeBuildGeneral1Small is a ComputeType enum value
ComputeTypeBuildGeneral1Small = "BUILD_GENERAL1_SMALL"
// ComputeTypeBuildGeneral1Medium is a ComputeType enum value
ComputeTypeBuildGeneral1Medium = "BUILD_GENERAL1_MEDIUM"
// ComputeTypeBuildGeneral1Large is a ComputeType enum value
ComputeTypeBuildGeneral1Large = "BUILD_GENERAL1_LARGE"
2016-03-07 21:42:30 +01:00
)
const (
2016-10-17 23:21:08 +02:00
// ConfigurationDeploymentStatusDeployed is a ConfigurationDeploymentStatus enum value
2016-03-07 21:42:30 +01:00
ConfigurationDeploymentStatusDeployed = "deployed"
2016-10-17 23:21:08 +02:00
// ConfigurationDeploymentStatusPending is a ConfigurationDeploymentStatus enum value
2016-03-07 21:42:30 +01:00
ConfigurationDeploymentStatusPending = "pending"
2016-10-17 23:21:08 +02:00
// ConfigurationDeploymentStatusFailed is a ConfigurationDeploymentStatus enum value
2016-03-07 21:42:30 +01:00
ConfigurationDeploymentStatusFailed = "failed"
)
const (
2016-10-17 23:21:08 +02:00
// ConfigurationOptionValueTypeScalar is a ConfigurationOptionValueType enum value
2016-03-07 21:42:30 +01:00
ConfigurationOptionValueTypeScalar = "Scalar"
2016-10-17 23:21:08 +02:00
// ConfigurationOptionValueTypeList is a ConfigurationOptionValueType enum value
2016-03-07 21:42:30 +01:00
ConfigurationOptionValueTypeList = "List"
)
const (
2016-10-17 23:21:08 +02:00
// EnvironmentHealthGreen is a EnvironmentHealth enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthGreen = "Green"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthYellow is a EnvironmentHealth enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthYellow = "Yellow"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthRed is a EnvironmentHealth enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthRed = "Red"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthGrey is a EnvironmentHealth enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthGrey = "Grey"
)
const (
2016-10-17 23:21:08 +02:00
// EnvironmentHealthAttributeStatus is a EnvironmentHealthAttribute enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthAttributeStatus = "Status"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthAttributeColor is a EnvironmentHealthAttribute enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthAttributeColor = "Color"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthAttributeCauses is a EnvironmentHealthAttribute enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthAttributeCauses = "Causes"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthAttributeApplicationMetrics is a EnvironmentHealthAttribute enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthAttributeApplicationMetrics = "ApplicationMetrics"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthAttributeInstancesHealth is a EnvironmentHealthAttribute enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthAttributeInstancesHealth = "InstancesHealth"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthAttributeAll is a EnvironmentHealthAttribute enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthAttributeAll = "All"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthAttributeHealthStatus is a EnvironmentHealthAttribute enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthAttributeHealthStatus = "HealthStatus"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthAttributeRefreshedAt is a EnvironmentHealthAttribute enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthAttributeRefreshedAt = "RefreshedAt"
)
const (
2016-10-17 23:21:08 +02:00
// EnvironmentHealthStatusNoData is a EnvironmentHealthStatus enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthStatusNoData = "NoData"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthStatusUnknown is a EnvironmentHealthStatus enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthStatusUnknown = "Unknown"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthStatusPending is a EnvironmentHealthStatus enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthStatusPending = "Pending"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthStatusOk is a EnvironmentHealthStatus enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthStatusOk = "Ok"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthStatusInfo is a EnvironmentHealthStatus enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthStatusInfo = "Info"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthStatusWarning is a EnvironmentHealthStatus enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthStatusWarning = "Warning"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthStatusDegraded is a EnvironmentHealthStatus enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthStatusDegraded = "Degraded"
2016-10-17 23:21:08 +02:00
// EnvironmentHealthStatusSevere is a EnvironmentHealthStatus enum value
2016-03-07 21:42:30 +01:00
EnvironmentHealthStatusSevere = "Severe"
)
const (
2016-10-17 23:21:08 +02:00
// EnvironmentInfoTypeTail is a EnvironmentInfoType enum value
2016-03-07 21:42:30 +01:00
EnvironmentInfoTypeTail = "tail"
2016-10-17 23:21:08 +02:00
// EnvironmentInfoTypeBundle is a EnvironmentInfoType enum value
2016-03-07 21:42:30 +01:00
EnvironmentInfoTypeBundle = "bundle"
)
const (
2016-10-17 23:21:08 +02:00
// EnvironmentStatusLaunching is a EnvironmentStatus enum value
2016-03-07 21:42:30 +01:00
EnvironmentStatusLaunching = "Launching"
2016-10-17 23:21:08 +02:00
// EnvironmentStatusUpdating is a EnvironmentStatus enum value
2016-03-07 21:42:30 +01:00
EnvironmentStatusUpdating = "Updating"
2016-10-17 23:21:08 +02:00
// EnvironmentStatusReady is a EnvironmentStatus enum value
2016-03-07 21:42:30 +01:00
EnvironmentStatusReady = "Ready"
2016-10-17 23:21:08 +02:00
// EnvironmentStatusTerminating is a EnvironmentStatus enum value
2016-03-07 21:42:30 +01:00
EnvironmentStatusTerminating = "Terminating"
2016-10-17 23:21:08 +02:00
// EnvironmentStatusTerminated is a EnvironmentStatus enum value
2016-03-07 21:42:30 +01:00
EnvironmentStatusTerminated = "Terminated"
)
const (
2016-10-17 23:21:08 +02:00
// EventSeverityTrace is a EventSeverity enum value
2016-03-07 21:42:30 +01:00
EventSeverityTrace = "TRACE"
2016-10-17 23:21:08 +02:00
// EventSeverityDebug is a EventSeverity enum value
2016-03-07 21:42:30 +01:00
EventSeverityDebug = "DEBUG"
2016-10-17 23:21:08 +02:00
// EventSeverityInfo is a EventSeverity enum value
2016-03-07 21:42:30 +01:00
EventSeverityInfo = "INFO"
2016-10-17 23:21:08 +02:00
// EventSeverityWarn is a EventSeverity enum value
2016-03-07 21:42:30 +01:00
EventSeverityWarn = "WARN"
2016-10-17 23:21:08 +02:00
// EventSeverityError is a EventSeverity enum value
2016-03-07 21:42:30 +01:00
EventSeverityError = "ERROR"
2016-10-17 23:21:08 +02:00
// EventSeverityFatal is a EventSeverity enum value
2016-03-07 21:42:30 +01:00
EventSeverityFatal = "FATAL"
)
2016-05-05 03:06:27 +02:00
const (
2016-10-17 23:21:08 +02:00
// FailureTypeUpdateCancelled is a FailureType enum value
2016-05-05 03:06:27 +02:00
FailureTypeUpdateCancelled = "UpdateCancelled"
2016-10-17 23:21:08 +02:00
// FailureTypeCancellationFailed is a FailureType enum value
2016-05-05 03:06:27 +02:00
FailureTypeCancellationFailed = "CancellationFailed"
2016-10-17 23:21:08 +02:00
// FailureTypeRollbackFailed is a FailureType enum value
2016-05-05 03:06:27 +02:00
FailureTypeRollbackFailed = "RollbackFailed"
2016-10-17 23:21:08 +02:00
// FailureTypeRollbackSuccessful is a FailureType enum value
2016-05-05 03:06:27 +02:00
FailureTypeRollbackSuccessful = "RollbackSuccessful"
2016-10-17 23:21:08 +02:00
// FailureTypeInternalFailure is a FailureType enum value
2016-05-05 03:06:27 +02:00
FailureTypeInternalFailure = "InternalFailure"
2016-10-17 23:21:08 +02:00
// FailureTypeInvalidEnvironmentState is a FailureType enum value
2016-05-05 03:06:27 +02:00
FailureTypeInvalidEnvironmentState = "InvalidEnvironmentState"
2016-10-17 23:21:08 +02:00
// FailureTypePermissionsError is a FailureType enum value
2016-05-05 03:06:27 +02:00
FailureTypePermissionsError = "PermissionsError"
)
2016-03-07 21:42:30 +01:00
const (
2016-10-17 23:21:08 +02:00
// InstancesHealthAttributeHealthStatus is a InstancesHealthAttribute enum value
2016-03-07 21:42:30 +01:00
InstancesHealthAttributeHealthStatus = "HealthStatus"
2016-10-17 23:21:08 +02:00
// InstancesHealthAttributeColor is a InstancesHealthAttribute enum value
2016-03-07 21:42:30 +01:00
InstancesHealthAttributeColor = "Color"
2016-10-17 23:21:08 +02:00
// InstancesHealthAttributeCauses is a InstancesHealthAttribute enum value
2016-03-07 21:42:30 +01:00
InstancesHealthAttributeCauses = "Causes"
2016-10-17 23:21:08 +02:00
// InstancesHealthAttributeApplicationMetrics is a InstancesHealthAttribute enum value
2016-03-07 21:42:30 +01:00
InstancesHealthAttributeApplicationMetrics = "ApplicationMetrics"
2016-10-17 23:21:08 +02:00
// InstancesHealthAttributeRefreshedAt is a InstancesHealthAttribute enum value
2016-03-07 21:42:30 +01:00
InstancesHealthAttributeRefreshedAt = "RefreshedAt"
2016-10-17 23:21:08 +02:00
// InstancesHealthAttributeLaunchedAt is a InstancesHealthAttribute enum value
2016-03-07 21:42:30 +01:00
InstancesHealthAttributeLaunchedAt = "LaunchedAt"
2016-10-17 23:21:08 +02:00
// InstancesHealthAttributeSystem is a InstancesHealthAttribute enum value
2016-03-07 21:42:30 +01:00
InstancesHealthAttributeSystem = "System"
2016-10-17 23:21:08 +02:00
// InstancesHealthAttributeDeployment is a InstancesHealthAttribute enum value
2016-05-05 03:06:27 +02:00
InstancesHealthAttributeDeployment = "Deployment"
2016-10-17 23:21:08 +02:00
// InstancesHealthAttributeAvailabilityZone is a InstancesHealthAttribute enum value
2016-05-05 03:06:27 +02:00
InstancesHealthAttributeAvailabilityZone = "AvailabilityZone"
2016-10-17 23:21:08 +02:00
// InstancesHealthAttributeInstanceType is a InstancesHealthAttribute enum value
2016-05-05 03:06:27 +02:00
InstancesHealthAttributeInstanceType = "InstanceType"
2016-10-17 23:21:08 +02:00
// InstancesHealthAttributeAll is a InstancesHealthAttribute enum value
2016-03-07 21:42:30 +01:00
InstancesHealthAttributeAll = "All"
)
2017-03-03 19:48:24 +01:00
const (
// PlatformStatusCreating is a PlatformStatus enum value
PlatformStatusCreating = "Creating"
// PlatformStatusFailed is a PlatformStatus enum value
PlatformStatusFailed = "Failed"
// PlatformStatusReady is a PlatformStatus enum value
PlatformStatusReady = "Ready"
// PlatformStatusDeleting is a PlatformStatus enum value
PlatformStatusDeleting = "Deleting"
// PlatformStatusDeleted is a PlatformStatus enum value
PlatformStatusDeleted = "Deleted"
)
2016-03-07 21:42:30 +01:00
const (
2016-10-17 23:21:08 +02:00
// SourceRepositoryCodeCommit is a SourceRepository enum value
SourceRepositoryCodeCommit = "CodeCommit"
2016-12-02 15:37:53 +01:00
// SourceRepositoryS3 is a SourceRepository enum value
SourceRepositoryS3 = "S3"
2016-10-17 23:21:08 +02:00
)
const (
// SourceTypeGit is a SourceType enum value
SourceTypeGit = "Git"
2016-12-02 15:37:53 +01:00
// SourceTypeZip is a SourceType enum value
SourceTypeZip = "Zip"
2016-10-17 23:21:08 +02:00
)
const (
// ValidationSeverityError is a ValidationSeverity enum value
2016-03-07 21:42:30 +01:00
ValidationSeverityError = "error"
2016-10-17 23:21:08 +02:00
// ValidationSeverityWarning is a ValidationSeverity enum value
2016-03-07 21:42:30 +01:00
ValidationSeverityWarning = "warning"
)