...
AWS SDK for Go API Reference
We announced the upcoming end-of-support for AWS SDK for Go (v1). We recommend that you migrate to AWS SDK for Go v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement.
import "github.com/aws/aws-sdk-go/service/codedeploy"
Overview
Constants

Overview ▾

Package codedeploy provides the client and types for making API requests to AWS CodeDeploy.

CodeDeploy is a deployment service that automates application deployments to Amazon EC2 instances, on-premises instances running in your own facility, serverless Lambda functions, or applications in an Amazon ECS service.

You can deploy a nearly unlimited variety of application content, such as an updated Lambda function, updated applications in an Amazon ECS service, code, web and configuration files, executables, packages, scripts, multimedia files, and so on. CodeDeploy can deploy application content stored in Amazon S3 buckets, GitHub repositories, or Bitbucket repositories. You do not need to make changes to your existing code before you can use CodeDeploy.

CodeDeploy makes it easier for you to rapidly release new features, helps you avoid downtime during application deployment, and handles the complexity of updating your applications, without many of the risks associated with error-prone manual deployments.

CodeDeploy Components

Use the information in this guide to help you work with the following CodeDeploy components:

  • Application: A name that uniquely identifies the application you want to deploy. CodeDeploy uses this name, which functions as a container, to ensure the correct combination of revision, deployment configuration, and deployment group are referenced during a deployment.

  • Deployment group: A set of individual instances, CodeDeploy Lambda deployment configuration settings, or an Amazon ECS service and network details. A Lambda deployment group specifies how to route traffic to a new version of a Lambda function. An Amazon ECS deployment group specifies the service created in Amazon ECS to deploy, a load balancer, and a listener to reroute production traffic to an updated containerized application. An Amazon EC2/On-premises deployment group contains individually tagged instances, Amazon EC2 instances in Amazon EC2 Auto Scaling groups, or both. All deployment groups can specify optional trigger, alarm, and rollback settings.

  • Deployment configuration: A set of deployment rules and deployment success and failure conditions used by CodeDeploy during a deployment.

  • Deployment: The process and the components used when updating a Lambda function, a containerized application in an Amazon ECS service, or of installing content on one or more instances.

  • Application revisions: For an Lambda deployment, this is an AppSpec file that specifies the Lambda function to be updated and one or more functions to validate deployment lifecycle events. For an Amazon ECS deployment, this is an AppSpec file that specifies the Amazon ECS task definition, container, and port where production traffic is rerouted. For an EC2/On-premises deployment, this is an archive file that contains source content—source code, webpages, executable files, and deployment scripts—along with an AppSpec file. Revisions are stored in Amazon S3 buckets or GitHub repositories. For Amazon S3, a revision is uniquely identified by its Amazon S3 object key and its ETag, version, or both. For GitHub, a revision is uniquely identified by its commit ID.

This guide also contains information to help you get details about the instances in your deployments, to make on-premises instances available for CodeDeploy deployments, to get details about a Lambda function deployment, and to get details about Amazon ECS service deployments.

CodeDeploy Information Resources

See https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06 for more information on this service.

See codedeploy package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/codedeploy/

Using the Client

To contact AWS CodeDeploy with the SDK use the New function to create a new service client. With that client you can make API requests to the service. These clients are safe to use concurrently.

See the SDK's documentation for more information on how to use the SDK. https://docs.aws.amazon.com/sdk-for-go/api/

See aws.Config documentation for more information on configuring SDK clients. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the AWS CodeDeploy client CodeDeploy for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/codedeploy/#New

The stub package, codedeployiface, can be used to provide alternative implementations of service clients, such as mocking the client for testing.

Types ▾

type CodeDeploy
func New(p client.ConfigProvider, cfgs ...*aws.Config) *CodeDeploy
func (c *CodeDeploy) AddTagsToOnPremisesInstances(input *AddTagsToOnPremisesInstancesInput) (*AddTagsToOnPremisesInstancesOutput, error)
func (c *CodeDeploy) AddTagsToOnPremisesInstancesRequest(input *AddTagsToOnPremisesInstancesInput) (req *request.Request, output *AddTagsToOnPremisesInstancesOutput)
func (c *CodeDeploy) AddTagsToOnPremisesInstancesWithContext(ctx aws.Context, input *AddTagsToOnPremisesInstancesInput, opts ...request.Option) (*AddTagsToOnPremisesInstancesOutput, error)
func (c *CodeDeploy) BatchGetApplicationRevisions(input *BatchGetApplicationRevisionsInput) (*BatchGetApplicationRevisionsOutput, error)
func (c *CodeDeploy) BatchGetApplicationRevisionsRequest(input *BatchGetApplicationRevisionsInput) (req *request.Request, output *BatchGetApplicationRevisionsOutput)
func (c *CodeDeploy) BatchGetApplicationRevisionsWithContext(ctx aws.Context, input *BatchGetApplicationRevisionsInput, opts ...request.Option) (*BatchGetApplicationRevisionsOutput, error)
func (c *CodeDeploy) BatchGetApplications(input *BatchGetApplicationsInput) (*BatchGetApplicationsOutput, error)
func (c *CodeDeploy) BatchGetApplicationsRequest(input *BatchGetApplicationsInput) (req *request.Request, output *BatchGetApplicationsOutput)
func (c *CodeDeploy) BatchGetApplicationsWithContext(ctx aws.Context, input *BatchGetApplicationsInput, opts ...request.Option) (*BatchGetApplicationsOutput, error)
func (c *CodeDeploy) BatchGetDeploymentGroups(input *BatchGetDeploymentGroupsInput) (*BatchGetDeploymentGroupsOutput, error)
func (c *CodeDeploy) BatchGetDeploymentGroupsRequest(input *BatchGetDeploymentGroupsInput) (req *request.Request, output *BatchGetDeploymentGroupsOutput)
func (c *CodeDeploy) BatchGetDeploymentGroupsWithContext(ctx aws.Context, input *BatchGetDeploymentGroupsInput, opts ...request.Option) (*BatchGetDeploymentGroupsOutput, error)
func (c *CodeDeploy) BatchGetDeploymentInstances(input *BatchGetDeploymentInstancesInput) (*BatchGetDeploymentInstancesOutput, error)
func (c *CodeDeploy) BatchGetDeploymentInstancesRequest(input *BatchGetDeploymentInstancesInput) (req *request.Request, output *BatchGetDeploymentInstancesOutput)
func (c *CodeDeploy) BatchGetDeploymentInstancesWithContext(ctx aws.Context, input *BatchGetDeploymentInstancesInput, opts ...request.Option) (*BatchGetDeploymentInstancesOutput, error)
func (c *CodeDeploy) BatchGetDeploymentTargets(input *BatchGetDeploymentTargetsInput) (*BatchGetDeploymentTargetsOutput, error)
func (c *CodeDeploy) BatchGetDeploymentTargetsRequest(input *BatchGetDeploymentTargetsInput) (req *request.Request, output *BatchGetDeploymentTargetsOutput)
func (c *CodeDeploy) BatchGetDeploymentTargetsWithContext(ctx aws.Context, input *BatchGetDeploymentTargetsInput, opts ...request.Option) (*BatchGetDeploymentTargetsOutput, error)
func (c *CodeDeploy) BatchGetDeployments(input *BatchGetDeploymentsInput) (*BatchGetDeploymentsOutput, error)
func (c *CodeDeploy) BatchGetDeploymentsRequest(input *BatchGetDeploymentsInput) (req *request.Request, output *BatchGetDeploymentsOutput)
func (c *CodeDeploy) BatchGetDeploymentsWithContext(ctx aws.Context, input *BatchGetDeploymentsInput, opts ...request.Option) (*BatchGetDeploymentsOutput, error)
func (c *CodeDeploy) BatchGetOnPremisesInstances(input *BatchGetOnPremisesInstancesInput) (*BatchGetOnPremisesInstancesOutput, error)
func (c *CodeDeploy) BatchGetOnPremisesInstancesRequest(input *BatchGetOnPremisesInstancesInput) (req *request.Request, output *BatchGetOnPremisesInstancesOutput)
func (c *CodeDeploy) BatchGetOnPremisesInstancesWithContext(ctx aws.Context, input *BatchGetOnPremisesInstancesInput, opts ...request.Option) (*BatchGetOnPremisesInstancesOutput, error)
func (c *CodeDeploy) ContinueDeployment(input *ContinueDeploymentInput) (*ContinueDeploymentOutput, error)
func (c *CodeDeploy) ContinueDeploymentRequest(input *ContinueDeploymentInput) (req *request.Request, output *ContinueDeploymentOutput)
func (c *CodeDeploy) ContinueDeploymentWithContext(ctx aws.Context, input *ContinueDeploymentInput, opts ...request.Option) (*ContinueDeploymentOutput, error)
func (c *CodeDeploy) CreateApplication(input *CreateApplicationInput) (*CreateApplicationOutput, error)
func (c *CodeDeploy) CreateApplicationRequest(input *CreateApplicationInput) (req *request.Request, output *CreateApplicationOutput)
func (c *CodeDeploy) CreateApplicationWithContext(ctx aws.Context, input *CreateApplicationInput, opts ...request.Option) (*CreateApplicationOutput, error)
func (c *CodeDeploy) CreateDeployment(input *CreateDeploymentInput) (*CreateDeploymentOutput, error)
func (c *CodeDeploy) CreateDeploymentConfig(input *CreateDeploymentConfigInput) (*CreateDeploymentConfigOutput, error)
func (c *CodeDeploy) CreateDeploymentConfigRequest(input *CreateDeploymentConfigInput) (req *request.Request, output *CreateDeploymentConfigOutput)
func (c *CodeDeploy) CreateDeploymentConfigWithContext(ctx aws.Context, input *CreateDeploymentConfigInput, opts ...request.Option) (*CreateDeploymentConfigOutput, error)
func (c *CodeDeploy) CreateDeploymentGroup(input *CreateDeploymentGroupInput) (*CreateDeploymentGroupOutput, error)
func (c *CodeDeploy) CreateDeploymentGroupRequest(input *CreateDeploymentGroupInput) (req *request.Request, output *CreateDeploymentGroupOutput)
func (c *CodeDeploy) CreateDeploymentGroupWithContext(ctx aws.Context, input *CreateDeploymentGroupInput, opts ...request.Option) (*CreateDeploymentGroupOutput, error)
func (c *CodeDeploy) CreateDeploymentRequest(input *CreateDeploymentInput) (req *request.Request, output *CreateDeploymentOutput)
func (c *CodeDeploy) CreateDeploymentWithContext(ctx aws.Context, input *CreateDeploymentInput, opts ...request.Option) (*CreateDeploymentOutput, error)
func (c *CodeDeploy) DeleteApplication(input *DeleteApplicationInput) (*DeleteApplicationOutput, error)
func (c *CodeDeploy) DeleteApplicationRequest(input *DeleteApplicationInput) (req *request.Request, output *DeleteApplicationOutput)
func (c *CodeDeploy) DeleteApplicationWithContext(ctx aws.Context, input *DeleteApplicationInput, opts ...request.Option) (*DeleteApplicationOutput, error)
func (c *CodeDeploy) DeleteDeploymentConfig(input *DeleteDeploymentConfigInput) (*DeleteDeploymentConfigOutput, error)
func (c *CodeDeploy) DeleteDeploymentConfigRequest(input *DeleteDeploymentConfigInput) (req *request.Request, output *DeleteDeploymentConfigOutput)
func (c *CodeDeploy) DeleteDeploymentConfigWithContext(ctx aws.Context, input *DeleteDeploymentConfigInput, opts ...request.Option) (*DeleteDeploymentConfigOutput, error)
func (c *CodeDeploy) DeleteDeploymentGroup(input *DeleteDeploymentGroupInput) (*DeleteDeploymentGroupOutput, error)
func (c *CodeDeploy) DeleteDeploymentGroupRequest(input *DeleteDeploymentGroupInput) (req *request.Request, output *DeleteDeploymentGroupOutput)
func (c *CodeDeploy) DeleteDeploymentGroupWithContext(ctx aws.Context, input *DeleteDeploymentGroupInput, opts ...request.Option) (*DeleteDeploymentGroupOutput, error)
func (c *CodeDeploy) DeleteGitHubAccountToken(input *DeleteGitHubAccountTokenInput) (*DeleteGitHubAccountTokenOutput, error)
func (c *CodeDeploy) DeleteGitHubAccountTokenRequest(input *DeleteGitHubAccountTokenInput) (req *request.Request, output *DeleteGitHubAccountTokenOutput)
func (c *CodeDeploy) DeleteGitHubAccountTokenWithContext(ctx aws.Context, input *DeleteGitHubAccountTokenInput, opts ...request.Option) (*DeleteGitHubAccountTokenOutput, error)
func (c *CodeDeploy) DeleteResourcesByExternalId(input *DeleteResourcesByExternalIdInput) (*DeleteResourcesByExternalIdOutput, error)
func (c *CodeDeploy) DeleteResourcesByExternalIdRequest(input *DeleteResourcesByExternalIdInput) (req *request.Request, output *DeleteResourcesByExternalIdOutput)
func (c *CodeDeploy) DeleteResourcesByExternalIdWithContext(ctx aws.Context, input *DeleteResourcesByExternalIdInput, opts ...request.Option) (*DeleteResourcesByExternalIdOutput, error)
func (c *CodeDeploy) DeregisterOnPremisesInstance(input *DeregisterOnPremisesInstanceInput) (*DeregisterOnPremisesInstanceOutput, error)
func (c *CodeDeploy) DeregisterOnPremisesInstanceRequest(input *DeregisterOnPremisesInstanceInput) (req *request.Request, output *DeregisterOnPremisesInstanceOutput)
func (c *CodeDeploy) DeregisterOnPremisesInstanceWithContext(ctx aws.Context, input *DeregisterOnPremisesInstanceInput, opts ...request.Option) (*DeregisterOnPremisesInstanceOutput, error)
func (c *CodeDeploy) GetApplication(input *GetApplicationInput) (*GetApplicationOutput, error)
func (c *CodeDeploy) GetApplicationRequest(input *GetApplicationInput) (req *request.Request, output *GetApplicationOutput)
func (c *CodeDeploy) GetApplicationRevision(input *GetApplicationRevisionInput) (*GetApplicationRevisionOutput, error)
func (c *CodeDeploy) GetApplicationRevisionRequest(input *GetApplicationRevisionInput) (req *request.Request, output *GetApplicationRevisionOutput)
func (c *CodeDeploy) GetApplicationRevisionWithContext(ctx aws.Context, input *GetApplicationRevisionInput, opts ...request.Option) (*GetApplicationRevisionOutput, error)
func (c *CodeDeploy) GetApplicationWithContext(ctx aws.Context, input *GetApplicationInput, opts ...request.Option) (*GetApplicationOutput, error)
func (c *CodeDeploy) GetDeployment(input *GetDeploymentInput) (*GetDeploymentOutput, error)
func (c *CodeDeploy) GetDeploymentConfig(input *GetDeploymentConfigInput) (*GetDeploymentConfigOutput, error)
func (c *CodeDeploy) GetDeploymentConfigRequest(input *GetDeploymentConfigInput) (req *request.Request, output *GetDeploymentConfigOutput)
func (c *CodeDeploy) GetDeploymentConfigWithContext(ctx aws.Context, input *GetDeploymentConfigInput, opts ...request.Option) (*GetDeploymentConfigOutput, error)
func (c *CodeDeploy) GetDeploymentGroup(input *GetDeploymentGroupInput) (*GetDeploymentGroupOutput, error)
func (c *CodeDeploy) GetDeploymentGroupRequest(input *GetDeploymentGroupInput) (req *request.Request, output *GetDeploymentGroupOutput)
func (c *CodeDeploy) GetDeploymentGroupWithContext(ctx aws.Context, input *GetDeploymentGroupInput, opts ...request.Option) (*GetDeploymentGroupOutput, error)
func (c *CodeDeploy) GetDeploymentInstance(input *GetDeploymentInstanceInput) (*GetDeploymentInstanceOutput, error)
func (c *CodeDeploy) GetDeploymentInstanceRequest(input *GetDeploymentInstanceInput) (req *request.Request, output *GetDeploymentInstanceOutput)
func (c *CodeDeploy) GetDeploymentInstanceWithContext(ctx aws.Context, input *GetDeploymentInstanceInput, opts ...request.Option) (*GetDeploymentInstanceOutput, error)
func (c *CodeDeploy) GetDeploymentRequest(input *GetDeploymentInput) (req *request.Request, output *GetDeploymentOutput)
func (c *CodeDeploy) GetDeploymentTarget(input *GetDeploymentTargetInput) (*GetDeploymentTargetOutput, error)
func (c *CodeDeploy) GetDeploymentTargetRequest(input *GetDeploymentTargetInput) (req *request.Request, output *GetDeploymentTargetOutput)
func (c *CodeDeploy) GetDeploymentTargetWithContext(ctx aws.Context, input *GetDeploymentTargetInput, opts ...request.Option) (*GetDeploymentTargetOutput, error)
func (c *CodeDeploy) GetDeploymentWithContext(ctx aws.Context, input *GetDeploymentInput, opts ...request.Option) (*GetDeploymentOutput, error)
func (c *CodeDeploy) GetOnPremisesInstance(input *GetOnPremisesInstanceInput) (*GetOnPremisesInstanceOutput, error)
func (c *CodeDeploy) GetOnPremisesInstanceRequest(input *GetOnPremisesInstanceInput) (req *request.Request, output *GetOnPremisesInstanceOutput)
func (c *CodeDeploy) GetOnPremisesInstanceWithContext(ctx aws.Context, input *GetOnPremisesInstanceInput, opts ...request.Option) (*GetOnPremisesInstanceOutput, error)
func (c *CodeDeploy) ListApplicationRevisions(input *ListApplicationRevisionsInput) (*ListApplicationRevisionsOutput, error)
func (c *CodeDeploy) ListApplicationRevisionsPages(input *ListApplicationRevisionsInput, fn func(*ListApplicationRevisionsOutput, bool) bool) error
func (c *CodeDeploy) ListApplicationRevisionsPagesWithContext(ctx aws.Context, input *ListApplicationRevisionsInput, fn func(*ListApplicationRevisionsOutput, bool) bool, opts ...request.Option) error
func (c *CodeDeploy) ListApplicationRevisionsRequest(input *ListApplicationRevisionsInput) (req *request.Request, output *ListApplicationRevisionsOutput)
func (c *CodeDeploy) ListApplicationRevisionsWithContext(ctx aws.Context, input *ListApplicationRevisionsInput, opts ...request.Option) (*ListApplicationRevisionsOutput, error)
func (c *CodeDeploy) ListApplications(input *ListApplicationsInput) (*ListApplicationsOutput, error)
func (c *CodeDeploy) ListApplicationsPages(input *ListApplicationsInput, fn func(*ListApplicationsOutput, bool) bool) error
func (c *CodeDeploy) ListApplicationsPagesWithContext(ctx aws.Context, input *ListApplicationsInput, fn func(*ListApplicationsOutput, bool) bool, opts ...request.Option) error
func (c *CodeDeploy) ListApplicationsRequest(input *ListApplicationsInput) (req *request.Request, output *ListApplicationsOutput)
func (c *CodeDeploy) ListApplicationsWithContext(ctx aws.Context, input *ListApplicationsInput, opts ...request.Option) (*ListApplicationsOutput, error)
func (c *CodeDeploy) ListDeploymentConfigs(input *ListDeploymentConfigsInput) (*ListDeploymentConfigsOutput, error)
func (c *CodeDeploy) ListDeploymentConfigsPages(input *ListDeploymentConfigsInput, fn func(*ListDeploymentConfigsOutput, bool) bool) error
func (c *CodeDeploy) ListDeploymentConfigsPagesWithContext(ctx aws.Context, input *ListDeploymentConfigsInput, fn func(*ListDeploymentConfigsOutput, bool) bool, opts ...request.Option) error
func (c *CodeDeploy) ListDeploymentConfigsRequest(input *ListDeploymentConfigsInput) (req *request.Request, output *ListDeploymentConfigsOutput)
func (c *CodeDeploy) ListDeploymentConfigsWithContext(ctx aws.Context, input *ListDeploymentConfigsInput, opts ...request.Option) (*ListDeploymentConfigsOutput, error)
func (c *CodeDeploy) ListDeploymentGroups(input *ListDeploymentGroupsInput) (*ListDeploymentGroupsOutput, error)
func (c *CodeDeploy) ListDeploymentGroupsPages(input *ListDeploymentGroupsInput, fn func(*ListDeploymentGroupsOutput, bool) bool) error
func (c *CodeDeploy) ListDeploymentGroupsPagesWithContext(ctx aws.Context, input *ListDeploymentGroupsInput, fn func(*ListDeploymentGroupsOutput, bool) bool, opts ...request.Option) error
func (c *CodeDeploy) ListDeploymentGroupsRequest(input *ListDeploymentGroupsInput) (req *request.Request, output *ListDeploymentGroupsOutput)
func (c *CodeDeploy) ListDeploymentGroupsWithContext(ctx aws.Context, input *ListDeploymentGroupsInput, opts ...request.Option) (*ListDeploymentGroupsOutput, error)
func (c *CodeDeploy) ListDeploymentInstances(input *ListDeploymentInstancesInput) (*ListDeploymentInstancesOutput, error)
func (c *CodeDeploy) ListDeploymentInstancesPages(input *ListDeploymentInstancesInput, fn func(*ListDeploymentInstancesOutput, bool) bool) error
func (c *CodeDeploy) ListDeploymentInstancesPagesWithContext(ctx aws.Context, input *ListDeploymentInstancesInput, fn func(*ListDeploymentInstancesOutput, bool) bool, opts ...request.Option) error
func (c *CodeDeploy) ListDeploymentInstancesRequest(input *ListDeploymentInstancesInput) (req *request.Request, output *ListDeploymentInstancesOutput)
func (c *CodeDeploy) ListDeploymentInstancesWithContext(ctx aws.Context, input *ListDeploymentInstancesInput, opts ...request.Option) (*ListDeploymentInstancesOutput, error)
func (c *CodeDeploy) ListDeploymentTargets(input *ListDeploymentTargetsInput) (*ListDeploymentTargetsOutput, error)
func (c *CodeDeploy) ListDeploymentTargetsRequest(input *ListDeploymentTargetsInput) (req *request.Request, output *ListDeploymentTargetsOutput)
func (c *CodeDeploy) ListDeploymentTargetsWithContext(ctx aws.Context, input *ListDeploymentTargetsInput, opts ...request.Option) (*ListDeploymentTargetsOutput, error)
func (c *CodeDeploy) ListDeployments(input *ListDeploymentsInput) (*ListDeploymentsOutput, error)
func (c *CodeDeploy) ListDeploymentsPages(input *ListDeploymentsInput, fn func(*ListDeploymentsOutput, bool) bool) error
func (c *CodeDeploy) ListDeploymentsPagesWithContext(ctx aws.Context, input *ListDeploymentsInput, fn func(*ListDeploymentsOutput, bool) bool, opts ...request.Option) error
func (c *CodeDeploy) ListDeploymentsRequest(input *ListDeploymentsInput) (req *request.Request, output *ListDeploymentsOutput)
func (c *CodeDeploy) ListDeploymentsWithContext(ctx aws.Context, input *ListDeploymentsInput, opts ...request.Option) (*ListDeploymentsOutput, error)
func (c *CodeDeploy) ListGitHubAccountTokenNames(input *ListGitHubAccountTokenNamesInput) (*ListGitHubAccountTokenNamesOutput, error)
func (c *CodeDeploy) ListGitHubAccountTokenNamesRequest(input *ListGitHubAccountTokenNamesInput) (req *request.Request, output *ListGitHubAccountTokenNamesOutput)
func (c *CodeDeploy) ListGitHubAccountTokenNamesWithContext(ctx aws.Context, input *ListGitHubAccountTokenNamesInput, opts ...request.Option) (*ListGitHubAccountTokenNamesOutput, error)
func (c *CodeDeploy) ListOnPremisesInstances(input *ListOnPremisesInstancesInput) (*ListOnPremisesInstancesOutput, error)
func (c *CodeDeploy) ListOnPremisesInstancesRequest(input *ListOnPremisesInstancesInput) (req *request.Request, output *ListOnPremisesInstancesOutput)
func (c *CodeDeploy) ListOnPremisesInstancesWithContext(ctx aws.Context, input *ListOnPremisesInstancesInput, opts ...request.Option) (*ListOnPremisesInstancesOutput, error)
func (c *CodeDeploy) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)
func (c *CodeDeploy) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)
func (c *CodeDeploy) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)
func (c *CodeDeploy) PutLifecycleEventHookExecutionStatus(input *PutLifecycleEventHookExecutionStatusInput) (*PutLifecycleEventHookExecutionStatusOutput, error)
func (c *CodeDeploy) PutLifecycleEventHookExecutionStatusRequest(input *PutLifecycleEventHookExecutionStatusInput) (req *request.Request, output *PutLifecycleEventHookExecutionStatusOutput)
func (c *CodeDeploy) PutLifecycleEventHookExecutionStatusWithContext(ctx aws.Context, input *PutLifecycleEventHookExecutionStatusInput, opts ...request.Option) (*PutLifecycleEventHookExecutionStatusOutput, error)
func (c *CodeDeploy) RegisterApplicationRevision(input *RegisterApplicationRevisionInput) (*RegisterApplicationRevisionOutput, error)
func (c *CodeDeploy) RegisterApplicationRevisionRequest(input *RegisterApplicationRevisionInput) (req *request.Request, output *RegisterApplicationRevisionOutput)
func (c *CodeDeploy) RegisterApplicationRevisionWithContext(ctx aws.Context, input *RegisterApplicationRevisionInput, opts ...request.Option) (*RegisterApplicationRevisionOutput, error)
func (c *CodeDeploy) RegisterOnPremisesInstance(input *RegisterOnPremisesInstanceInput) (*RegisterOnPremisesInstanceOutput, error)
func (c *CodeDeploy) RegisterOnPremisesInstanceRequest(input *RegisterOnPremisesInstanceInput) (req *request.Request, output *RegisterOnPremisesInstanceOutput)
func (c *CodeDeploy) RegisterOnPremisesInstanceWithContext(ctx aws.Context, input *RegisterOnPremisesInstanceInput, opts ...request.Option) (*RegisterOnPremisesInstanceOutput, error)
func (c *CodeDeploy) RemoveTagsFromOnPremisesInstances(input *RemoveTagsFromOnPremisesInstancesInput) (*RemoveTagsFromOnPremisesInstancesOutput, error)
func (c *CodeDeploy) RemoveTagsFromOnPremisesInstancesRequest(input *RemoveTagsFromOnPremisesInstancesInput) (req *request.Request, output *RemoveTagsFromOnPremisesInstancesOutput)
func (c *CodeDeploy) RemoveTagsFromOnPremisesInstancesWithContext(ctx aws.Context, input *RemoveTagsFromOnPremisesInstancesInput, opts ...request.Option) (*RemoveTagsFromOnPremisesInstancesOutput, error)
func (c *CodeDeploy) SkipWaitTimeForInstanceTermination(input *SkipWaitTimeForInstanceTerminationInput) (*SkipWaitTimeForInstanceTerminationOutput, error)
func (c *CodeDeploy) SkipWaitTimeForInstanceTerminationRequest(input *SkipWaitTimeForInstanceTerminationInput) (req *request.Request, output *SkipWaitTimeForInstanceTerminationOutput)
func (c *CodeDeploy) SkipWaitTimeForInstanceTerminationWithContext(ctx aws.Context, input *SkipWaitTimeForInstanceTerminationInput, opts ...request.Option) (*SkipWaitTimeForInstanceTerminationOutput, error)
func (c *CodeDeploy) StopDeployment(input *StopDeploymentInput) (*StopDeploymentOutput, error)
func (c *CodeDeploy) StopDeploymentRequest(input *StopDeploymentInput) (req *request.Request, output *StopDeploymentOutput)
func (c *CodeDeploy) StopDeploymentWithContext(ctx aws.Context, input *StopDeploymentInput, opts ...request.Option) (*StopDeploymentOutput, error)
func (c *CodeDeploy) TagResource(input *TagResourceInput) (*TagResourceOutput, error)
func (c *CodeDeploy) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput)
func (c *CodeDeploy) TagResourceWithContext(ctx aws.Context, input *TagResourceInput, opts ...request.Option) (*TagResourceOutput, error)
func (c *CodeDeploy) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error)
func (c *CodeDeploy) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput)
func (c *CodeDeploy) UntagResourceWithContext(ctx aws.Context, input *UntagResourceInput, opts ...request.Option) (*UntagResourceOutput, error)
func (c *CodeDeploy) UpdateApplication(input *UpdateApplicationInput) (*UpdateApplicationOutput, error)
func (c *CodeDeploy) UpdateApplicationRequest(input *UpdateApplicationInput) (req *request.Request, output *UpdateApplicationOutput)
func (c *CodeDeploy) UpdateApplicationWithContext(ctx aws.Context, input *UpdateApplicationInput, opts ...request.Option) (*UpdateApplicationOutput, error)
func (c *CodeDeploy) UpdateDeploymentGroup(input *UpdateDeploymentGroupInput) (*UpdateDeploymentGroupOutput, error)
func (c *CodeDeploy) UpdateDeploymentGroupRequest(input *UpdateDeploymentGroupInput) (req *request.Request, output *UpdateDeploymentGroupOutput)
func (c *CodeDeploy) UpdateDeploymentGroupWithContext(ctx aws.Context, input *UpdateDeploymentGroupInput, opts ...request.Option) (*UpdateDeploymentGroupOutput, error)
func (c *CodeDeploy) WaitUntilDeploymentSuccessful(input *GetDeploymentInput) error
func (c *CodeDeploy) WaitUntilDeploymentSuccessfulWithContext(ctx aws.Context, input *GetDeploymentInput, opts ...request.WaiterOption) error
func ApplicationRevisionSortBy_Values() []string
func AutoRollbackEvent_Values() []string
func BundleType_Values() []string
func ComputePlatform_Values() []string
func DeploymentCreator_Values() []string
func DeploymentOption_Values() []string
func DeploymentReadyAction_Values() []string
func DeploymentStatus_Values() []string
func DeploymentTargetType_Values() []string
func DeploymentType_Values() []string
func DeploymentWaitType_Values() []string
func EC2TagFilterType_Values() []string
func ErrorCode_Values() []string
func FileExistsBehavior_Values() []string
func GreenFleetProvisioningAction_Values() []string
func InstanceAction_Values() []string
func InstanceStatus_Values() []string
func InstanceType_Values() []string
func LifecycleErrorCode_Values() []string
func LifecycleEventStatus_Values() []string
func ListStateFilterAction_Values() []string
func MinimumHealthyHostsPerZoneType_Values() []string
func MinimumHealthyHostsType_Values() []string
func OutdatedInstancesStrategy_Values() []string
func RegistrationStatus_Values() []string
func RevisionLocationType_Values() []string
func SortOrder_Values() []string
func StopStatus_Values() []string
func TagFilterType_Values() []string
func TargetFilterName_Values() []string
func TargetLabel_Values() []string
func TargetStatus_Values() []string
func TrafficRoutingType_Values() []string
func TriggerEventType_Values() []string
type AddTagsToOnPremisesInstancesInput
type AddTagsToOnPremisesInstancesOutput
type Alarm
type AlarmConfiguration
type AlarmsLimitExceededException
type AppSpecContent
type ApplicationAlreadyExistsException
type ApplicationDoesNotExistException
type ApplicationInfo
type ApplicationLimitExceededException
type ApplicationNameRequiredException
type ArnNotSupportedException
type AutoRollbackConfiguration
type AutoScalingGroup
type BatchGetApplicationRevisionsInput
type BatchGetApplicationRevisionsOutput
type BatchGetApplicationsInput
type BatchGetApplicationsOutput
type BatchGetDeploymentGroupsInput
type BatchGetDeploymentGroupsOutput
type BatchGetDeploymentInstancesInput
type BatchGetDeploymentInstancesOutput
type BatchGetDeploymentTargetsInput
type BatchGetDeploymentTargetsOutput
type BatchGetDeploymentsInput
type BatchGetDeploymentsOutput
type BatchGetOnPremisesInstancesInput
type BatchGetOnPremisesInstancesOutput
type BatchLimitExceededException
type BlueGreenDeploymentConfiguration
type BlueInstanceTerminationOption
type BucketNameFilterRequiredException
type CloudFormationTarget
type ContinueDeploymentInput
type ContinueDeploymentOutput
type CreateApplicationInput
type CreateApplicationOutput
type CreateDeploymentConfigInput
type CreateDeploymentConfigOutput
type CreateDeploymentGroupInput
type CreateDeploymentGroupOutput
type CreateDeploymentInput
type CreateDeploymentOutput
type DeleteApplicationInput
type DeleteApplicationOutput
type DeleteDeploymentConfigInput
type DeleteDeploymentConfigOutput
type DeleteDeploymentGroupInput
type DeleteDeploymentGroupOutput
type DeleteGitHubAccountTokenInput
type DeleteGitHubAccountTokenOutput
type DeleteResourcesByExternalIdInput
type DeleteResourcesByExternalIdOutput
type DeploymentAlreadyCompletedException
type DeploymentConfigAlreadyExistsException
type DeploymentConfigDoesNotExistException
type DeploymentConfigInUseException
type DeploymentConfigInfo
type DeploymentConfigLimitExceededException
type DeploymentConfigNameRequiredException
type DeploymentDoesNotExistException
type DeploymentGroupAlreadyExistsException
type DeploymentGroupDoesNotExistException
type DeploymentGroupInfo
type DeploymentGroupLimitExceededException
type DeploymentGroupNameRequiredException
type DeploymentIdRequiredException
type DeploymentInfo
type DeploymentIsNotInReadyStateException
type DeploymentLimitExceededException
type DeploymentNotStartedException
type DeploymentOverview
type DeploymentReadyOption
type DeploymentStyle
type DeploymentTarget
type DeploymentTargetDoesNotExistException
type DeploymentTargetIdRequiredException
type DeploymentTargetListSizeExceededException
type DeregisterOnPremisesInstanceInput
type DeregisterOnPremisesInstanceOutput
type DescriptionTooLongException
type Diagnostics
type EC2TagFilter
type EC2TagSet
type ECSService
type ECSServiceMappingLimitExceededException
type ECSTarget
type ECSTaskSet
type ELBInfo
type ErrorInformation
type GenericRevisionInfo
type GetApplicationInput
type GetApplicationOutput
type GetApplicationRevisionInput
type GetApplicationRevisionOutput
type GetDeploymentConfigInput
type GetDeploymentConfigOutput
type GetDeploymentGroupInput
type GetDeploymentGroupOutput
type GetDeploymentInput
type GetDeploymentInstanceInput
type GetDeploymentInstanceOutput
type GetDeploymentOutput
type GetDeploymentTargetInput
type GetDeploymentTargetOutput
type GetOnPremisesInstanceInput
type GetOnPremisesInstanceOutput
type GitHubAccountTokenDoesNotExistException
type GitHubAccountTokenNameRequiredException
type GitHubLocation
type GreenFleetProvisioningOption
type IamArnRequiredException
type IamSessionArnAlreadyRegisteredException
type IamUserArnAlreadyRegisteredException
type IamUserArnRequiredException
type InstanceDoesNotExistException
type InstanceIdRequiredException
type InstanceInfo
type InstanceLimitExceededException
type InstanceNameAlreadyRegisteredException
type InstanceNameRequiredException
type InstanceNotRegisteredException
type InstanceSummary
type InstanceTarget
type InvalidAlarmConfigException
type InvalidApplicationNameException
type InvalidArnException
type InvalidAutoRollbackConfigException
type InvalidAutoScalingGroupException
type InvalidBlueGreenDeploymentConfigurationException
type InvalidBucketNameFilterException
type InvalidComputePlatformException
type InvalidDeployedStateFilterException
type InvalidDeploymentConfigNameException
type InvalidDeploymentGroupNameException
type InvalidDeploymentIdException
type InvalidDeploymentInstanceTypeException
type InvalidDeploymentStatusException
type InvalidDeploymentStyleException
type InvalidDeploymentTargetIdException
type InvalidDeploymentWaitTypeException
type InvalidEC2TagCombinationException
type InvalidEC2TagException
type InvalidECSServiceException
type InvalidExternalIdException
type InvalidFileExistsBehaviorException
type InvalidGitHubAccountTokenException
type InvalidGitHubAccountTokenNameException
type InvalidIamSessionArnException
type InvalidIamUserArnException
type InvalidIgnoreApplicationStopFailuresValueException
type InvalidInputException
type InvalidInstanceNameException
type InvalidInstanceStatusException
type InvalidInstanceTypeException
type InvalidKeyPrefixFilterException
type InvalidLifecycleEventHookExecutionIdException
type InvalidLifecycleEventHookExecutionStatusException
type InvalidLoadBalancerInfoException
type InvalidMinimumHealthyHostValueException
type InvalidNextTokenException
type InvalidOnPremisesTagCombinationException
type InvalidOperationException
type InvalidRegistrationStatusException
type InvalidRevisionException
type InvalidRoleException
type InvalidSortByException
type InvalidSortOrderException
type InvalidTagException
type InvalidTagFilterException
type InvalidTagsToAddException
type InvalidTargetFilterNameException
type InvalidTargetGroupPairException
type InvalidTargetInstancesException
type InvalidTimeRangeException
type InvalidTrafficRoutingConfigurationException
type InvalidTriggerConfigException
type InvalidUpdateOutdatedInstancesOnlyValueException
type InvalidZonalDeploymentConfigurationException
type LambdaFunctionInfo
type LambdaTarget
type LastDeploymentInfo
type LifecycleEvent
type LifecycleEventAlreadyCompletedException
type LifecycleHookLimitExceededException
type ListApplicationRevisionsInput
type ListApplicationRevisionsOutput
type ListApplicationsInput
type ListApplicationsOutput
type ListDeploymentConfigsInput
type ListDeploymentConfigsOutput
type ListDeploymentGroupsInput
type ListDeploymentGroupsOutput
type ListDeploymentInstancesInput
type ListDeploymentInstancesOutput
type ListDeploymentTargetsInput
type ListDeploymentTargetsOutput
type ListDeploymentsInput
type ListDeploymentsOutput
type ListGitHubAccountTokenNamesInput
type ListGitHubAccountTokenNamesOutput
type ListOnPremisesInstancesInput
type ListOnPremisesInstancesOutput
type ListTagsForResourceInput
type ListTagsForResourceOutput
type LoadBalancerInfo
type MinimumHealthyHosts
type MinimumHealthyHostsPerZone
type MultipleIamArnsProvidedException
type OnPremisesTagSet
type OperationNotSupportedException
type PutLifecycleEventHookExecutionStatusInput
type PutLifecycleEventHookExecutionStatusOutput
type RawString
type RegisterApplicationRevisionInput
type RegisterApplicationRevisionOutput
type RegisterOnPremisesInstanceInput
type RegisterOnPremisesInstanceOutput
type RelatedDeployments
type RemoveTagsFromOnPremisesInstancesInput
type RemoveTagsFromOnPremisesInstancesOutput
type ResourceArnRequiredException
type ResourceValidationException
type RevisionDoesNotExistException
type RevisionInfo
type RevisionLocation
type RevisionRequiredException
type RoleRequiredException
type RollbackInfo
type S3Location
type SkipWaitTimeForInstanceTerminationInput
type SkipWaitTimeForInstanceTerminationOutput
type StopDeploymentInput
type StopDeploymentOutput
type Tag
type TagFilter
type TagLimitExceededException
type TagRequiredException
type TagResourceInput
type TagResourceOutput
type TagSetListLimitExceededException
type TargetGroupInfo
type TargetGroupPairInfo
type TargetInstances
type ThrottlingException
type TimeBasedCanary
type TimeBasedLinear
type TimeRange
type TrafficRoute
type TrafficRoutingConfig
type TriggerConfig
type TriggerTargetsLimitExceededException
type UnsupportedActionForDeploymentTypeException
type UntagResourceInput
type UntagResourceOutput
type UpdateApplicationInput
type UpdateApplicationOutput
type UpdateDeploymentGroupInput
type UpdateDeploymentGroupOutput
type ZonalConfig

Constants ▾

const (
    // ApplicationRevisionSortByRegisterTime is a ApplicationRevisionSortBy enum value
    ApplicationRevisionSortByRegisterTime = "registerTime"

    // ApplicationRevisionSortByFirstUsedTime is a ApplicationRevisionSortBy enum value
    ApplicationRevisionSortByFirstUsedTime = "firstUsedTime"

    // ApplicationRevisionSortByLastUsedTime is a ApplicationRevisionSortBy enum value
    ApplicationRevisionSortByLastUsedTime = "lastUsedTime"
)
const (
    // AutoRollbackEventDeploymentFailure is a AutoRollbackEvent enum value
    AutoRollbackEventDeploymentFailure = "DEPLOYMENT_FAILURE"

    // AutoRollbackEventDeploymentStopOnAlarm is a AutoRollbackEvent enum value
    AutoRollbackEventDeploymentStopOnAlarm = "DEPLOYMENT_STOP_ON_ALARM"

    // AutoRollbackEventDeploymentStopOnRequest is a AutoRollbackEvent enum value
    AutoRollbackEventDeploymentStopOnRequest = "DEPLOYMENT_STOP_ON_REQUEST"
)
const (
    // BundleTypeTar is a BundleType enum value
    BundleTypeTar = "tar"

    // BundleTypeTgz is a BundleType enum value
    BundleTypeTgz = "tgz"

    // BundleTypeZip is a BundleType enum value
    BundleTypeZip = "zip"

    // BundleTypeYaml is a BundleType enum value
    BundleTypeYaml = "YAML"

    // BundleTypeJson is a BundleType enum value
    BundleTypeJson = "JSON"
)
const (
    // ComputePlatformServer is a ComputePlatform enum value
    ComputePlatformServer = "Server"

    // ComputePlatformLambda is a ComputePlatform enum value
    ComputePlatformLambda = "Lambda"

    // ComputePlatformEcs is a ComputePlatform enum value
    ComputePlatformEcs = "ECS"
)
const (
    // DeploymentCreatorUser is a DeploymentCreator enum value
    DeploymentCreatorUser = "user"

    // DeploymentCreatorAutoscaling is a DeploymentCreator enum value
    DeploymentCreatorAutoscaling = "autoscaling"

    // DeploymentCreatorCodeDeployRollback is a DeploymentCreator enum value
    DeploymentCreatorCodeDeployRollback = "codeDeployRollback"

    // DeploymentCreatorCodeDeploy is a DeploymentCreator enum value
    DeploymentCreatorCodeDeploy = "CodeDeploy"

    // DeploymentCreatorCodeDeployAutoUpdate is a DeploymentCreator enum value
    DeploymentCreatorCodeDeployAutoUpdate = "CodeDeployAutoUpdate"

    // DeploymentCreatorCloudFormation is a DeploymentCreator enum value
    DeploymentCreatorCloudFormation = "CloudFormation"

    // DeploymentCreatorCloudFormationRollback is a DeploymentCreator enum value
    DeploymentCreatorCloudFormationRollback = "CloudFormationRollback"

    // DeploymentCreatorAutoscalingTermination is a DeploymentCreator enum value
    DeploymentCreatorAutoscalingTermination = "autoscalingTermination"
)
const (
    // DeploymentOptionWithTrafficControl is a DeploymentOption enum value
    DeploymentOptionWithTrafficControl = "WITH_TRAFFIC_CONTROL"

    // DeploymentOptionWithoutTrafficControl is a DeploymentOption enum value
    DeploymentOptionWithoutTrafficControl = "WITHOUT_TRAFFIC_CONTROL"
)
const (
    // DeploymentReadyActionContinueDeployment is a DeploymentReadyAction enum value
    DeploymentReadyActionContinueDeployment = "CONTINUE_DEPLOYMENT"

    // DeploymentReadyActionStopDeployment is a DeploymentReadyAction enum value
    DeploymentReadyActionStopDeployment = "STOP_DEPLOYMENT"
)
const (
    // DeploymentStatusCreated is a DeploymentStatus enum value
    DeploymentStatusCreated = "Created"

    // DeploymentStatusQueued is a DeploymentStatus enum value
    DeploymentStatusQueued = "Queued"

    // DeploymentStatusInProgress is a DeploymentStatus enum value
    DeploymentStatusInProgress = "InProgress"

    // DeploymentStatusBaking is a DeploymentStatus enum value
    DeploymentStatusBaking = "Baking"

    // DeploymentStatusSucceeded is a DeploymentStatus enum value
    DeploymentStatusSucceeded = "Succeeded"

    // DeploymentStatusFailed is a DeploymentStatus enum value
    DeploymentStatusFailed = "Failed"

    // DeploymentStatusStopped is a DeploymentStatus enum value
    DeploymentStatusStopped = "Stopped"

    // DeploymentStatusReady is a DeploymentStatus enum value
    DeploymentStatusReady = "Ready"
)
const (
    // DeploymentTargetTypeInstanceTarget is a DeploymentTargetType enum value
    DeploymentTargetTypeInstanceTarget = "InstanceTarget"

    // DeploymentTargetTypeLambdaTarget is a DeploymentTargetType enum value
    DeploymentTargetTypeLambdaTarget = "LambdaTarget"

    // DeploymentTargetTypeEcstarget is a DeploymentTargetType enum value
    DeploymentTargetTypeEcstarget = "ECSTarget"

    // DeploymentTargetTypeCloudFormationTarget is a DeploymentTargetType enum value
    DeploymentTargetTypeCloudFormationTarget = "CloudFormationTarget"
)
const (
    // DeploymentTypeInPlace is a DeploymentType enum value
    DeploymentTypeInPlace = "IN_PLACE"

    // DeploymentTypeBlueGreen is a DeploymentType enum value
    DeploymentTypeBlueGreen = "BLUE_GREEN"
)
const (
    // DeploymentWaitTypeReadyWait is a DeploymentWaitType enum value
    DeploymentWaitTypeReadyWait = "READY_WAIT"

    // DeploymentWaitTypeTerminationWait is a DeploymentWaitType enum value
    DeploymentWaitTypeTerminationWait = "TERMINATION_WAIT"
)
const (
    // EC2TagFilterTypeKeyOnly is a EC2TagFilterType enum value
    EC2TagFilterTypeKeyOnly = "KEY_ONLY"

    // EC2TagFilterTypeValueOnly is a EC2TagFilterType enum value
    EC2TagFilterTypeValueOnly = "VALUE_ONLY"

    // EC2TagFilterTypeKeyAndValue is a EC2TagFilterType enum value
    EC2TagFilterTypeKeyAndValue = "KEY_AND_VALUE"
)
const (
    // ErrorCodeAgentIssue is a ErrorCode enum value
    ErrorCodeAgentIssue = "AGENT_ISSUE"

    // ErrorCodeAlarmActive is a ErrorCode enum value
    ErrorCodeAlarmActive = "ALARM_ACTIVE"

    // ErrorCodeApplicationMissing is a ErrorCode enum value
    ErrorCodeApplicationMissing = "APPLICATION_MISSING"

    // ErrorCodeAutoscalingValidationError is a ErrorCode enum value
    ErrorCodeAutoscalingValidationError = "AUTOSCALING_VALIDATION_ERROR"

    // ErrorCodeAutoScalingConfiguration is a ErrorCode enum value
    ErrorCodeAutoScalingConfiguration = "AUTO_SCALING_CONFIGURATION"

    // ErrorCodeAutoScalingIamRolePermissions is a ErrorCode enum value
    ErrorCodeAutoScalingIamRolePermissions = "AUTO_SCALING_IAM_ROLE_PERMISSIONS"

    // ErrorCodeCodedeployResourceCannotBeFound is a ErrorCode enum value
    ErrorCodeCodedeployResourceCannotBeFound = "CODEDEPLOY_RESOURCE_CANNOT_BE_FOUND"

    // ErrorCodeCustomerApplicationUnhealthy is a ErrorCode enum value
    ErrorCodeCustomerApplicationUnhealthy = "CUSTOMER_APPLICATION_UNHEALTHY"

    // ErrorCodeDeploymentGroupMissing is a ErrorCode enum value
    ErrorCodeDeploymentGroupMissing = "DEPLOYMENT_GROUP_MISSING"

    // ErrorCodeEcsUpdateError is a ErrorCode enum value
    ErrorCodeEcsUpdateError = "ECS_UPDATE_ERROR"

    // ErrorCodeElasticLoadBalancingInvalid is a ErrorCode enum value
    ErrorCodeElasticLoadBalancingInvalid = "ELASTIC_LOAD_BALANCING_INVALID"

    // ErrorCodeElbInvalidInstance is a ErrorCode enum value
    ErrorCodeElbInvalidInstance = "ELB_INVALID_INSTANCE"

    // ErrorCodeHealthConstraints is a ErrorCode enum value
    ErrorCodeHealthConstraints = "HEALTH_CONSTRAINTS"

    // ErrorCodeHealthConstraintsInvalid is a ErrorCode enum value
    ErrorCodeHealthConstraintsInvalid = "HEALTH_CONSTRAINTS_INVALID"

    // ErrorCodeHookExecutionFailure is a ErrorCode enum value
    ErrorCodeHookExecutionFailure = "HOOK_EXECUTION_FAILURE"

    // ErrorCodeIamRoleMissing is a ErrorCode enum value
    ErrorCodeIamRoleMissing = "IAM_ROLE_MISSING"

    // ErrorCodeIamRolePermissions is a ErrorCode enum value
    ErrorCodeIamRolePermissions = "IAM_ROLE_PERMISSIONS"

    // ErrorCodeInternalError is a ErrorCode enum value
    ErrorCodeInternalError = "INTERNAL_ERROR"

    // ErrorCodeInvalidEcsService is a ErrorCode enum value
    ErrorCodeInvalidEcsService = "INVALID_ECS_SERVICE"

    // ErrorCodeInvalidLambdaConfiguration is a ErrorCode enum value
    ErrorCodeInvalidLambdaConfiguration = "INVALID_LAMBDA_CONFIGURATION"

    // ErrorCodeInvalidLambdaFunction is a ErrorCode enum value
    ErrorCodeInvalidLambdaFunction = "INVALID_LAMBDA_FUNCTION"

    // ErrorCodeInvalidRevision is a ErrorCode enum value
    ErrorCodeInvalidRevision = "INVALID_REVISION"

    // ErrorCodeManualStop is a ErrorCode enum value
    ErrorCodeManualStop = "MANUAL_STOP"

    // ErrorCodeMissingBlueGreenDeploymentConfiguration is a ErrorCode enum value
    ErrorCodeMissingBlueGreenDeploymentConfiguration = "MISSING_BLUE_GREEN_DEPLOYMENT_CONFIGURATION"

    // ErrorCodeMissingElbInformation is a ErrorCode enum value
    ErrorCodeMissingElbInformation = "MISSING_ELB_INFORMATION"

    // ErrorCodeMissingGithubToken is a ErrorCode enum value
    ErrorCodeMissingGithubToken = "MISSING_GITHUB_TOKEN"

    // ErrorCodeNoEc2Subscription is a ErrorCode enum value
    ErrorCodeNoEc2Subscription = "NO_EC2_SUBSCRIPTION"

    // ErrorCodeNoInstances is a ErrorCode enum value
    ErrorCodeNoInstances = "NO_INSTANCES"

    // ErrorCodeOverMaxInstances is a ErrorCode enum value
    ErrorCodeOverMaxInstances = "OVER_MAX_INSTANCES"

    // ErrorCodeResourceLimitExceeded is a ErrorCode enum value
    ErrorCodeResourceLimitExceeded = "RESOURCE_LIMIT_EXCEEDED"

    // ErrorCodeRevisionMissing is a ErrorCode enum value
    ErrorCodeRevisionMissing = "REVISION_MISSING"

    // ErrorCodeThrottled is a ErrorCode enum value
    ErrorCodeThrottled = "THROTTLED"

    // ErrorCodeTimeout is a ErrorCode enum value
    ErrorCodeTimeout = "TIMEOUT"

    // ErrorCodeCloudformationStackFailure is a ErrorCode enum value
    ErrorCodeCloudformationStackFailure = "CLOUDFORMATION_STACK_FAILURE"
)
const (
    // FileExistsBehaviorDisallow is a FileExistsBehavior enum value
    FileExistsBehaviorDisallow = "DISALLOW"

    // FileExistsBehaviorOverwrite is a FileExistsBehavior enum value
    FileExistsBehaviorOverwrite = "OVERWRITE"

    // FileExistsBehaviorRetain is a FileExistsBehavior enum value
    FileExistsBehaviorRetain = "RETAIN"
)
const (
    // GreenFleetProvisioningActionDiscoverExisting is a GreenFleetProvisioningAction enum value
    GreenFleetProvisioningActionDiscoverExisting = "DISCOVER_EXISTING"

    // GreenFleetProvisioningActionCopyAutoScalingGroup is a GreenFleetProvisioningAction enum value
    GreenFleetProvisioningActionCopyAutoScalingGroup = "COPY_AUTO_SCALING_GROUP"
)
const (
    // InstanceActionTerminate is a InstanceAction enum value
    InstanceActionTerminate = "TERMINATE"

    // InstanceActionKeepAlive is a InstanceAction enum value
    InstanceActionKeepAlive = "KEEP_ALIVE"
)
const (
    // InstanceStatusPending is a InstanceStatus enum value
    InstanceStatusPending = "Pending"

    // InstanceStatusInProgress is a InstanceStatus enum value
    InstanceStatusInProgress = "InProgress"

    // InstanceStatusSucceeded is a InstanceStatus enum value
    InstanceStatusSucceeded = "Succeeded"

    // InstanceStatusFailed is a InstanceStatus enum value
    InstanceStatusFailed = "Failed"

    // InstanceStatusSkipped is a InstanceStatus enum value
    InstanceStatusSkipped = "Skipped"

    // InstanceStatusUnknown is a InstanceStatus enum value
    InstanceStatusUnknown = "Unknown"

    // InstanceStatusReady is a InstanceStatus enum value
    InstanceStatusReady = "Ready"
)
const (
    // InstanceTypeBlue is a InstanceType enum value
    InstanceTypeBlue = "Blue"

    // InstanceTypeGreen is a InstanceType enum value
    InstanceTypeGreen = "Green"
)
const (
    // LifecycleErrorCodeSuccess is a LifecycleErrorCode enum value
    LifecycleErrorCodeSuccess = "Success"

    // LifecycleErrorCodeScriptMissing is a LifecycleErrorCode enum value
    LifecycleErrorCodeScriptMissing = "ScriptMissing"

    // LifecycleErrorCodeScriptNotExecutable is a LifecycleErrorCode enum value
    LifecycleErrorCodeScriptNotExecutable = "ScriptNotExecutable"

    // LifecycleErrorCodeScriptTimedOut is a LifecycleErrorCode enum value
    LifecycleErrorCodeScriptTimedOut = "ScriptTimedOut"

    // LifecycleErrorCodeScriptFailed is a LifecycleErrorCode enum value
    LifecycleErrorCodeScriptFailed = "ScriptFailed"

    // LifecycleErrorCodeUnknownError is a LifecycleErrorCode enum value
    LifecycleErrorCodeUnknownError = "UnknownError"
)
const (
    // LifecycleEventStatusPending is a LifecycleEventStatus enum value
    LifecycleEventStatusPending = "Pending"

    // LifecycleEventStatusInProgress is a LifecycleEventStatus enum value
    LifecycleEventStatusInProgress = "InProgress"

    // LifecycleEventStatusSucceeded is a LifecycleEventStatus enum value
    LifecycleEventStatusSucceeded = "Succeeded"

    // LifecycleEventStatusFailed is a LifecycleEventStatus enum value
    LifecycleEventStatusFailed = "Failed"

    // LifecycleEventStatusSkipped is a LifecycleEventStatus enum value
    LifecycleEventStatusSkipped = "Skipped"

    // LifecycleEventStatusUnknown is a LifecycleEventStatus enum value
    LifecycleEventStatusUnknown = "Unknown"
)
const (
    // ListStateFilterActionInclude is a ListStateFilterAction enum value
    ListStateFilterActionInclude = "include"

    // ListStateFilterActionExclude is a ListStateFilterAction enum value
    ListStateFilterActionExclude = "exclude"

    // ListStateFilterActionIgnore is a ListStateFilterAction enum value
    ListStateFilterActionIgnore = "ignore"
)
const (
    // MinimumHealthyHostsPerZoneTypeHostCount is a MinimumHealthyHostsPerZoneType enum value
    MinimumHealthyHostsPerZoneTypeHostCount = "HOST_COUNT"

    // MinimumHealthyHostsPerZoneTypeFleetPercent is a MinimumHealthyHostsPerZoneType enum value
    MinimumHealthyHostsPerZoneTypeFleetPercent = "FLEET_PERCENT"
)
const (
    // MinimumHealthyHostsTypeHostCount is a MinimumHealthyHostsType enum value
    MinimumHealthyHostsTypeHostCount = "HOST_COUNT"

    // MinimumHealthyHostsTypeFleetPercent is a MinimumHealthyHostsType enum value
    MinimumHealthyHostsTypeFleetPercent = "FLEET_PERCENT"
)
const (
    // OutdatedInstancesStrategyUpdate is a OutdatedInstancesStrategy enum value
    OutdatedInstancesStrategyUpdate = "UPDATE"

    // OutdatedInstancesStrategyIgnore is a OutdatedInstancesStrategy enum value
    OutdatedInstancesStrategyIgnore = "IGNORE"
)
const (
    // RegistrationStatusRegistered is a RegistrationStatus enum value
    RegistrationStatusRegistered = "Registered"

    // RegistrationStatusDeregistered is a RegistrationStatus enum value
    RegistrationStatusDeregistered = "Deregistered"
)
const (
    // RevisionLocationTypeS3 is a RevisionLocationType enum value
    RevisionLocationTypeS3 = "S3"

    // RevisionLocationTypeGitHub is a RevisionLocationType enum value
    RevisionLocationTypeGitHub = "GitHub"

    // RevisionLocationTypeString is a RevisionLocationType enum value
    RevisionLocationTypeString = "String"

    // RevisionLocationTypeAppSpecContent is a RevisionLocationType enum value
    RevisionLocationTypeAppSpecContent = "AppSpecContent"
)
const (
    // SortOrderAscending is a SortOrder enum value
    SortOrderAscending = "ascending"

    // SortOrderDescending is a SortOrder enum value
    SortOrderDescending = "descending"
)
const (
    // StopStatusPending is a StopStatus enum value
    StopStatusPending = "Pending"

    // StopStatusSucceeded is a StopStatus enum value
    StopStatusSucceeded = "Succeeded"
)
const (
    // TagFilterTypeKeyOnly is a TagFilterType enum value
    TagFilterTypeKeyOnly = "KEY_ONLY"

    // TagFilterTypeValueOnly is a TagFilterType enum value
    TagFilterTypeValueOnly = "VALUE_ONLY"

    // TagFilterTypeKeyAndValue is a TagFilterType enum value
    TagFilterTypeKeyAndValue = "KEY_AND_VALUE"
)
const (
    // TargetFilterNameTargetStatus is a TargetFilterName enum value
    TargetFilterNameTargetStatus = "TargetStatus"

    // TargetFilterNameServerInstanceLabel is a TargetFilterName enum value
    TargetFilterNameServerInstanceLabel = "ServerInstanceLabel"
)
const (
    // TargetLabelBlue is a TargetLabel enum value
    TargetLabelBlue = "Blue"

    // TargetLabelGreen is a TargetLabel enum value
    TargetLabelGreen = "Green"
)
const (
    // TargetStatusPending is a TargetStatus enum value
    TargetStatusPending = "Pending"

    // TargetStatusInProgress is a TargetStatus enum value
    TargetStatusInProgress = "InProgress"

    // TargetStatusSucceeded is a TargetStatus enum value
    TargetStatusSucceeded = "Succeeded"

    // TargetStatusFailed is a TargetStatus enum value
    TargetStatusFailed = "Failed"

    // TargetStatusSkipped is a TargetStatus enum value
    TargetStatusSkipped = "Skipped"

    // TargetStatusUnknown is a TargetStatus enum value
    TargetStatusUnknown = "Unknown"

    // TargetStatusReady is a TargetStatus enum value
    TargetStatusReady = "Ready"
)
const (
    // TrafficRoutingTypeTimeBasedCanary is a TrafficRoutingType enum value
    TrafficRoutingTypeTimeBasedCanary = "TimeBasedCanary"

    // TrafficRoutingTypeTimeBasedLinear is a TrafficRoutingType enum value
    TrafficRoutingTypeTimeBasedLinear = "TimeBasedLinear"

    // TrafficRoutingTypeAllAtOnce is a TrafficRoutingType enum value
    TrafficRoutingTypeAllAtOnce = "AllAtOnce"
)
const (
    // TriggerEventTypeDeploymentStart is a TriggerEventType enum value
    TriggerEventTypeDeploymentStart = "DeploymentStart"

    // TriggerEventTypeDeploymentSuccess is a TriggerEventType enum value
    TriggerEventTypeDeploymentSuccess = "DeploymentSuccess"

    // TriggerEventTypeDeploymentFailure is a TriggerEventType enum value
    TriggerEventTypeDeploymentFailure = "DeploymentFailure"

    // TriggerEventTypeDeploymentStop is a TriggerEventType enum value
    TriggerEventTypeDeploymentStop = "DeploymentStop"

    // TriggerEventTypeDeploymentRollback is a TriggerEventType enum value
    TriggerEventTypeDeploymentRollback = "DeploymentRollback"

    // TriggerEventTypeDeploymentReady is a TriggerEventType enum value
    TriggerEventTypeDeploymentReady = "DeploymentReady"

    // TriggerEventTypeInstanceStart is a TriggerEventType enum value
    TriggerEventTypeInstanceStart = "InstanceStart"

    // TriggerEventTypeInstanceSuccess is a TriggerEventType enum value
    TriggerEventTypeInstanceSuccess = "InstanceSuccess"

    // TriggerEventTypeInstanceFailure is a TriggerEventType enum value
    TriggerEventTypeInstanceFailure = "InstanceFailure"

    // TriggerEventTypeInstanceReady is a TriggerEventType enum value
    TriggerEventTypeInstanceReady = "InstanceReady"
)
const (

    // ErrCodeAlarmsLimitExceededException for service response error code
    // "AlarmsLimitExceededException".
    //
    // The maximum number of alarms for a deployment group (10) was exceeded.
    ErrCodeAlarmsLimitExceededException = "AlarmsLimitExceededException"

    // ErrCodeApplicationAlreadyExistsException for service response error code
    // "ApplicationAlreadyExistsException".
    //
    // An application with the specified name with the user or Amazon Web Services
    // account already exists.
    ErrCodeApplicationAlreadyExistsException = "ApplicationAlreadyExistsException"

    // ErrCodeApplicationDoesNotExistException for service response error code
    // "ApplicationDoesNotExistException".
    //
    // The application does not exist with the user or Amazon Web Services account.
    ErrCodeApplicationDoesNotExistException = "ApplicationDoesNotExistException"

    // ErrCodeApplicationLimitExceededException for service response error code
    // "ApplicationLimitExceededException".
    //
    // More applications were attempted to be created than are allowed.
    ErrCodeApplicationLimitExceededException = "ApplicationLimitExceededException"

    // ErrCodeApplicationNameRequiredException for service response error code
    // "ApplicationNameRequiredException".
    //
    // The minimum number of required application names was not specified.
    ErrCodeApplicationNameRequiredException = "ApplicationNameRequiredException"

    // ErrCodeArnNotSupportedException for service response error code
    // "ArnNotSupportedException".
    //
    // The specified ARN is not supported. For example, it might be an ARN for a
    // resource that is not expected.
    ErrCodeArnNotSupportedException = "ArnNotSupportedException"

    // ErrCodeBatchLimitExceededException for service response error code
    // "BatchLimitExceededException".
    //
    // The maximum number of names or IDs allowed for this request (100) was exceeded.
    ErrCodeBatchLimitExceededException = "BatchLimitExceededException"

    // ErrCodeBucketNameFilterRequiredException for service response error code
    // "BucketNameFilterRequiredException".
    //
    // A bucket name is required, but was not provided.
    ErrCodeBucketNameFilterRequiredException = "BucketNameFilterRequiredException"

    // ErrCodeDeploymentAlreadyCompletedException for service response error code
    // "DeploymentAlreadyCompletedException".
    //
    // The deployment is already complete.
    ErrCodeDeploymentAlreadyCompletedException = "DeploymentAlreadyCompletedException"

    // ErrCodeDeploymentConfigAlreadyExistsException for service response error code
    // "DeploymentConfigAlreadyExistsException".
    //
    // A deployment configuration with the specified name with the user or Amazon
    // Web Services account already exists.
    ErrCodeDeploymentConfigAlreadyExistsException = "DeploymentConfigAlreadyExistsException"

    // ErrCodeDeploymentConfigDoesNotExistException for service response error code
    // "DeploymentConfigDoesNotExistException".
    //
    // The deployment configuration does not exist with the user or Amazon Web Services
    // account.
    ErrCodeDeploymentConfigDoesNotExistException = "DeploymentConfigDoesNotExistException"

    // ErrCodeDeploymentConfigInUseException for service response error code
    // "DeploymentConfigInUseException".
    //
    // The deployment configuration is still in use.
    ErrCodeDeploymentConfigInUseException = "DeploymentConfigInUseException"

    // ErrCodeDeploymentConfigLimitExceededException for service response error code
    // "DeploymentConfigLimitExceededException".
    //
    // The deployment configurations limit was exceeded.
    ErrCodeDeploymentConfigLimitExceededException = "DeploymentConfigLimitExceededException"

    // ErrCodeDeploymentConfigNameRequiredException for service response error code
    // "DeploymentConfigNameRequiredException".
    //
    // The deployment configuration name was not specified.
    ErrCodeDeploymentConfigNameRequiredException = "DeploymentConfigNameRequiredException"

    // ErrCodeDeploymentDoesNotExistException for service response error code
    // "DeploymentDoesNotExistException".
    //
    // The deployment with the user or Amazon Web Services account does not exist.
    ErrCodeDeploymentDoesNotExistException = "DeploymentDoesNotExistException"

    // ErrCodeDeploymentGroupAlreadyExistsException for service response error code
    // "DeploymentGroupAlreadyExistsException".
    //
    // A deployment group with the specified name with the user or Amazon Web Services
    // account already exists.
    ErrCodeDeploymentGroupAlreadyExistsException = "DeploymentGroupAlreadyExistsException"

    // ErrCodeDeploymentGroupDoesNotExistException for service response error code
    // "DeploymentGroupDoesNotExistException".
    //
    // The named deployment group with the user or Amazon Web Services account does
    // not exist.
    ErrCodeDeploymentGroupDoesNotExistException = "DeploymentGroupDoesNotExistException"

    // ErrCodeDeploymentGroupLimitExceededException for service response error code
    // "DeploymentGroupLimitExceededException".
    //
    // The deployment groups limit was exceeded.
    ErrCodeDeploymentGroupLimitExceededException = "DeploymentGroupLimitExceededException"

    // ErrCodeDeploymentGroupNameRequiredException for service response error code
    // "DeploymentGroupNameRequiredException".
    //
    // The deployment group name was not specified.
    ErrCodeDeploymentGroupNameRequiredException = "DeploymentGroupNameRequiredException"

    // ErrCodeDeploymentIdRequiredException for service response error code
    // "DeploymentIdRequiredException".
    //
    // At least one deployment ID must be specified.
    ErrCodeDeploymentIdRequiredException = "DeploymentIdRequiredException"

    // ErrCodeDeploymentIsNotInReadyStateException for service response error code
    // "DeploymentIsNotInReadyStateException".
    //
    // The deployment does not have a status of Ready and can't continue yet.
    ErrCodeDeploymentIsNotInReadyStateException = "DeploymentIsNotInReadyStateException"

    // ErrCodeDeploymentLimitExceededException for service response error code
    // "DeploymentLimitExceededException".
    //
    // The number of allowed deployments was exceeded.
    ErrCodeDeploymentLimitExceededException = "DeploymentLimitExceededException"

    // ErrCodeDeploymentNotStartedException for service response error code
    // "DeploymentNotStartedException".
    //
    // The specified deployment has not started.
    ErrCodeDeploymentNotStartedException = "DeploymentNotStartedException"

    // ErrCodeDeploymentTargetDoesNotExistException for service response error code
    // "DeploymentTargetDoesNotExistException".
    //
    // The provided target ID does not belong to the attempted deployment.
    ErrCodeDeploymentTargetDoesNotExistException = "DeploymentTargetDoesNotExistException"

    // ErrCodeDeploymentTargetIdRequiredException for service response error code
    // "DeploymentTargetIdRequiredException".
    //
    // A deployment target ID was not provided.
    ErrCodeDeploymentTargetIdRequiredException = "DeploymentTargetIdRequiredException"

    // ErrCodeDeploymentTargetListSizeExceededException for service response error code
    // "DeploymentTargetListSizeExceededException".
    //
    // The maximum number of targets that can be associated with an Amazon ECS or
    // Lambda deployment was exceeded. The target list of both types of deployments
    // must have exactly one item. This exception does not apply to EC2/On-premises
    // deployments.
    ErrCodeDeploymentTargetListSizeExceededException = "DeploymentTargetListSizeExceededException"

    // ErrCodeDescriptionTooLongException for service response error code
    // "DescriptionTooLongException".
    //
    // The description is too long.
    ErrCodeDescriptionTooLongException = "DescriptionTooLongException"

    // ErrCodeECSServiceMappingLimitExceededException for service response error code
    // "ECSServiceMappingLimitExceededException".
    //
    // The Amazon ECS service is associated with more than one deployment groups.
    // An Amazon ECS service can be associated with only one deployment group.
    ErrCodeECSServiceMappingLimitExceededException = "ECSServiceMappingLimitExceededException"

    // ErrCodeGitHubAccountTokenDoesNotExistException for service response error code
    // "GitHubAccountTokenDoesNotExistException".
    //
    // No GitHub account connection exists with the named specified in the call.
    ErrCodeGitHubAccountTokenDoesNotExistException = "GitHubAccountTokenDoesNotExistException"

    // ErrCodeGitHubAccountTokenNameRequiredException for service response error code
    // "GitHubAccountTokenNameRequiredException".
    //
    // The call is missing a required GitHub account connection name.
    ErrCodeGitHubAccountTokenNameRequiredException = "GitHubAccountTokenNameRequiredException"

    // ErrCodeIamArnRequiredException for service response error code
    // "IamArnRequiredException".
    //
    // No IAM ARN was included in the request. You must use an IAM session ARN or
    // user ARN in the request.
    ErrCodeIamArnRequiredException = "IamArnRequiredException"

    // ErrCodeIamSessionArnAlreadyRegisteredException for service response error code
    // "IamSessionArnAlreadyRegisteredException".
    //
    // The request included an IAM session ARN that has already been used to register
    // a different instance.
    ErrCodeIamSessionArnAlreadyRegisteredException = "IamSessionArnAlreadyRegisteredException"

    // ErrCodeIamUserArnAlreadyRegisteredException for service response error code
    // "IamUserArnAlreadyRegisteredException".
    //
    // The specified user ARN is already registered with an on-premises instance.
    ErrCodeIamUserArnAlreadyRegisteredException = "IamUserArnAlreadyRegisteredException"

    // ErrCodeIamUserArnRequiredException for service response error code
    // "IamUserArnRequiredException".
    //
    // An user ARN was not specified.
    ErrCodeIamUserArnRequiredException = "IamUserArnRequiredException"

    // ErrCodeInstanceDoesNotExistException for service response error code
    // "InstanceDoesNotExistException".
    //
    // The specified instance does not exist in the deployment group.
    ErrCodeInstanceDoesNotExistException = "InstanceDoesNotExistException"

    // ErrCodeInstanceIdRequiredException for service response error code
    // "InstanceIdRequiredException".
    //
    // The instance ID was not specified.
    ErrCodeInstanceIdRequiredException = "InstanceIdRequiredException"

    // ErrCodeInstanceLimitExceededException for service response error code
    // "InstanceLimitExceededException".
    //
    // The maximum number of allowed on-premises instances in a single call was
    // exceeded.
    ErrCodeInstanceLimitExceededException = "InstanceLimitExceededException"

    // ErrCodeInstanceNameAlreadyRegisteredException for service response error code
    // "InstanceNameAlreadyRegisteredException".
    //
    // The specified on-premises instance name is already registered.
    ErrCodeInstanceNameAlreadyRegisteredException = "InstanceNameAlreadyRegisteredException"

    // ErrCodeInstanceNameRequiredException for service response error code
    // "InstanceNameRequiredException".
    //
    // An on-premises instance name was not specified.
    ErrCodeInstanceNameRequiredException = "InstanceNameRequiredException"

    // ErrCodeInstanceNotRegisteredException for service response error code
    // "InstanceNotRegisteredException".
    //
    // The specified on-premises instance is not registered.
    ErrCodeInstanceNotRegisteredException = "InstanceNotRegisteredException"

    // ErrCodeInvalidAlarmConfigException for service response error code
    // "InvalidAlarmConfigException".
    //
    // The format of the alarm configuration is invalid. Possible causes include:
    //
    //    * The alarm list is null.
    //
    //    * The alarm object is null.
    //
    //    * The alarm name is empty or null or exceeds the limit of 255 characters.
    //
    //    * Two alarms with the same name have been specified.
    //
    //    * The alarm configuration is enabled, but the alarm list is empty.
    ErrCodeInvalidAlarmConfigException = "InvalidAlarmConfigException"

    // ErrCodeInvalidApplicationNameException for service response error code
    // "InvalidApplicationNameException".
    //
    // The application name was specified in an invalid format.
    ErrCodeInvalidApplicationNameException = "InvalidApplicationNameException"

    // ErrCodeInvalidArnException for service response error code
    // "InvalidArnException".
    //
    // The specified ARN is not in a valid format.
    ErrCodeInvalidArnException = "InvalidArnException"

    // ErrCodeInvalidAutoRollbackConfigException for service response error code
    // "InvalidAutoRollbackConfigException".
    //
    // The automatic rollback configuration was specified in an invalid format.
    // For example, automatic rollback is enabled, but an invalid triggering event
    // type or no event types were listed.
    ErrCodeInvalidAutoRollbackConfigException = "InvalidAutoRollbackConfigException"

    // ErrCodeInvalidAutoScalingGroupException for service response error code
    // "InvalidAutoScalingGroupException".
    //
    // The Auto Scaling group was specified in an invalid format or does not exist.
    ErrCodeInvalidAutoScalingGroupException = "InvalidAutoScalingGroupException"

    // ErrCodeInvalidBlueGreenDeploymentConfigurationException for service response error code
    // "InvalidBlueGreenDeploymentConfigurationException".
    //
    // The configuration for the blue/green deployment group was provided in an
    // invalid format. For information about deployment configuration format, see
    // CreateDeploymentConfig.
    ErrCodeInvalidBlueGreenDeploymentConfigurationException = "InvalidBlueGreenDeploymentConfigurationException"

    // ErrCodeInvalidBucketNameFilterException for service response error code
    // "InvalidBucketNameFilterException".
    //
    // The bucket name either doesn't exist or was specified in an invalid format.
    ErrCodeInvalidBucketNameFilterException = "InvalidBucketNameFilterException"

    // ErrCodeInvalidComputePlatformException for service response error code
    // "InvalidComputePlatformException".
    //
    // The computePlatform is invalid. The computePlatform should be Lambda, Server,
    // or ECS.
    ErrCodeInvalidComputePlatformException = "InvalidComputePlatformException"

    // ErrCodeInvalidDeployedStateFilterException for service response error code
    // "InvalidDeployedStateFilterException".
    //
    // The deployed state filter was specified in an invalid format.
    ErrCodeInvalidDeployedStateFilterException = "InvalidDeployedStateFilterException"

    // ErrCodeInvalidDeploymentConfigNameException for service response error code
    // "InvalidDeploymentConfigNameException".
    //
    // The deployment configuration name was specified in an invalid format.
    ErrCodeInvalidDeploymentConfigNameException = "InvalidDeploymentConfigNameException"

    // ErrCodeInvalidDeploymentGroupNameException for service response error code
    // "InvalidDeploymentGroupNameException".
    //
    // The deployment group name was specified in an invalid format.
    ErrCodeInvalidDeploymentGroupNameException = "InvalidDeploymentGroupNameException"

    // ErrCodeInvalidDeploymentIdException for service response error code
    // "InvalidDeploymentIdException".
    //
    // At least one of the deployment IDs was specified in an invalid format.
    ErrCodeInvalidDeploymentIdException = "InvalidDeploymentIdException"

    // ErrCodeInvalidDeploymentInstanceTypeException for service response error code
    // "InvalidDeploymentInstanceTypeException".
    //
    // An instance type was specified for an in-place deployment. Instance types
    // are supported for blue/green deployments only.
    ErrCodeInvalidDeploymentInstanceTypeException = "InvalidDeploymentInstanceTypeException"

    // ErrCodeInvalidDeploymentStatusException for service response error code
    // "InvalidDeploymentStatusException".
    //
    // The specified deployment status doesn't exist or cannot be determined.
    ErrCodeInvalidDeploymentStatusException = "InvalidDeploymentStatusException"

    // ErrCodeInvalidDeploymentStyleException for service response error code
    // "InvalidDeploymentStyleException".
    //
    // An invalid deployment style was specified. Valid deployment types include
    // "IN_PLACE" and "BLUE_GREEN." Valid deployment options include "WITH_TRAFFIC_CONTROL"
    // and "WITHOUT_TRAFFIC_CONTROL."
    ErrCodeInvalidDeploymentStyleException = "InvalidDeploymentStyleException"

    // ErrCodeInvalidDeploymentTargetIdException for service response error code
    // "InvalidDeploymentTargetIdException".
    //
    // The target ID provided was not valid.
    ErrCodeInvalidDeploymentTargetIdException = "InvalidDeploymentTargetIdException"

    // ErrCodeInvalidDeploymentWaitTypeException for service response error code
    // "InvalidDeploymentWaitTypeException".
    //
    // The wait type is invalid.
    ErrCodeInvalidDeploymentWaitTypeException = "InvalidDeploymentWaitTypeException"

    // ErrCodeInvalidEC2TagCombinationException for service response error code
    // "InvalidEC2TagCombinationException".
    //
    // A call was submitted that specified both Ec2TagFilters and Ec2TagSet, but
    // only one of these data types can be used in a single call.
    ErrCodeInvalidEC2TagCombinationException = "InvalidEC2TagCombinationException"

    // ErrCodeInvalidEC2TagException for service response error code
    // "InvalidEC2TagException".
    //
    // The tag was specified in an invalid format.
    ErrCodeInvalidEC2TagException = "InvalidEC2TagException"

    // ErrCodeInvalidECSServiceException for service response error code
    // "InvalidECSServiceException".
    //
    // The Amazon ECS service identifier is not valid.
    ErrCodeInvalidECSServiceException = "InvalidECSServiceException"

    // ErrCodeInvalidExternalIdException for service response error code
    // "InvalidExternalIdException".
    //
    // The external ID was specified in an invalid format.
    ErrCodeInvalidExternalIdException = "InvalidExternalIdException"

    // ErrCodeInvalidFileExistsBehaviorException for service response error code
    // "InvalidFileExistsBehaviorException".
    //
    // An invalid fileExistsBehavior option was specified to determine how CodeDeploy
    // handles files or directories that already exist in a deployment target location,
    // but weren't part of the previous successful deployment. Valid values include
    // "DISALLOW," "OVERWRITE," and "RETAIN."
    ErrCodeInvalidFileExistsBehaviorException = "InvalidFileExistsBehaviorException"

    // ErrCodeInvalidGitHubAccountTokenException for service response error code
    // "InvalidGitHubAccountTokenException".
    //
    // The GitHub token is not valid.
    ErrCodeInvalidGitHubAccountTokenException = "InvalidGitHubAccountTokenException"

    // ErrCodeInvalidGitHubAccountTokenNameException for service response error code
    // "InvalidGitHubAccountTokenNameException".
    //
    // The format of the specified GitHub account connection name is invalid.
    ErrCodeInvalidGitHubAccountTokenNameException = "InvalidGitHubAccountTokenNameException"

    // ErrCodeInvalidIamSessionArnException for service response error code
    // "InvalidIamSessionArnException".
    //
    // The IAM session ARN was specified in an invalid format.
    ErrCodeInvalidIamSessionArnException = "InvalidIamSessionArnException"

    // ErrCodeInvalidIamUserArnException for service response error code
    // "InvalidIamUserArnException".
    //
    // The user ARN was specified in an invalid format.
    ErrCodeInvalidIamUserArnException = "InvalidIamUserArnException"

    // ErrCodeInvalidIgnoreApplicationStopFailuresValueException for service response error code
    // "InvalidIgnoreApplicationStopFailuresValueException".
    //
    // The IgnoreApplicationStopFailures value is invalid. For Lambda deployments,
    // false is expected. For EC2/On-premises deployments, true or false is expected.
    ErrCodeInvalidIgnoreApplicationStopFailuresValueException = "InvalidIgnoreApplicationStopFailuresValueException"

    // ErrCodeInvalidInputException for service response error code
    // "InvalidInputException".
    //
    // The input was specified in an invalid format.
    ErrCodeInvalidInputException = "InvalidInputException"

    // ErrCodeInvalidInstanceNameException for service response error code
    // "InvalidInstanceNameException".
    //
    // The on-premises instance name was specified in an invalid format.
    ErrCodeInvalidInstanceNameException = "InvalidInstanceNameException"

    // ErrCodeInvalidInstanceStatusException for service response error code
    // "InvalidInstanceStatusException".
    //
    // The specified instance status does not exist.
    ErrCodeInvalidInstanceStatusException = "InvalidInstanceStatusException"

    // ErrCodeInvalidInstanceTypeException for service response error code
    // "InvalidInstanceTypeException".
    //
    // An invalid instance type was specified for instances in a blue/green deployment.
    // Valid values include "Blue" for an original environment and "Green" for a
    // replacement environment.
    ErrCodeInvalidInstanceTypeException = "InvalidInstanceTypeException"

    // ErrCodeInvalidKeyPrefixFilterException for service response error code
    // "InvalidKeyPrefixFilterException".
    //
    // The specified key prefix filter was specified in an invalid format.
    ErrCodeInvalidKeyPrefixFilterException = "InvalidKeyPrefixFilterException"

    // ErrCodeInvalidLifecycleEventHookExecutionIdException for service response error code
    // "InvalidLifecycleEventHookExecutionIdException".
    //
    // A lifecycle event hook is invalid. Review the hooks section in your AppSpec
    // file to ensure the lifecycle events and hooks functions are valid.
    ErrCodeInvalidLifecycleEventHookExecutionIdException = "InvalidLifecycleEventHookExecutionIdException"

    // ErrCodeInvalidLifecycleEventHookExecutionStatusException for service response error code
    // "InvalidLifecycleEventHookExecutionStatusException".
    //
    // The result of a Lambda validation function that verifies a lifecycle event
    // is invalid. It should return Succeeded or Failed.
    ErrCodeInvalidLifecycleEventHookExecutionStatusException = "InvalidLifecycleEventHookExecutionStatusException"

    // ErrCodeInvalidLoadBalancerInfoException for service response error code
    // "InvalidLoadBalancerInfoException".
    //
    // An invalid load balancer name, or no load balancer name, was specified.
    ErrCodeInvalidLoadBalancerInfoException = "InvalidLoadBalancerInfoException"

    // ErrCodeInvalidMinimumHealthyHostValueException for service response error code
    // "InvalidMinimumHealthyHostValueException".
    //
    // The minimum healthy instance value was specified in an invalid format.
    ErrCodeInvalidMinimumHealthyHostValueException = "InvalidMinimumHealthyHostValueException"

    // ErrCodeInvalidNextTokenException for service response error code
    // "InvalidNextTokenException".
    //
    // The next token was specified in an invalid format.
    ErrCodeInvalidNextTokenException = "InvalidNextTokenException"

    // ErrCodeInvalidOnPremisesTagCombinationException for service response error code
    // "InvalidOnPremisesTagCombinationException".
    //
    // A call was submitted that specified both OnPremisesTagFilters and OnPremisesTagSet,
    // but only one of these data types can be used in a single call.
    ErrCodeInvalidOnPremisesTagCombinationException = "InvalidOnPremisesTagCombinationException"

    // ErrCodeInvalidOperationException for service response error code
    // "InvalidOperationException".
    //
    // An invalid operation was detected.
    ErrCodeInvalidOperationException = "InvalidOperationException"

    // ErrCodeInvalidRegistrationStatusException for service response error code
    // "InvalidRegistrationStatusException".
    //
    // The registration status was specified in an invalid format.
    ErrCodeInvalidRegistrationStatusException = "InvalidRegistrationStatusException"

    // ErrCodeInvalidRevisionException for service response error code
    // "InvalidRevisionException".
    //
    // The revision was specified in an invalid format.
    ErrCodeInvalidRevisionException = "InvalidRevisionException"

    // ErrCodeInvalidRoleException for service response error code
    // "InvalidRoleException".
    //
    // The service role ARN was specified in an invalid format. Or, if an Auto Scaling
    // group was specified, the specified service role does not grant the appropriate
    // permissions to Amazon EC2 Auto Scaling.
    ErrCodeInvalidRoleException = "InvalidRoleException"

    // ErrCodeInvalidSortByException for service response error code
    // "InvalidSortByException".
    //
    // The column name to sort by is either not present or was specified in an invalid
    // format.
    ErrCodeInvalidSortByException = "InvalidSortByException"

    // ErrCodeInvalidSortOrderException for service response error code
    // "InvalidSortOrderException".
    //
    // The sort order was specified in an invalid format.
    ErrCodeInvalidSortOrderException = "InvalidSortOrderException"

    // ErrCodeInvalidTagException for service response error code
    // "InvalidTagException".
    //
    // The tag was specified in an invalid format.
    ErrCodeInvalidTagException = "InvalidTagException"

    // ErrCodeInvalidTagFilterException for service response error code
    // "InvalidTagFilterException".
    //
    // The tag filter was specified in an invalid format.
    ErrCodeInvalidTagFilterException = "InvalidTagFilterException"

    // ErrCodeInvalidTagsToAddException for service response error code
    // "InvalidTagsToAddException".
    //
    // The specified tags are not valid.
    ErrCodeInvalidTagsToAddException = "InvalidTagsToAddException"

    // ErrCodeInvalidTargetFilterNameException for service response error code
    // "InvalidTargetFilterNameException".
    //
    // The target filter name is invalid.
    ErrCodeInvalidTargetFilterNameException = "InvalidTargetFilterNameException"

    // ErrCodeInvalidTargetGroupPairException for service response error code
    // "InvalidTargetGroupPairException".
    //
    // A target group pair associated with this deployment is not valid.
    ErrCodeInvalidTargetGroupPairException = "InvalidTargetGroupPairException"

    // ErrCodeInvalidTargetInstancesException for service response error code
    // "InvalidTargetInstancesException".
    //
    // The target instance configuration is invalid. Possible causes include:
    //
    //    * Configuration data for target instances was entered for an in-place
    //    deployment.
    //
    //    * The limit of 10 tags for a tag type was exceeded.
    //
    //    * The combined length of the tag names exceeded the limit.
    //
    //    * A specified tag is not currently applied to any instances.
    ErrCodeInvalidTargetInstancesException = "InvalidTargetInstancesException"

    // ErrCodeInvalidTimeRangeException for service response error code
    // "InvalidTimeRangeException".
    //
    // The specified time range was specified in an invalid format.
    ErrCodeInvalidTimeRangeException = "InvalidTimeRangeException"

    // ErrCodeInvalidTrafficRoutingConfigurationException for service response error code
    // "InvalidTrafficRoutingConfigurationException".
    //
    // The configuration that specifies how traffic is routed during a deployment
    // is invalid.
    ErrCodeInvalidTrafficRoutingConfigurationException = "InvalidTrafficRoutingConfigurationException"

    // ErrCodeInvalidTriggerConfigException for service response error code
    // "InvalidTriggerConfigException".
    //
    // The trigger was specified in an invalid format.
    ErrCodeInvalidTriggerConfigException = "InvalidTriggerConfigException"

    // ErrCodeInvalidUpdateOutdatedInstancesOnlyValueException for service response error code
    // "InvalidUpdateOutdatedInstancesOnlyValueException".
    //
    // The UpdateOutdatedInstancesOnly value is invalid. For Lambda deployments,
    // false is expected. For EC2/On-premises deployments, true or false is expected.
    ErrCodeInvalidUpdateOutdatedInstancesOnlyValueException = "InvalidUpdateOutdatedInstancesOnlyValueException"

    // ErrCodeInvalidZonalDeploymentConfigurationException for service response error code
    // "InvalidZonalDeploymentConfigurationException".
    //
    // The ZonalConfig object is not valid.
    ErrCodeInvalidZonalDeploymentConfigurationException = "InvalidZonalDeploymentConfigurationException"

    // ErrCodeLifecycleEventAlreadyCompletedException for service response error code
    // "LifecycleEventAlreadyCompletedException".
    //
    // An attempt to return the status of an already completed lifecycle event occurred.
    ErrCodeLifecycleEventAlreadyCompletedException = "LifecycleEventAlreadyCompletedException"

    // ErrCodeLifecycleHookLimitExceededException for service response error code
    // "LifecycleHookLimitExceededException".
    //
    // The limit for lifecycle hooks was exceeded.
    ErrCodeLifecycleHookLimitExceededException = "LifecycleHookLimitExceededException"

    // ErrCodeMultipleIamArnsProvidedException for service response error code
    // "MultipleIamArnsProvidedException".
    //
    // Both an user ARN and an IAM session ARN were included in the request. Use
    // only one ARN type.
    ErrCodeMultipleIamArnsProvidedException = "MultipleIamArnsProvidedException"

    // ErrCodeOperationNotSupportedException for service response error code
    // "OperationNotSupportedException".
    //
    // The API used does not support the deployment.
    ErrCodeOperationNotSupportedException = "OperationNotSupportedException"

    // ErrCodeResourceArnRequiredException for service response error code
    // "ResourceArnRequiredException".
    //
    // The ARN of a resource is required, but was not found.
    ErrCodeResourceArnRequiredException = "ResourceArnRequiredException"

    // ErrCodeResourceValidationException for service response error code
    // "ResourceValidationException".
    //
    // The specified resource could not be validated.
    ErrCodeResourceValidationException = "ResourceValidationException"

    // ErrCodeRevisionDoesNotExistException for service response error code
    // "RevisionDoesNotExistException".
    //
    // The named revision does not exist with the user or Amazon Web Services account.
    ErrCodeRevisionDoesNotExistException = "RevisionDoesNotExistException"

    // ErrCodeRevisionRequiredException for service response error code
    // "RevisionRequiredException".
    //
    // The revision ID was not specified.
    ErrCodeRevisionRequiredException = "RevisionRequiredException"

    // ErrCodeRoleRequiredException for service response error code
    // "RoleRequiredException".
    //
    // The role ID was not specified.
    ErrCodeRoleRequiredException = "RoleRequiredException"

    // ErrCodeTagLimitExceededException for service response error code
    // "TagLimitExceededException".
    //
    // The maximum allowed number of tags was exceeded.
    ErrCodeTagLimitExceededException = "TagLimitExceededException"

    // ErrCodeTagRequiredException for service response error code
    // "TagRequiredException".
    //
    // A tag was not specified.
    ErrCodeTagRequiredException = "TagRequiredException"

    // ErrCodeTagSetListLimitExceededException for service response error code
    // "TagSetListLimitExceededException".
    //
    // The number of tag groups included in the tag set list exceeded the maximum
    // allowed limit of 3.
    ErrCodeTagSetListLimitExceededException = "TagSetListLimitExceededException"

    // ErrCodeThrottlingException for service response error code
    // "ThrottlingException".
    //
    // An API function was called too frequently.
    ErrCodeThrottlingException = "ThrottlingException"

    // ErrCodeTriggerTargetsLimitExceededException for service response error code
    // "TriggerTargetsLimitExceededException".
    //
    // The maximum allowed number of triggers was exceeded.
    ErrCodeTriggerTargetsLimitExceededException = "TriggerTargetsLimitExceededException"

    // ErrCodeUnsupportedActionForDeploymentTypeException for service response error code
    // "UnsupportedActionForDeploymentTypeException".
    //
    // A call was submitted that is not supported for the specified deployment type.
    ErrCodeUnsupportedActionForDeploymentTypeException = "UnsupportedActionForDeploymentTypeException"
)
const (
    ServiceName = "codedeploy" // Name of service.
    EndpointsID = ServiceName  // ID to lookup a service endpoint with.
    ServiceID   = "CodeDeploy" // ServiceID is a unique identifier of a specific service.
)

Service information constants

func ApplicationRevisionSortBy_Values

func ApplicationRevisionSortBy_Values() []string

ApplicationRevisionSortBy_Values returns all elements of the ApplicationRevisionSortBy enum

func AutoRollbackEvent_Values

func AutoRollbackEvent_Values() []string

AutoRollbackEvent_Values returns all elements of the AutoRollbackEvent enum

func BundleType_Values

func BundleType_Values() []string

BundleType_Values returns all elements of the BundleType enum

func ComputePlatform_Values

func ComputePlatform_Values() []string

ComputePlatform_Values returns all elements of the ComputePlatform enum

func DeploymentCreator_Values

func DeploymentCreator_Values() []string

DeploymentCreator_Values returns all elements of the DeploymentCreator enum

func DeploymentOption_Values

func DeploymentOption_Values() []string

DeploymentOption_Values returns all elements of the DeploymentOption enum

func DeploymentReadyAction_Values

func DeploymentReadyAction_Values() []string

DeploymentReadyAction_Values returns all elements of the DeploymentReadyAction enum

func DeploymentStatus_Values

func DeploymentStatus_Values() []string

DeploymentStatus_Values returns all elements of the DeploymentStatus enum

func DeploymentTargetType_Values

func DeploymentTargetType_Values() []string

DeploymentTargetType_Values returns all elements of the DeploymentTargetType enum

func DeploymentType_Values

func DeploymentType_Values() []string

DeploymentType_Values returns all elements of the DeploymentType enum

func DeploymentWaitType_Values

func DeploymentWaitType_Values() []string

DeploymentWaitType_Values returns all elements of the DeploymentWaitType enum

func EC2TagFilterType_Values

func EC2TagFilterType_Values() []string

EC2TagFilterType_Values returns all elements of the EC2TagFilterType enum

func ErrorCode_Values

func ErrorCode_Values() []string

ErrorCode_Values returns all elements of the ErrorCode enum

func FileExistsBehavior_Values

func FileExistsBehavior_Values() []string

FileExistsBehavior_Values returns all elements of the FileExistsBehavior enum

func GreenFleetProvisioningAction_Values

func GreenFleetProvisioningAction_Values() []string

GreenFleetProvisioningAction_Values returns all elements of the GreenFleetProvisioningAction enum

func InstanceAction_Values

func InstanceAction_Values() []string

InstanceAction_Values returns all elements of the InstanceAction enum

func InstanceStatus_Values

func InstanceStatus_Values() []string

InstanceStatus_Values returns all elements of the InstanceStatus enum

func InstanceType_Values

func InstanceType_Values() []string

InstanceType_Values returns all elements of the InstanceType enum

func LifecycleErrorCode_Values

func LifecycleErrorCode_Values() []string

LifecycleErrorCode_Values returns all elements of the LifecycleErrorCode enum

func LifecycleEventStatus_Values

func LifecycleEventStatus_Values() []string

LifecycleEventStatus_Values returns all elements of the LifecycleEventStatus enum

func ListStateFilterAction_Values

func ListStateFilterAction_Values() []string

ListStateFilterAction_Values returns all elements of the ListStateFilterAction enum

func MinimumHealthyHostsPerZoneType_Values

func MinimumHealthyHostsPerZoneType_Values() []string

MinimumHealthyHostsPerZoneType_Values returns all elements of the MinimumHealthyHostsPerZoneType enum

func MinimumHealthyHostsType_Values

func MinimumHealthyHostsType_Values() []string

MinimumHealthyHostsType_Values returns all elements of the MinimumHealthyHostsType enum

func OutdatedInstancesStrategy_Values

func OutdatedInstancesStrategy_Values() []string

OutdatedInstancesStrategy_Values returns all elements of the OutdatedInstancesStrategy enum

func RegistrationStatus_Values

func RegistrationStatus_Values() []string

RegistrationStatus_Values returns all elements of the RegistrationStatus enum

func RevisionLocationType_Values

func RevisionLocationType_Values() []string

RevisionLocationType_Values returns all elements of the RevisionLocationType enum

func SortOrder_Values

func SortOrder_Values() []string

SortOrder_Values returns all elements of the SortOrder enum

func StopStatus_Values

func StopStatus_Values() []string

StopStatus_Values returns all elements of the StopStatus enum

func TagFilterType_Values

func TagFilterType_Values() []string

TagFilterType_Values returns all elements of the TagFilterType enum

func TargetFilterName_Values

func TargetFilterName_Values() []string

TargetFilterName_Values returns all elements of the TargetFilterName enum

func TargetLabel_Values

func TargetLabel_Values() []string

TargetLabel_Values returns all elements of the TargetLabel enum

func TargetStatus_Values

func TargetStatus_Values() []string

TargetStatus_Values returns all elements of the TargetStatus enum

func TrafficRoutingType_Values

func TrafficRoutingType_Values() []string

TrafficRoutingType_Values returns all elements of the TrafficRoutingType enum

func TriggerEventType_Values

func TriggerEventType_Values() []string

TriggerEventType_Values returns all elements of the TriggerEventType enum

type AddTagsToOnPremisesInstancesInput

type AddTagsToOnPremisesInstancesInput struct {

    // The names of the on-premises instances to which to add tags.
    //
    // InstanceNames is a required field
    InstanceNames []*string `locationName:"instanceNames" type:"list" required:"true"`

    // The tag key-value pairs to add to the on-premises instances.
    //
    // Keys and values are both required. Keys cannot be null or empty strings.
    // Value-only tags are not allowed.
    //
    // Tags is a required field
    Tags []*Tag `locationName:"tags" type:"list" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of, and adds tags to, an on-premises instance operation.

func (AddTagsToOnPremisesInstancesInput) GoString

func (s AddTagsToOnPremisesInstancesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AddTagsToOnPremisesInstancesInput) SetInstanceNames

func (s *AddTagsToOnPremisesInstancesInput) SetInstanceNames(v []*string) *AddTagsToOnPremisesInstancesInput

SetInstanceNames sets the InstanceNames field's value.

func (*AddTagsToOnPremisesInstancesInput) SetTags

func (s *AddTagsToOnPremisesInstancesInput) SetTags(v []*Tag) *AddTagsToOnPremisesInstancesInput

SetTags sets the Tags field's value.

func (AddTagsToOnPremisesInstancesInput) String

func (s AddTagsToOnPremisesInstancesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AddTagsToOnPremisesInstancesInput) Validate

func (s *AddTagsToOnPremisesInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AddTagsToOnPremisesInstancesOutput

type AddTagsToOnPremisesInstancesOutput struct {
    // contains filtered or unexported fields
}

func (AddTagsToOnPremisesInstancesOutput) GoString

func (s AddTagsToOnPremisesInstancesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (AddTagsToOnPremisesInstancesOutput) String

func (s AddTagsToOnPremisesInstancesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Alarm

type Alarm struct {

    // The name of the alarm. Maximum length is 255 characters. Each alarm name
    // can be used only once in a list of alarms.
    Name *string `locationName:"name" type:"string"`
    // contains filtered or unexported fields
}

Information about an alarm.

func (Alarm) GoString

func (s Alarm) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Alarm) SetName

func (s *Alarm) SetName(v string) *Alarm

SetName sets the Name field's value.

func (Alarm) String

func (s Alarm) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AlarmConfiguration

type AlarmConfiguration struct {

    // A list of alarms configured for the deployment or deployment group. A maximum
    // of 10 alarms can be added.
    Alarms []*Alarm `locationName:"alarms" type:"list"`

    // Indicates whether the alarm configuration is enabled.
    Enabled *bool `locationName:"enabled" type:"boolean"`

    // Indicates whether a deployment should continue if information about the current
    // state of alarms cannot be retrieved from Amazon CloudWatch. The default value
    // is false.
    //
    //    * true: The deployment proceeds even if alarm status information can't
    //    be retrieved from Amazon CloudWatch.
    //
    //    * false: The deployment stops if alarm status information can't be retrieved
    //    from Amazon CloudWatch.
    IgnorePollAlarmFailure *bool `locationName:"ignorePollAlarmFailure" type:"boolean"`
    // contains filtered or unexported fields
}

Information about alarms associated with a deployment or deployment group.

func (AlarmConfiguration) GoString

func (s AlarmConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AlarmConfiguration) SetAlarms

func (s *AlarmConfiguration) SetAlarms(v []*Alarm) *AlarmConfiguration

SetAlarms sets the Alarms field's value.

func (*AlarmConfiguration) SetEnabled

func (s *AlarmConfiguration) SetEnabled(v bool) *AlarmConfiguration

SetEnabled sets the Enabled field's value.

func (*AlarmConfiguration) SetIgnorePollAlarmFailure

func (s *AlarmConfiguration) SetIgnorePollAlarmFailure(v bool) *AlarmConfiguration

SetIgnorePollAlarmFailure sets the IgnorePollAlarmFailure field's value.

func (AlarmConfiguration) String

func (s AlarmConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AlarmsLimitExceededException

type AlarmsLimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The maximum number of alarms for a deployment group (10) was exceeded.

func (*AlarmsLimitExceededException) Code

func (s *AlarmsLimitExceededException) Code() string

Code returns the exception type name.

func (*AlarmsLimitExceededException) Error

func (s *AlarmsLimitExceededException) Error() string

func (AlarmsLimitExceededException) GoString

func (s AlarmsLimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AlarmsLimitExceededException) Message

func (s *AlarmsLimitExceededException) Message() string

Message returns the exception's message.

func (*AlarmsLimitExceededException) OrigErr

func (s *AlarmsLimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*AlarmsLimitExceededException) RequestID

func (s *AlarmsLimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*AlarmsLimitExceededException) StatusCode

func (s *AlarmsLimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (AlarmsLimitExceededException) String

func (s AlarmsLimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AppSpecContent

type AppSpecContent struct {

    // The YAML-formatted or JSON-formatted revision string.
    //
    // For an Lambda deployment, the content includes a Lambda function name, the
    // alias for its original version, and the alias for its replacement version.
    // The deployment shifts traffic from the original version of the Lambda function
    // to the replacement version.
    //
    // For an Amazon ECS deployment, the content includes the task name, information
    // about the load balancer that serves traffic to the container, and more.
    //
    // For both types of deployments, the content can specify Lambda functions that
    // run at specified hooks, such as BeforeInstall, during a deployment.
    Content *string `locationName:"content" type:"string"`

    // The SHA256 hash value of the revision content.
    Sha256 *string `locationName:"sha256" type:"string"`
    // contains filtered or unexported fields
}

A revision for an Lambda or Amazon ECS deployment that is a YAML-formatted or JSON-formatted string. For Lambda and Amazon ECS deployments, the revision is the same as the AppSpec file. This method replaces the deprecated RawString data type.

func (AppSpecContent) GoString

func (s AppSpecContent) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AppSpecContent) SetContent

func (s *AppSpecContent) SetContent(v string) *AppSpecContent

SetContent sets the Content field's value.

func (*AppSpecContent) SetSha256

func (s *AppSpecContent) SetSha256(v string) *AppSpecContent

SetSha256 sets the Sha256 field's value.

func (AppSpecContent) String

func (s AppSpecContent) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ApplicationAlreadyExistsException

type ApplicationAlreadyExistsException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

An application with the specified name with the user or Amazon Web Services account already exists.

func (*ApplicationAlreadyExistsException) Code

func (s *ApplicationAlreadyExistsException) Code() string

Code returns the exception type name.

func (*ApplicationAlreadyExistsException) Error

func (s *ApplicationAlreadyExistsException) Error() string

func (ApplicationAlreadyExistsException) GoString

func (s ApplicationAlreadyExistsException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ApplicationAlreadyExistsException) Message

func (s *ApplicationAlreadyExistsException) Message() string

Message returns the exception's message.

func (*ApplicationAlreadyExistsException) OrigErr

func (s *ApplicationAlreadyExistsException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ApplicationAlreadyExistsException) RequestID

func (s *ApplicationAlreadyExistsException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ApplicationAlreadyExistsException) StatusCode

func (s *ApplicationAlreadyExistsException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ApplicationAlreadyExistsException) String

func (s ApplicationAlreadyExistsException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ApplicationDoesNotExistException

type ApplicationDoesNotExistException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The application does not exist with the user or Amazon Web Services account.

func (*ApplicationDoesNotExistException) Code

func (s *ApplicationDoesNotExistException) Code() string

Code returns the exception type name.

func (*ApplicationDoesNotExistException) Error

func (s *ApplicationDoesNotExistException) Error() string

func (ApplicationDoesNotExistException) GoString

func (s ApplicationDoesNotExistException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ApplicationDoesNotExistException) Message

func (s *ApplicationDoesNotExistException) Message() string

Message returns the exception's message.

func (*ApplicationDoesNotExistException) OrigErr

func (s *ApplicationDoesNotExistException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ApplicationDoesNotExistException) RequestID

func (s *ApplicationDoesNotExistException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ApplicationDoesNotExistException) StatusCode

func (s *ApplicationDoesNotExistException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ApplicationDoesNotExistException) String

func (s ApplicationDoesNotExistException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ApplicationInfo

type ApplicationInfo struct {

    // The application ID.
    ApplicationId *string `locationName:"applicationId" type:"string"`

    // The application name.
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string"`

    // The destination platform type for deployment of the application (Lambda or
    // Server).
    ComputePlatform *string `locationName:"computePlatform" type:"string" enum:"ComputePlatform"`

    // The time at which the application was created.
    CreateTime *time.Time `locationName:"createTime" type:"timestamp"`

    // The name for a connection to a GitHub account.
    GitHubAccountName *string `locationName:"gitHubAccountName" type:"string"`

    // True if the user has authenticated with GitHub for the specified application.
    // Otherwise, false.
    LinkedToGitHub *bool `locationName:"linkedToGitHub" type:"boolean"`
    // contains filtered or unexported fields
}

Information about an application.

func (ApplicationInfo) GoString

func (s ApplicationInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ApplicationInfo) SetApplicationId

func (s *ApplicationInfo) SetApplicationId(v string) *ApplicationInfo

SetApplicationId sets the ApplicationId field's value.

func (*ApplicationInfo) SetApplicationName

func (s *ApplicationInfo) SetApplicationName(v string) *ApplicationInfo

SetApplicationName sets the ApplicationName field's value.

func (*ApplicationInfo) SetComputePlatform

func (s *ApplicationInfo) SetComputePlatform(v string) *ApplicationInfo

SetComputePlatform sets the ComputePlatform field's value.

func (*ApplicationInfo) SetCreateTime

func (s *ApplicationInfo) SetCreateTime(v time.Time) *ApplicationInfo

SetCreateTime sets the CreateTime field's value.

func (*ApplicationInfo) SetGitHubAccountName

func (s *ApplicationInfo) SetGitHubAccountName(v string) *ApplicationInfo

SetGitHubAccountName sets the GitHubAccountName field's value.

func (*ApplicationInfo) SetLinkedToGitHub

func (s *ApplicationInfo) SetLinkedToGitHub(v bool) *ApplicationInfo

SetLinkedToGitHub sets the LinkedToGitHub field's value.

func (ApplicationInfo) String

func (s ApplicationInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ApplicationLimitExceededException

type ApplicationLimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

More applications were attempted to be created than are allowed.

func (*ApplicationLimitExceededException) Code

func (s *ApplicationLimitExceededException) Code() string

Code returns the exception type name.

func (*ApplicationLimitExceededException) Error

func (s *ApplicationLimitExceededException) Error() string

func (ApplicationLimitExceededException) GoString

func (s ApplicationLimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ApplicationLimitExceededException) Message

func (s *ApplicationLimitExceededException) Message() string

Message returns the exception's message.

func (*ApplicationLimitExceededException) OrigErr

func (s *ApplicationLimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ApplicationLimitExceededException) RequestID

func (s *ApplicationLimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ApplicationLimitExceededException) StatusCode

func (s *ApplicationLimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ApplicationLimitExceededException) String

func (s ApplicationLimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ApplicationNameRequiredException

type ApplicationNameRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The minimum number of required application names was not specified.

func (*ApplicationNameRequiredException) Code

func (s *ApplicationNameRequiredException) Code() string

Code returns the exception type name.

func (*ApplicationNameRequiredException) Error

func (s *ApplicationNameRequiredException) Error() string

func (ApplicationNameRequiredException) GoString

func (s ApplicationNameRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ApplicationNameRequiredException) Message

func (s *ApplicationNameRequiredException) Message() string

Message returns the exception's message.

func (*ApplicationNameRequiredException) OrigErr

func (s *ApplicationNameRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ApplicationNameRequiredException) RequestID

func (s *ApplicationNameRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ApplicationNameRequiredException) StatusCode

func (s *ApplicationNameRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ApplicationNameRequiredException) String

func (s ApplicationNameRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ArnNotSupportedException

type ArnNotSupportedException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified ARN is not supported. For example, it might be an ARN for a resource that is not expected.

func (*ArnNotSupportedException) Code

func (s *ArnNotSupportedException) Code() string

Code returns the exception type name.

func (*ArnNotSupportedException) Error

func (s *ArnNotSupportedException) Error() string

func (ArnNotSupportedException) GoString

func (s ArnNotSupportedException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ArnNotSupportedException) Message

func (s *ArnNotSupportedException) Message() string

Message returns the exception's message.

func (*ArnNotSupportedException) OrigErr

func (s *ArnNotSupportedException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ArnNotSupportedException) RequestID

func (s *ArnNotSupportedException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ArnNotSupportedException) StatusCode

func (s *ArnNotSupportedException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ArnNotSupportedException) String

func (s ArnNotSupportedException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AutoRollbackConfiguration

type AutoRollbackConfiguration struct {

    // Indicates whether a defined automatic rollback configuration is currently
    // enabled.
    Enabled *bool `locationName:"enabled" type:"boolean"`

    // The event type or types that trigger a rollback.
    Events []*string `locationName:"events" type:"list" enum:"AutoRollbackEvent"`
    // contains filtered or unexported fields
}

Information about a configuration for automatically rolling back to a previous version of an application revision when a deployment is not completed successfully.

func (AutoRollbackConfiguration) GoString

func (s AutoRollbackConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AutoRollbackConfiguration) SetEnabled

func (s *AutoRollbackConfiguration) SetEnabled(v bool) *AutoRollbackConfiguration

SetEnabled sets the Enabled field's value.

func (*AutoRollbackConfiguration) SetEvents

func (s *AutoRollbackConfiguration) SetEvents(v []*string) *AutoRollbackConfiguration

SetEvents sets the Events field's value.

func (AutoRollbackConfiguration) String

func (s AutoRollbackConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AutoScalingGroup

type AutoScalingGroup struct {

    // The name of the launch hook that CodeDeploy installed into the Auto Scaling
    // group.
    //
    // For more information about the launch hook, see How Amazon EC2 Auto Scaling
    // works with CodeDeploy (https://docs.aws.amazon.com/codedeploy/latest/userguide/integrations-aws-auto-scaling.html#integrations-aws-auto-scaling-behaviors)
    // in the CodeDeploy User Guide.
    Hook *string `locationName:"hook" type:"string"`

    // The Auto Scaling group name.
    Name *string `locationName:"name" type:"string"`

    // The name of the termination hook that CodeDeploy installed into the Auto
    // Scaling group.
    //
    // For more information about the termination hook, see Enabling termination
    // deployments during Auto Scaling scale-in events (https://docs.aws.amazon.com/codedeploy/latest/userguide/integrations-aws-auto-scaling.html#integrations-aws-auto-scaling-behaviors-hook-enable)
    // in the CodeDeploy User Guide.
    TerminationHook *string `locationName:"terminationHook" type:"string"`
    // contains filtered or unexported fields
}

Information about an Auto Scaling group.

func (AutoScalingGroup) GoString

func (s AutoScalingGroup) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AutoScalingGroup) SetHook

func (s *AutoScalingGroup) SetHook(v string) *AutoScalingGroup

SetHook sets the Hook field's value.

func (*AutoScalingGroup) SetName

func (s *AutoScalingGroup) SetName(v string) *AutoScalingGroup

SetName sets the Name field's value.

func (*AutoScalingGroup) SetTerminationHook

func (s *AutoScalingGroup) SetTerminationHook(v string) *AutoScalingGroup

SetTerminationHook sets the TerminationHook field's value.

func (AutoScalingGroup) String

func (s AutoScalingGroup) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BatchGetApplicationRevisionsInput

type BatchGetApplicationRevisionsInput struct {

    // The name of an CodeDeploy application about which to get revision information.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`

    // An array of RevisionLocation objects that specify information to get about
    // the application revisions, including type and location. The maximum number
    // of RevisionLocation objects you can specify is 25.
    //
    // Revisions is a required field
    Revisions []*RevisionLocation `locationName:"revisions" type:"list" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a BatchGetApplicationRevisions operation.

func (BatchGetApplicationRevisionsInput) GoString

func (s BatchGetApplicationRevisionsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetApplicationRevisionsInput) SetApplicationName

func (s *BatchGetApplicationRevisionsInput) SetApplicationName(v string) *BatchGetApplicationRevisionsInput

SetApplicationName sets the ApplicationName field's value.

func (*BatchGetApplicationRevisionsInput) SetRevisions

func (s *BatchGetApplicationRevisionsInput) SetRevisions(v []*RevisionLocation) *BatchGetApplicationRevisionsInput

SetRevisions sets the Revisions field's value.

func (BatchGetApplicationRevisionsInput) String

func (s BatchGetApplicationRevisionsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetApplicationRevisionsInput) Validate

func (s *BatchGetApplicationRevisionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BatchGetApplicationRevisionsOutput

type BatchGetApplicationRevisionsOutput struct {

    // The name of the application that corresponds to the revisions.
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string"`

    // Information about errors that might have occurred during the API call.
    ErrorMessage *string `locationName:"errorMessage" type:"string"`

    // Additional information about the revisions, including the type and location.
    Revisions []*RevisionInfo `locationName:"revisions" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a BatchGetApplicationRevisions operation.

func (BatchGetApplicationRevisionsOutput) GoString

func (s BatchGetApplicationRevisionsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetApplicationRevisionsOutput) SetApplicationName

func (s *BatchGetApplicationRevisionsOutput) SetApplicationName(v string) *BatchGetApplicationRevisionsOutput

SetApplicationName sets the ApplicationName field's value.

func (*BatchGetApplicationRevisionsOutput) SetErrorMessage

func (s *BatchGetApplicationRevisionsOutput) SetErrorMessage(v string) *BatchGetApplicationRevisionsOutput

SetErrorMessage sets the ErrorMessage field's value.

func (*BatchGetApplicationRevisionsOutput) SetRevisions

func (s *BatchGetApplicationRevisionsOutput) SetRevisions(v []*RevisionInfo) *BatchGetApplicationRevisionsOutput

SetRevisions sets the Revisions field's value.

func (BatchGetApplicationRevisionsOutput) String

func (s BatchGetApplicationRevisionsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BatchGetApplicationsInput

type BatchGetApplicationsInput struct {

    // A list of application names separated by spaces. The maximum number of application
    // names you can specify is 100.
    //
    // ApplicationNames is a required field
    ApplicationNames []*string `locationName:"applicationNames" type:"list" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a BatchGetApplications operation.

func (BatchGetApplicationsInput) GoString

func (s BatchGetApplicationsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetApplicationsInput) SetApplicationNames

func (s *BatchGetApplicationsInput) SetApplicationNames(v []*string) *BatchGetApplicationsInput

SetApplicationNames sets the ApplicationNames field's value.

func (BatchGetApplicationsInput) String

func (s BatchGetApplicationsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetApplicationsInput) Validate

func (s *BatchGetApplicationsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BatchGetApplicationsOutput

type BatchGetApplicationsOutput struct {

    // Information about the applications.
    ApplicationsInfo []*ApplicationInfo `locationName:"applicationsInfo" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a BatchGetApplications operation.

func (BatchGetApplicationsOutput) GoString

func (s BatchGetApplicationsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetApplicationsOutput) SetApplicationsInfo

func (s *BatchGetApplicationsOutput) SetApplicationsInfo(v []*ApplicationInfo) *BatchGetApplicationsOutput

SetApplicationsInfo sets the ApplicationsInfo field's value.

func (BatchGetApplicationsOutput) String

func (s BatchGetApplicationsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BatchGetDeploymentGroupsInput

type BatchGetDeploymentGroupsInput struct {

    // The name of an CodeDeploy application associated with the applicable user
    // or Amazon Web Services account.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`

    // The names of the deployment groups.
    //
    // DeploymentGroupNames is a required field
    DeploymentGroupNames []*string `locationName:"deploymentGroupNames" type:"list" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a BatchGetDeploymentGroups operation.

func (BatchGetDeploymentGroupsInput) GoString

func (s BatchGetDeploymentGroupsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetDeploymentGroupsInput) SetApplicationName

func (s *BatchGetDeploymentGroupsInput) SetApplicationName(v string) *BatchGetDeploymentGroupsInput

SetApplicationName sets the ApplicationName field's value.

func (*BatchGetDeploymentGroupsInput) SetDeploymentGroupNames

func (s *BatchGetDeploymentGroupsInput) SetDeploymentGroupNames(v []*string) *BatchGetDeploymentGroupsInput

SetDeploymentGroupNames sets the DeploymentGroupNames field's value.

func (BatchGetDeploymentGroupsInput) String

func (s BatchGetDeploymentGroupsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetDeploymentGroupsInput) Validate

func (s *BatchGetDeploymentGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BatchGetDeploymentGroupsOutput

type BatchGetDeploymentGroupsOutput struct {

    // Information about the deployment groups.
    DeploymentGroupsInfo []*DeploymentGroupInfo `locationName:"deploymentGroupsInfo" type:"list"`

    // Information about errors that might have occurred during the API call.
    ErrorMessage *string `locationName:"errorMessage" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a BatchGetDeploymentGroups operation.

func (BatchGetDeploymentGroupsOutput) GoString

func (s BatchGetDeploymentGroupsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetDeploymentGroupsOutput) SetDeploymentGroupsInfo

func (s *BatchGetDeploymentGroupsOutput) SetDeploymentGroupsInfo(v []*DeploymentGroupInfo) *BatchGetDeploymentGroupsOutput

SetDeploymentGroupsInfo sets the DeploymentGroupsInfo field's value.

func (*BatchGetDeploymentGroupsOutput) SetErrorMessage

func (s *BatchGetDeploymentGroupsOutput) SetErrorMessage(v string) *BatchGetDeploymentGroupsOutput

SetErrorMessage sets the ErrorMessage field's value.

func (BatchGetDeploymentGroupsOutput) String

func (s BatchGetDeploymentGroupsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BatchGetDeploymentInstancesInput

type BatchGetDeploymentInstancesInput struct {

    // The unique ID of a deployment.
    //
    // DeploymentId is a required field
    DeploymentId *string `locationName:"deploymentId" type:"string" required:"true"`

    // The unique IDs of instances used in the deployment. The maximum number of
    // instance IDs you can specify is 25.
    //
    // InstanceIds is a required field
    InstanceIds []*string `locationName:"instanceIds" type:"list" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a BatchGetDeploymentInstances operation.

func (BatchGetDeploymentInstancesInput) GoString

func (s BatchGetDeploymentInstancesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetDeploymentInstancesInput) SetDeploymentId

func (s *BatchGetDeploymentInstancesInput) SetDeploymentId(v string) *BatchGetDeploymentInstancesInput

SetDeploymentId sets the DeploymentId field's value.

func (*BatchGetDeploymentInstancesInput) SetInstanceIds

func (s *BatchGetDeploymentInstancesInput) SetInstanceIds(v []*string) *BatchGetDeploymentInstancesInput

SetInstanceIds sets the InstanceIds field's value.

func (BatchGetDeploymentInstancesInput) String

func (s BatchGetDeploymentInstancesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetDeploymentInstancesInput) Validate

func (s *BatchGetDeploymentInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BatchGetDeploymentInstancesOutput

type BatchGetDeploymentInstancesOutput struct {

    // Information about errors that might have occurred during the API call.
    ErrorMessage *string `locationName:"errorMessage" type:"string"`

    // Information about the instance.
    InstancesSummary []*InstanceSummary `locationName:"instancesSummary" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a BatchGetDeploymentInstances operation.

func (BatchGetDeploymentInstancesOutput) GoString

func (s BatchGetDeploymentInstancesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetDeploymentInstancesOutput) SetErrorMessage

func (s *BatchGetDeploymentInstancesOutput) SetErrorMessage(v string) *BatchGetDeploymentInstancesOutput

SetErrorMessage sets the ErrorMessage field's value.

func (*BatchGetDeploymentInstancesOutput) SetInstancesSummary

func (s *BatchGetDeploymentInstancesOutput) SetInstancesSummary(v []*InstanceSummary) *BatchGetDeploymentInstancesOutput

SetInstancesSummary sets the InstancesSummary field's value.

func (BatchGetDeploymentInstancesOutput) String

func (s BatchGetDeploymentInstancesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BatchGetDeploymentTargetsInput

type BatchGetDeploymentTargetsInput struct {

    // The unique ID of a deployment.
    //
    // DeploymentId is a required field
    DeploymentId *string `locationName:"deploymentId" type:"string" required:"true"`

    // The unique IDs of the deployment targets. The compute platform of the deployment
    // determines the type of the targets and their formats. The maximum number
    // of deployment target IDs you can specify is 25.
    //
    //    * For deployments that use the EC2/On-premises compute platform, the target
    //    IDs are Amazon EC2 or on-premises instances IDs, and their target type
    //    is instanceTarget.
    //
    //    * For deployments that use the Lambda compute platform, the target IDs
    //    are the names of Lambda functions, and their target type is instanceTarget.
    //
    //    * For deployments that use the Amazon ECS compute platform, the target
    //    IDs are pairs of Amazon ECS clusters and services specified using the
    //    format <clustername>:<servicename>. Their target type is ecsTarget.
    //
    //    * For deployments that are deployed with CloudFormation, the target IDs
    //    are CloudFormation stack IDs. Their target type is cloudFormationTarget.
    //
    // TargetIds is a required field
    TargetIds []*string `locationName:"targetIds" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (BatchGetDeploymentTargetsInput) GoString

func (s BatchGetDeploymentTargetsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetDeploymentTargetsInput) SetDeploymentId

func (s *BatchGetDeploymentTargetsInput) SetDeploymentId(v string) *BatchGetDeploymentTargetsInput

SetDeploymentId sets the DeploymentId field's value.

func (*BatchGetDeploymentTargetsInput) SetTargetIds

func (s *BatchGetDeploymentTargetsInput) SetTargetIds(v []*string) *BatchGetDeploymentTargetsInput

SetTargetIds sets the TargetIds field's value.

func (BatchGetDeploymentTargetsInput) String

func (s BatchGetDeploymentTargetsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetDeploymentTargetsInput) Validate

func (s *BatchGetDeploymentTargetsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BatchGetDeploymentTargetsOutput

type BatchGetDeploymentTargetsOutput struct {

    // A list of target objects for a deployment. Each target object contains details
    // about the target, such as its status and lifecycle events. The type of the
    // target objects depends on the deployment' compute platform.
    //
    //    * EC2/On-premises: Each target object is an Amazon EC2 or on-premises
    //    instance.
    //
    //    * Lambda: The target object is a specific version of an Lambda function.
    //
    //    * Amazon ECS: The target object is an Amazon ECS service.
    //
    //    * CloudFormation: The target object is an CloudFormation blue/green deployment.
    DeploymentTargets []*DeploymentTarget `locationName:"deploymentTargets" type:"list"`
    // contains filtered or unexported fields
}

func (BatchGetDeploymentTargetsOutput) GoString

func (s BatchGetDeploymentTargetsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetDeploymentTargetsOutput) SetDeploymentTargets

func (s *BatchGetDeploymentTargetsOutput) SetDeploymentTargets(v []*DeploymentTarget) *BatchGetDeploymentTargetsOutput

SetDeploymentTargets sets the DeploymentTargets field's value.

func (BatchGetDeploymentTargetsOutput) String

func (s BatchGetDeploymentTargetsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BatchGetDeploymentsInput

type BatchGetDeploymentsInput struct {

    // A list of deployment IDs, separated by spaces. The maximum number of deployment
    // IDs you can specify is 25.
    //
    // DeploymentIds is a required field
    DeploymentIds []*string `locationName:"deploymentIds" type:"list" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a BatchGetDeployments operation.

func (BatchGetDeploymentsInput) GoString

func (s BatchGetDeploymentsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetDeploymentsInput) SetDeploymentIds

func (s *BatchGetDeploymentsInput) SetDeploymentIds(v []*string) *BatchGetDeploymentsInput

SetDeploymentIds sets the DeploymentIds field's value.

func (BatchGetDeploymentsInput) String

func (s BatchGetDeploymentsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetDeploymentsInput) Validate

func (s *BatchGetDeploymentsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BatchGetDeploymentsOutput

type BatchGetDeploymentsOutput struct {

    // Information about the deployments.
    DeploymentsInfo []*DeploymentInfo `locationName:"deploymentsInfo" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a BatchGetDeployments operation.

func (BatchGetDeploymentsOutput) GoString

func (s BatchGetDeploymentsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetDeploymentsOutput) SetDeploymentsInfo

func (s *BatchGetDeploymentsOutput) SetDeploymentsInfo(v []*DeploymentInfo) *BatchGetDeploymentsOutput

SetDeploymentsInfo sets the DeploymentsInfo field's value.

func (BatchGetDeploymentsOutput) String

func (s BatchGetDeploymentsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BatchGetOnPremisesInstancesInput

type BatchGetOnPremisesInstancesInput struct {

    // The names of the on-premises instances about which to get information. The
    // maximum number of instance names you can specify is 25.
    //
    // InstanceNames is a required field
    InstanceNames []*string `locationName:"instanceNames" type:"list" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a BatchGetOnPremisesInstances operation.

func (BatchGetOnPremisesInstancesInput) GoString

func (s BatchGetOnPremisesInstancesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetOnPremisesInstancesInput) SetInstanceNames

func (s *BatchGetOnPremisesInstancesInput) SetInstanceNames(v []*string) *BatchGetOnPremisesInstancesInput

SetInstanceNames sets the InstanceNames field's value.

func (BatchGetOnPremisesInstancesInput) String

func (s BatchGetOnPremisesInstancesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetOnPremisesInstancesInput) Validate

func (s *BatchGetOnPremisesInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BatchGetOnPremisesInstancesOutput

type BatchGetOnPremisesInstancesOutput struct {

    // Information about the on-premises instances.
    InstanceInfos []*InstanceInfo `locationName:"instanceInfos" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a BatchGetOnPremisesInstances operation.

func (BatchGetOnPremisesInstancesOutput) GoString

func (s BatchGetOnPremisesInstancesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetOnPremisesInstancesOutput) SetInstanceInfos

func (s *BatchGetOnPremisesInstancesOutput) SetInstanceInfos(v []*InstanceInfo) *BatchGetOnPremisesInstancesOutput

SetInstanceInfos sets the InstanceInfos field's value.

func (BatchGetOnPremisesInstancesOutput) String

func (s BatchGetOnPremisesInstancesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BatchLimitExceededException

type BatchLimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The maximum number of names or IDs allowed for this request (100) was exceeded.

func (*BatchLimitExceededException) Code

func (s *BatchLimitExceededException) Code() string

Code returns the exception type name.

func (*BatchLimitExceededException) Error

func (s *BatchLimitExceededException) Error() string

func (BatchLimitExceededException) GoString

func (s BatchLimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchLimitExceededException) Message

func (s *BatchLimitExceededException) Message() string

Message returns the exception's message.

func (*BatchLimitExceededException) OrigErr

func (s *BatchLimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*BatchLimitExceededException) RequestID

func (s *BatchLimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*BatchLimitExceededException) StatusCode

func (s *BatchLimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (BatchLimitExceededException) String

func (s BatchLimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BlueGreenDeploymentConfiguration

type BlueGreenDeploymentConfiguration struct {

    // Information about the action to take when newly provisioned instances are
    // ready to receive traffic in a blue/green deployment.
    DeploymentReadyOption *DeploymentReadyOption `locationName:"deploymentReadyOption" type:"structure"`

    // Information about how instances are provisioned for a replacement environment
    // in a blue/green deployment.
    GreenFleetProvisioningOption *GreenFleetProvisioningOption `locationName:"greenFleetProvisioningOption" type:"structure"`

    // Information about whether to terminate instances in the original fleet during
    // a blue/green deployment.
    TerminateBlueInstancesOnDeploymentSuccess *BlueInstanceTerminationOption `locationName:"terminateBlueInstancesOnDeploymentSuccess" type:"structure"`
    // contains filtered or unexported fields
}

Information about blue/green deployment options for a deployment group.

func (BlueGreenDeploymentConfiguration) GoString

func (s BlueGreenDeploymentConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BlueGreenDeploymentConfiguration) SetDeploymentReadyOption

func (s *BlueGreenDeploymentConfiguration) SetDeploymentReadyOption(v *DeploymentReadyOption) *BlueGreenDeploymentConfiguration

SetDeploymentReadyOption sets the DeploymentReadyOption field's value.

func (*BlueGreenDeploymentConfiguration) SetGreenFleetProvisioningOption

func (s *BlueGreenDeploymentConfiguration) SetGreenFleetProvisioningOption(v *GreenFleetProvisioningOption) *BlueGreenDeploymentConfiguration

SetGreenFleetProvisioningOption sets the GreenFleetProvisioningOption field's value.

func (*BlueGreenDeploymentConfiguration) SetTerminateBlueInstancesOnDeploymentSuccess

func (s *BlueGreenDeploymentConfiguration) SetTerminateBlueInstancesOnDeploymentSuccess(v *BlueInstanceTerminationOption) *BlueGreenDeploymentConfiguration

SetTerminateBlueInstancesOnDeploymentSuccess sets the TerminateBlueInstancesOnDeploymentSuccess field's value.

func (BlueGreenDeploymentConfiguration) String

func (s BlueGreenDeploymentConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BlueInstanceTerminationOption

type BlueInstanceTerminationOption struct {

    // The action to take on instances in the original environment after a successful
    // blue/green deployment.
    //
    //    * TERMINATE: Instances are terminated after a specified wait time.
    //
    //    * KEEP_ALIVE: Instances are left running after they are deregistered from
    //    the load balancer and removed from the deployment group.
    Action *string `locationName:"action" type:"string" enum:"InstanceAction"`

    // For an Amazon EC2 deployment, the number of minutes to wait after a successful
    // blue/green deployment before terminating instances from the original environment.
    //
    // For an Amazon ECS deployment, the number of minutes before deleting the original
    // (blue) task set. During an Amazon ECS deployment, CodeDeploy shifts traffic
    // from the original (blue) task set to a replacement (green) task set.
    //
    // The maximum setting is 2880 minutes (2 days).
    TerminationWaitTimeInMinutes *int64 `locationName:"terminationWaitTimeInMinutes" type:"integer"`
    // contains filtered or unexported fields
}

Information about whether instances in the original environment are terminated when a blue/green deployment is successful. BlueInstanceTerminationOption does not apply to Lambda deployments.

func (BlueInstanceTerminationOption) GoString

func (s BlueInstanceTerminationOption) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BlueInstanceTerminationOption) SetAction

func (s *BlueInstanceTerminationOption) SetAction(v string) *BlueInstanceTerminationOption

SetAction sets the Action field's value.

func (*BlueInstanceTerminationOption) SetTerminationWaitTimeInMinutes

func (s *BlueInstanceTerminationOption) SetTerminationWaitTimeInMinutes(v int64) *BlueInstanceTerminationOption

SetTerminationWaitTimeInMinutes sets the TerminationWaitTimeInMinutes field's value.

func (BlueInstanceTerminationOption) String

func (s BlueInstanceTerminationOption) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BucketNameFilterRequiredException

type BucketNameFilterRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

A bucket name is required, but was not provided.

func (*BucketNameFilterRequiredException) Code

func (s *BucketNameFilterRequiredException) Code() string

Code returns the exception type name.

func (*BucketNameFilterRequiredException) Error

func (s *BucketNameFilterRequiredException) Error() string

func (BucketNameFilterRequiredException) GoString

func (s BucketNameFilterRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BucketNameFilterRequiredException) Message

func (s *BucketNameFilterRequiredException) Message() string

Message returns the exception's message.

func (*BucketNameFilterRequiredException) OrigErr

func (s *BucketNameFilterRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*BucketNameFilterRequiredException) RequestID

func (s *BucketNameFilterRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*BucketNameFilterRequiredException) StatusCode

func (s *BucketNameFilterRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (BucketNameFilterRequiredException) String

func (s BucketNameFilterRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CloudFormationTarget

type CloudFormationTarget struct {

    // The unique ID of an CloudFormation blue/green deployment.
    DeploymentId *string `locationName:"deploymentId" type:"string"`

    // The date and time when the target application was updated by an CloudFormation
    // blue/green deployment.
    LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"`

    // The lifecycle events of the CloudFormation blue/green deployment to this
    // target application.
    LifecycleEvents []*LifecycleEvent `locationName:"lifecycleEvents" type:"list"`

    // The resource type for the CloudFormation blue/green deployment.
    ResourceType *string `locationName:"resourceType" type:"string"`

    // The status of an CloudFormation blue/green deployment's target application.
    Status *string `locationName:"status" type:"string" enum:"TargetStatus"`

    // The unique ID of a deployment target that has a type of CloudFormationTarget.
    TargetId *string `locationName:"targetId" type:"string"`

    // The percentage of production traffic that the target version of an CloudFormation
    // blue/green deployment receives.
    TargetVersionWeight *float64 `locationName:"targetVersionWeight" type:"double"`
    // contains filtered or unexported fields
}

Information about the target to be updated by an CloudFormation blue/green deployment. This target type is used for all deployments initiated by a CloudFormation stack update.

func (CloudFormationTarget) GoString

func (s CloudFormationTarget) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CloudFormationTarget) SetDeploymentId

func (s *CloudFormationTarget) SetDeploymentId(v string) *CloudFormationTarget

SetDeploymentId sets the DeploymentId field's value.

func (*CloudFormationTarget) SetLastUpdatedAt

func (s *CloudFormationTarget) SetLastUpdatedAt(v time.Time) *CloudFormationTarget

SetLastUpdatedAt sets the LastUpdatedAt field's value.

func (*CloudFormationTarget) SetLifecycleEvents

func (s *CloudFormationTarget) SetLifecycleEvents(v []*LifecycleEvent) *CloudFormationTarget

SetLifecycleEvents sets the LifecycleEvents field's value.

func (*CloudFormationTarget) SetResourceType

func (s *CloudFormationTarget) SetResourceType(v string) *CloudFormationTarget

SetResourceType sets the ResourceType field's value.

func (*CloudFormationTarget) SetStatus

func (s *CloudFormationTarget) SetStatus(v string) *CloudFormationTarget

SetStatus sets the Status field's value.

func (*CloudFormationTarget) SetTargetId

func (s *CloudFormationTarget) SetTargetId(v string) *CloudFormationTarget

SetTargetId sets the TargetId field's value.

func (*CloudFormationTarget) SetTargetVersionWeight

func (s *CloudFormationTarget) SetTargetVersionWeight(v float64) *CloudFormationTarget

SetTargetVersionWeight sets the TargetVersionWeight field's value.

func (CloudFormationTarget) String

func (s CloudFormationTarget) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CodeDeploy

type CodeDeploy struct {
    *client.Client
}

CodeDeploy provides the API operation methods for making requests to AWS CodeDeploy. See this package's package overview docs for details on the service.

CodeDeploy methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *CodeDeploy

New creates a new instance of the CodeDeploy client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.

Example:

mySession := session.Must(session.NewSession())

// Create a CodeDeploy client from just a session.
svc := codedeploy.New(mySession)

// Create a CodeDeploy client with additional configuration
svc := codedeploy.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*CodeDeploy) AddTagsToOnPremisesInstances

func (c *CodeDeploy) AddTagsToOnPremisesInstances(input *AddTagsToOnPremisesInstancesInput) (*AddTagsToOnPremisesInstancesOutput, error)

AddTagsToOnPremisesInstances API operation for AWS CodeDeploy.

Adds tags to on-premises instances.

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 CodeDeploy's API operation AddTagsToOnPremisesInstances for usage and error information.

Returned Error Types:

  • InstanceNameRequiredException An on-premises instance name was not specified.

  • InvalidInstanceNameException The on-premises instance name was specified in an invalid format.

  • TagRequiredException A tag was not specified.

  • InvalidTagException The tag was specified in an invalid format.

  • TagLimitExceededException The maximum allowed number of tags was exceeded.

  • InstanceLimitExceededException The maximum number of allowed on-premises instances in a single call was exceeded.

  • InstanceNotRegisteredException The specified on-premises instance is not registered.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/AddTagsToOnPremisesInstances

func (*CodeDeploy) AddTagsToOnPremisesInstancesRequest

func (c *CodeDeploy) AddTagsToOnPremisesInstancesRequest(input *AddTagsToOnPremisesInstancesInput) (req *request.Request, output *AddTagsToOnPremisesInstancesOutput)

AddTagsToOnPremisesInstancesRequest generates a "aws/request.Request" representing the client's request for the AddTagsToOnPremisesInstances operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See AddTagsToOnPremisesInstances for more information on using the AddTagsToOnPremisesInstances API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the AddTagsToOnPremisesInstancesRequest method.
req, resp := client.AddTagsToOnPremisesInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/AddTagsToOnPremisesInstances

func (*CodeDeploy) AddTagsToOnPremisesInstancesWithContext

func (c *CodeDeploy) AddTagsToOnPremisesInstancesWithContext(ctx aws.Context, input *AddTagsToOnPremisesInstancesInput, opts ...request.Option) (*AddTagsToOnPremisesInstancesOutput, error)

AddTagsToOnPremisesInstancesWithContext is the same as AddTagsToOnPremisesInstances with the addition of the ability to pass a context and additional request options.

See AddTagsToOnPremisesInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) BatchGetApplicationRevisions

func (c *CodeDeploy) BatchGetApplicationRevisions(input *BatchGetApplicationRevisionsInput) (*BatchGetApplicationRevisionsOutput, error)

BatchGetApplicationRevisions API operation for AWS CodeDeploy.

Gets information about one or more application revisions. The maximum number of application revisions that can be returned is 25.

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 CodeDeploy's API operation BatchGetApplicationRevisions for usage and error information.

Returned Error Types:

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • RevisionRequiredException The revision ID was not specified.

  • InvalidRevisionException The revision was specified in an invalid format.

  • BatchLimitExceededException The maximum number of names or IDs allowed for this request (100) was exceeded.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetApplicationRevisions

func (*CodeDeploy) BatchGetApplicationRevisionsRequest

func (c *CodeDeploy) BatchGetApplicationRevisionsRequest(input *BatchGetApplicationRevisionsInput) (req *request.Request, output *BatchGetApplicationRevisionsOutput)

BatchGetApplicationRevisionsRequest generates a "aws/request.Request" representing the client's request for the BatchGetApplicationRevisions operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See BatchGetApplicationRevisions for more information on using the BatchGetApplicationRevisions API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the BatchGetApplicationRevisionsRequest method.
req, resp := client.BatchGetApplicationRevisionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetApplicationRevisions

func (*CodeDeploy) BatchGetApplicationRevisionsWithContext

func (c *CodeDeploy) BatchGetApplicationRevisionsWithContext(ctx aws.Context, input *BatchGetApplicationRevisionsInput, opts ...request.Option) (*BatchGetApplicationRevisionsOutput, error)

BatchGetApplicationRevisionsWithContext is the same as BatchGetApplicationRevisions with the addition of the ability to pass a context and additional request options.

See BatchGetApplicationRevisions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) BatchGetApplications

func (c *CodeDeploy) BatchGetApplications(input *BatchGetApplicationsInput) (*BatchGetApplicationsOutput, error)

BatchGetApplications API operation for AWS CodeDeploy.

Gets information about one or more applications. The maximum number of applications that can be returned is 100.

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 CodeDeploy's API operation BatchGetApplications for usage and error information.

Returned Error Types:

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • BatchLimitExceededException The maximum number of names or IDs allowed for this request (100) was exceeded.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetApplications

func (*CodeDeploy) BatchGetApplicationsRequest

func (c *CodeDeploy) BatchGetApplicationsRequest(input *BatchGetApplicationsInput) (req *request.Request, output *BatchGetApplicationsOutput)

BatchGetApplicationsRequest generates a "aws/request.Request" representing the client's request for the BatchGetApplications operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See BatchGetApplications for more information on using the BatchGetApplications API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the BatchGetApplicationsRequest method.
req, resp := client.BatchGetApplicationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetApplications

func (*CodeDeploy) BatchGetApplicationsWithContext

func (c *CodeDeploy) BatchGetApplicationsWithContext(ctx aws.Context, input *BatchGetApplicationsInput, opts ...request.Option) (*BatchGetApplicationsOutput, error)

BatchGetApplicationsWithContext is the same as BatchGetApplications with the addition of the ability to pass a context and additional request options.

See BatchGetApplications for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) BatchGetDeploymentGroups

func (c *CodeDeploy) BatchGetDeploymentGroups(input *BatchGetDeploymentGroupsInput) (*BatchGetDeploymentGroupsOutput, error)

BatchGetDeploymentGroups API operation for AWS CodeDeploy.

Gets information about one or more deployment groups.

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 CodeDeploy's API operation BatchGetDeploymentGroups for usage and error information.

Returned Error Types:

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • DeploymentGroupNameRequiredException The deployment group name was not specified.

  • InvalidDeploymentGroupNameException The deployment group name was specified in an invalid format.

  • BatchLimitExceededException The maximum number of names or IDs allowed for this request (100) was exceeded.

  • DeploymentConfigDoesNotExistException The deployment configuration does not exist with the user or Amazon Web Services account.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetDeploymentGroups

func (*CodeDeploy) BatchGetDeploymentGroupsRequest

func (c *CodeDeploy) BatchGetDeploymentGroupsRequest(input *BatchGetDeploymentGroupsInput) (req *request.Request, output *BatchGetDeploymentGroupsOutput)

BatchGetDeploymentGroupsRequest generates a "aws/request.Request" representing the client's request for the BatchGetDeploymentGroups operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See BatchGetDeploymentGroups for more information on using the BatchGetDeploymentGroups API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the BatchGetDeploymentGroupsRequest method.
req, resp := client.BatchGetDeploymentGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetDeploymentGroups

func (*CodeDeploy) BatchGetDeploymentGroupsWithContext

func (c *CodeDeploy) BatchGetDeploymentGroupsWithContext(ctx aws.Context, input *BatchGetDeploymentGroupsInput, opts ...request.Option) (*BatchGetDeploymentGroupsOutput, error)

BatchGetDeploymentGroupsWithContext is the same as BatchGetDeploymentGroups with the addition of the ability to pass a context and additional request options.

See BatchGetDeploymentGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) BatchGetDeploymentInstances

func (c *CodeDeploy) BatchGetDeploymentInstances(input *BatchGetDeploymentInstancesInput) (*BatchGetDeploymentInstancesOutput, error)

BatchGetDeploymentInstances API operation for AWS CodeDeploy.

This method works, but is deprecated. Use BatchGetDeploymentTargets instead.

Returns an array of one or more instances associated with a deployment. This method works with EC2/On-premises and Lambda compute platforms. The newer BatchGetDeploymentTargets works with all compute platforms. The maximum number of instances that can be returned is 25.

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 CodeDeploy's API operation BatchGetDeploymentInstances for usage and error information.

Returned Error Types:

  • DeploymentIdRequiredException At least one deployment ID must be specified.

  • DeploymentDoesNotExistException The deployment with the user or Amazon Web Services account does not exist.

  • InstanceIdRequiredException The instance ID was not specified.

  • InvalidDeploymentIdException At least one of the deployment IDs was specified in an invalid format.

  • InvalidInstanceNameException The on-premises instance name was specified in an invalid format.

  • BatchLimitExceededException The maximum number of names or IDs allowed for this request (100) was exceeded.

  • InvalidComputePlatformException The computePlatform is invalid. The computePlatform should be Lambda, Server, or ECS.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetDeploymentInstances

Deprecated: This operation is deprecated, use BatchGetDeploymentTargets instead.

func (*CodeDeploy) BatchGetDeploymentInstancesRequest

func (c *CodeDeploy) BatchGetDeploymentInstancesRequest(input *BatchGetDeploymentInstancesInput) (req *request.Request, output *BatchGetDeploymentInstancesOutput)

BatchGetDeploymentInstancesRequest generates a "aws/request.Request" representing the client's request for the BatchGetDeploymentInstances operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See BatchGetDeploymentInstances for more information on using the BatchGetDeploymentInstances API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the BatchGetDeploymentInstancesRequest method.
req, resp := client.BatchGetDeploymentInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetDeploymentInstances

Deprecated: This operation is deprecated, use BatchGetDeploymentTargets instead.

func (*CodeDeploy) BatchGetDeploymentInstancesWithContext

func (c *CodeDeploy) BatchGetDeploymentInstancesWithContext(ctx aws.Context, input *BatchGetDeploymentInstancesInput, opts ...request.Option) (*BatchGetDeploymentInstancesOutput, error)

BatchGetDeploymentInstancesWithContext is the same as BatchGetDeploymentInstances with the addition of the ability to pass a context and additional request options.

See BatchGetDeploymentInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

Deprecated: This operation is deprecated, use BatchGetDeploymentTargets instead.

func (*CodeDeploy) BatchGetDeploymentTargets

func (c *CodeDeploy) BatchGetDeploymentTargets(input *BatchGetDeploymentTargetsInput) (*BatchGetDeploymentTargetsOutput, error)

BatchGetDeploymentTargets API operation for AWS CodeDeploy.

Returns an array of one or more targets associated with a deployment. This method works with all compute types and should be used instead of the deprecated BatchGetDeploymentInstances. The maximum number of targets that can be returned is 25.

The type of targets returned depends on the deployment's compute platform or deployment method:

  • EC2/On-premises: Information about Amazon EC2 instance targets.

  • Lambda: Information about Lambda functions targets.

  • Amazon ECS: Information about Amazon ECS service targets.

  • CloudFormation: Information about targets of blue/green deployments initiated by a CloudFormation stack update.

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 CodeDeploy's API operation BatchGetDeploymentTargets for usage and error information.

Returned Error Types:

  • InvalidDeploymentIdException At least one of the deployment IDs was specified in an invalid format.

  • DeploymentIdRequiredException At least one deployment ID must be specified.

  • DeploymentDoesNotExistException The deployment with the user or Amazon Web Services account does not exist.

  • DeploymentNotStartedException The specified deployment has not started.

  • DeploymentTargetIdRequiredException A deployment target ID was not provided.

  • InvalidDeploymentTargetIdException The target ID provided was not valid.

  • DeploymentTargetDoesNotExistException The provided target ID does not belong to the attempted deployment.

  • DeploymentTargetListSizeExceededException The maximum number of targets that can be associated with an Amazon ECS or Lambda deployment was exceeded. The target list of both types of deployments must have exactly one item. This exception does not apply to EC2/On-premises deployments.

  • InstanceDoesNotExistException The specified instance does not exist in the deployment group.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetDeploymentTargets

func (*CodeDeploy) BatchGetDeploymentTargetsRequest

func (c *CodeDeploy) BatchGetDeploymentTargetsRequest(input *BatchGetDeploymentTargetsInput) (req *request.Request, output *BatchGetDeploymentTargetsOutput)

BatchGetDeploymentTargetsRequest generates a "aws/request.Request" representing the client's request for the BatchGetDeploymentTargets operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See BatchGetDeploymentTargets for more information on using the BatchGetDeploymentTargets API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the BatchGetDeploymentTargetsRequest method.
req, resp := client.BatchGetDeploymentTargetsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetDeploymentTargets

func (*CodeDeploy) BatchGetDeploymentTargetsWithContext

func (c *CodeDeploy) BatchGetDeploymentTargetsWithContext(ctx aws.Context, input *BatchGetDeploymentTargetsInput, opts ...request.Option) (*BatchGetDeploymentTargetsOutput, error)

BatchGetDeploymentTargetsWithContext is the same as BatchGetDeploymentTargets with the addition of the ability to pass a context and additional request options.

See BatchGetDeploymentTargets for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) BatchGetDeployments

func (c *CodeDeploy) BatchGetDeployments(input *BatchGetDeploymentsInput) (*BatchGetDeploymentsOutput, error)

BatchGetDeployments API operation for AWS CodeDeploy.

Gets information about one or more deployments. The maximum number of deployments that can be returned is 25.

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 CodeDeploy's API operation BatchGetDeployments for usage and error information.

Returned Error Types:

  • DeploymentIdRequiredException At least one deployment ID must be specified.

  • InvalidDeploymentIdException At least one of the deployment IDs was specified in an invalid format.

  • BatchLimitExceededException The maximum number of names or IDs allowed for this request (100) was exceeded.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetDeployments

func (*CodeDeploy) BatchGetDeploymentsRequest

func (c *CodeDeploy) BatchGetDeploymentsRequest(input *BatchGetDeploymentsInput) (req *request.Request, output *BatchGetDeploymentsOutput)

BatchGetDeploymentsRequest generates a "aws/request.Request" representing the client's request for the BatchGetDeployments operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See BatchGetDeployments for more information on using the BatchGetDeployments API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the BatchGetDeploymentsRequest method.
req, resp := client.BatchGetDeploymentsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetDeployments

func (*CodeDeploy) BatchGetDeploymentsWithContext

func (c *CodeDeploy) BatchGetDeploymentsWithContext(ctx aws.Context, input *BatchGetDeploymentsInput, opts ...request.Option) (*BatchGetDeploymentsOutput, error)

BatchGetDeploymentsWithContext is the same as BatchGetDeployments with the addition of the ability to pass a context and additional request options.

See BatchGetDeployments for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) BatchGetOnPremisesInstances

func (c *CodeDeploy) BatchGetOnPremisesInstances(input *BatchGetOnPremisesInstancesInput) (*BatchGetOnPremisesInstancesOutput, error)

BatchGetOnPremisesInstances API operation for AWS CodeDeploy.

Gets information about one or more on-premises instances. The maximum number of on-premises instances that can be returned is 25.

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 CodeDeploy's API operation BatchGetOnPremisesInstances for usage and error information.

Returned Error Types:

  • InstanceNameRequiredException An on-premises instance name was not specified.

  • InvalidInstanceNameException The on-premises instance name was specified in an invalid format.

  • BatchLimitExceededException The maximum number of names or IDs allowed for this request (100) was exceeded.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetOnPremisesInstances

func (*CodeDeploy) BatchGetOnPremisesInstancesRequest

func (c *CodeDeploy) BatchGetOnPremisesInstancesRequest(input *BatchGetOnPremisesInstancesInput) (req *request.Request, output *BatchGetOnPremisesInstancesOutput)

BatchGetOnPremisesInstancesRequest generates a "aws/request.Request" representing the client's request for the BatchGetOnPremisesInstances operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See BatchGetOnPremisesInstances for more information on using the BatchGetOnPremisesInstances API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the BatchGetOnPremisesInstancesRequest method.
req, resp := client.BatchGetOnPremisesInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetOnPremisesInstances

func (*CodeDeploy) BatchGetOnPremisesInstancesWithContext

func (c *CodeDeploy) BatchGetOnPremisesInstancesWithContext(ctx aws.Context, input *BatchGetOnPremisesInstancesInput, opts ...request.Option) (*BatchGetOnPremisesInstancesOutput, error)

BatchGetOnPremisesInstancesWithContext is the same as BatchGetOnPremisesInstances with the addition of the ability to pass a context and additional request options.

See BatchGetOnPremisesInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ContinueDeployment

func (c *CodeDeploy) ContinueDeployment(input *ContinueDeploymentInput) (*ContinueDeploymentOutput, error)

ContinueDeployment API operation for AWS CodeDeploy.

For a blue/green deployment, starts the process of rerouting traffic from instances in the original environment to instances in the replacement environment without waiting for a specified wait time to elapse. (Traffic rerouting, which is achieved by registering instances in the replacement environment with the load balancer, can start as soon as all instances have a status of Ready.)

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 CodeDeploy's API operation ContinueDeployment for usage and error information.

Returned Error Types:

  • DeploymentIdRequiredException At least one deployment ID must be specified.

  • DeploymentDoesNotExistException The deployment with the user or Amazon Web Services account does not exist.

  • DeploymentAlreadyCompletedException The deployment is already complete.

  • InvalidDeploymentIdException At least one of the deployment IDs was specified in an invalid format.

  • DeploymentIsNotInReadyStateException The deployment does not have a status of Ready and can't continue yet.

  • UnsupportedActionForDeploymentTypeException A call was submitted that is not supported for the specified deployment type.

  • InvalidDeploymentWaitTypeException The wait type is invalid.

  • InvalidDeploymentStatusException The specified deployment status doesn't exist or cannot be determined.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ContinueDeployment

func (*CodeDeploy) ContinueDeploymentRequest

func (c *CodeDeploy) ContinueDeploymentRequest(input *ContinueDeploymentInput) (req *request.Request, output *ContinueDeploymentOutput)

ContinueDeploymentRequest generates a "aws/request.Request" representing the client's request for the ContinueDeployment operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ContinueDeployment for more information on using the ContinueDeployment API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ContinueDeploymentRequest method.
req, resp := client.ContinueDeploymentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ContinueDeployment

func (*CodeDeploy) ContinueDeploymentWithContext

func (c *CodeDeploy) ContinueDeploymentWithContext(ctx aws.Context, input *ContinueDeploymentInput, opts ...request.Option) (*ContinueDeploymentOutput, error)

ContinueDeploymentWithContext is the same as ContinueDeployment with the addition of the ability to pass a context and additional request options.

See ContinueDeployment for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) CreateApplication

func (c *CodeDeploy) CreateApplication(input *CreateApplicationInput) (*CreateApplicationOutput, error)

CreateApplication API operation for AWS CodeDeploy.

Creates 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 CodeDeploy's API operation CreateApplication for usage and error information.

Returned Error Types:

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • ApplicationAlreadyExistsException An application with the specified name with the user or Amazon Web Services account already exists.

  • ApplicationLimitExceededException More applications were attempted to be created than are allowed.

  • InvalidComputePlatformException The computePlatform is invalid. The computePlatform should be Lambda, Server, or ECS.

  • InvalidTagsToAddException The specified tags are not valid.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/CreateApplication

func (*CodeDeploy) CreateApplicationRequest

func (c *CodeDeploy) CreateApplicationRequest(input *CreateApplicationInput) (req *request.Request, output *CreateApplicationOutput)

CreateApplicationRequest generates a "aws/request.Request" representing the client's request for the CreateApplication operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateApplication for more information on using the CreateApplication API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateApplicationRequest method.
req, resp := client.CreateApplicationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/CreateApplication

func (*CodeDeploy) CreateApplicationWithContext

func (c *CodeDeploy) CreateApplicationWithContext(ctx aws.Context, input *CreateApplicationInput, opts ...request.Option) (*CreateApplicationOutput, error)

CreateApplicationWithContext is the same as CreateApplication with the addition of the ability to pass a context and additional request options.

See CreateApplication for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) CreateDeployment

func (c *CodeDeploy) CreateDeployment(input *CreateDeploymentInput) (*CreateDeploymentOutput, error)

CreateDeployment API operation for AWS CodeDeploy.

Deploys an application revision through the specified deployment group.

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 CodeDeploy's API operation CreateDeployment for usage and error information.

Returned Error Types:

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • DeploymentGroupNameRequiredException The deployment group name was not specified.

  • InvalidDeploymentGroupNameException The deployment group name was specified in an invalid format.

  • DeploymentGroupDoesNotExistException The named deployment group with the user or Amazon Web Services account does not exist.

  • RevisionRequiredException The revision ID was not specified.

  • RevisionDoesNotExistException The named revision does not exist with the user or Amazon Web Services account.

  • InvalidRevisionException The revision was specified in an invalid format.

  • InvalidDeploymentConfigNameException The deployment configuration name was specified in an invalid format.

  • DeploymentConfigDoesNotExistException The deployment configuration does not exist with the user or Amazon Web Services account.

  • DescriptionTooLongException The description is too long.

  • DeploymentLimitExceededException The number of allowed deployments was exceeded.

  • InvalidTargetInstancesException The target instance configuration is invalid. Possible causes include:

  • Configuration data for target instances was entered for an in-place deployment.

  • The limit of 10 tags for a tag type was exceeded.

  • The combined length of the tag names exceeded the limit.

  • A specified tag is not currently applied to any instances.

  • InvalidAlarmConfigException The format of the alarm configuration is invalid. Possible causes include:

  • The alarm list is null.

  • The alarm object is null.

  • The alarm name is empty or null or exceeds the limit of 255 characters.

  • Two alarms with the same name have been specified.

  • The alarm configuration is enabled, but the alarm list is empty.

  • AlarmsLimitExceededException The maximum number of alarms for a deployment group (10) was exceeded.

  • InvalidAutoRollbackConfigException The automatic rollback configuration was specified in an invalid format. For example, automatic rollback is enabled, but an invalid triggering event type or no event types were listed.

  • InvalidLoadBalancerInfoException An invalid load balancer name, or no load balancer name, was specified.

  • InvalidFileExistsBehaviorException An invalid fileExistsBehavior option was specified to determine how CodeDeploy handles files or directories that already exist in a deployment target location, but weren't part of the previous successful deployment. Valid values include "DISALLOW," "OVERWRITE," and "RETAIN."

  • InvalidRoleException The service role ARN was specified in an invalid format. Or, if an Auto Scaling group was specified, the specified service role does not grant the appropriate permissions to Amazon EC2 Auto Scaling.

  • InvalidAutoScalingGroupException The Auto Scaling group was specified in an invalid format or does not exist.

  • ThrottlingException An API function was called too frequently.

  • InvalidUpdateOutdatedInstancesOnlyValueException The UpdateOutdatedInstancesOnly value is invalid. For Lambda deployments, false is expected. For EC2/On-premises deployments, true or false is expected.

  • InvalidIgnoreApplicationStopFailuresValueException The IgnoreApplicationStopFailures value is invalid. For Lambda deployments, false is expected. For EC2/On-premises deployments, true or false is expected.

  • InvalidGitHubAccountTokenException The GitHub token is not valid.

  • InvalidTrafficRoutingConfigurationException The configuration that specifies how traffic is routed during a deployment is invalid.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/CreateDeployment

func (*CodeDeploy) CreateDeploymentConfig

func (c *CodeDeploy) CreateDeploymentConfig(input *CreateDeploymentConfigInput) (*CreateDeploymentConfigOutput, error)

CreateDeploymentConfig API operation for AWS CodeDeploy.

Creates a deployment configuration.

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 CodeDeploy's API operation CreateDeploymentConfig for usage and error information.

Returned Error Types:

  • InvalidDeploymentConfigNameException The deployment configuration name was specified in an invalid format.

  • DeploymentConfigNameRequiredException The deployment configuration name was not specified.

  • DeploymentConfigAlreadyExistsException A deployment configuration with the specified name with the user or Amazon Web Services account already exists.

  • InvalidMinimumHealthyHostValueException The minimum healthy instance value was specified in an invalid format.

  • DeploymentConfigLimitExceededException The deployment configurations limit was exceeded.

  • InvalidComputePlatformException The computePlatform is invalid. The computePlatform should be Lambda, Server, or ECS.

  • InvalidTrafficRoutingConfigurationException The configuration that specifies how traffic is routed during a deployment is invalid.

  • InvalidZonalDeploymentConfigurationException The ZonalConfig object is not valid.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/CreateDeploymentConfig

func (*CodeDeploy) CreateDeploymentConfigRequest

func (c *CodeDeploy) CreateDeploymentConfigRequest(input *CreateDeploymentConfigInput) (req *request.Request, output *CreateDeploymentConfigOutput)

CreateDeploymentConfigRequest generates a "aws/request.Request" representing the client's request for the CreateDeploymentConfig operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDeploymentConfig for more information on using the CreateDeploymentConfig API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDeploymentConfigRequest method.
req, resp := client.CreateDeploymentConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/CreateDeploymentConfig

func (*CodeDeploy) CreateDeploymentConfigWithContext

func (c *CodeDeploy) CreateDeploymentConfigWithContext(ctx aws.Context, input *CreateDeploymentConfigInput, opts ...request.Option) (*CreateDeploymentConfigOutput, error)

CreateDeploymentConfigWithContext is the same as CreateDeploymentConfig with the addition of the ability to pass a context and additional request options.

See CreateDeploymentConfig for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) CreateDeploymentGroup

func (c *CodeDeploy) CreateDeploymentGroup(input *CreateDeploymentGroupInput) (*CreateDeploymentGroupOutput, error)

CreateDeploymentGroup API operation for AWS CodeDeploy.

Creates a deployment group to which application revisions are deployed.

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 CodeDeploy's API operation CreateDeploymentGroup for usage and error information.

Returned Error Types:

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • DeploymentGroupNameRequiredException The deployment group name was not specified.

  • InvalidDeploymentGroupNameException The deployment group name was specified in an invalid format.

  • DeploymentGroupAlreadyExistsException A deployment group with the specified name with the user or Amazon Web Services account already exists.

  • InvalidEC2TagException The tag was specified in an invalid format.

  • InvalidTagException The tag was specified in an invalid format.

  • InvalidAutoScalingGroupException The Auto Scaling group was specified in an invalid format or does not exist.

  • InvalidDeploymentConfigNameException The deployment configuration name was specified in an invalid format.

  • DeploymentConfigDoesNotExistException The deployment configuration does not exist with the user or Amazon Web Services account.

  • RoleRequiredException The role ID was not specified.

  • InvalidRoleException The service role ARN was specified in an invalid format. Or, if an Auto Scaling group was specified, the specified service role does not grant the appropriate permissions to Amazon EC2 Auto Scaling.

  • DeploymentGroupLimitExceededException The deployment groups limit was exceeded.

  • LifecycleHookLimitExceededException The limit for lifecycle hooks was exceeded.

  • InvalidTriggerConfigException The trigger was specified in an invalid format.

  • TriggerTargetsLimitExceededException The maximum allowed number of triggers was exceeded.

  • InvalidAlarmConfigException The format of the alarm configuration is invalid. Possible causes include:

  • The alarm list is null.

  • The alarm object is null.

  • The alarm name is empty or null or exceeds the limit of 255 characters.

  • Two alarms with the same name have been specified.

  • The alarm configuration is enabled, but the alarm list is empty.

  • AlarmsLimitExceededException The maximum number of alarms for a deployment group (10) was exceeded.

  • InvalidAutoRollbackConfigException The automatic rollback configuration was specified in an invalid format. For example, automatic rollback is enabled, but an invalid triggering event type or no event types were listed.

  • InvalidLoadBalancerInfoException An invalid load balancer name, or no load balancer name, was specified.

  • InvalidDeploymentStyleException An invalid deployment style was specified. Valid deployment types include "IN_PLACE" and "BLUE_GREEN." Valid deployment options include "WITH_TRAFFIC_CONTROL" and "WITHOUT_TRAFFIC_CONTROL."

  • InvalidBlueGreenDeploymentConfigurationException The configuration for the blue/green deployment group was provided in an invalid format. For information about deployment configuration format, see CreateDeploymentConfig.

  • InvalidEC2TagCombinationException A call was submitted that specified both Ec2TagFilters and Ec2TagSet, but only one of these data types can be used in a single call.

  • InvalidOnPremisesTagCombinationException A call was submitted that specified both OnPremisesTagFilters and OnPremisesTagSet, but only one of these data types can be used in a single call.

  • TagSetListLimitExceededException The number of tag groups included in the tag set list exceeded the maximum allowed limit of 3.

  • InvalidInputException The input was specified in an invalid format.

  • ThrottlingException An API function was called too frequently.

  • InvalidECSServiceException The Amazon ECS service identifier is not valid.

  • InvalidTargetGroupPairException A target group pair associated with this deployment is not valid.

  • ECSServiceMappingLimitExceededException The Amazon ECS service is associated with more than one deployment groups. An Amazon ECS service can be associated with only one deployment group.

  • InvalidTagsToAddException The specified tags are not valid.

  • InvalidTrafficRoutingConfigurationException The configuration that specifies how traffic is routed during a deployment is invalid.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/CreateDeploymentGroup

func (*CodeDeploy) CreateDeploymentGroupRequest

func (c *CodeDeploy) CreateDeploymentGroupRequest(input *CreateDeploymentGroupInput) (req *request.Request, output *CreateDeploymentGroupOutput)

CreateDeploymentGroupRequest generates a "aws/request.Request" representing the client's request for the CreateDeploymentGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDeploymentGroup for more information on using the CreateDeploymentGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDeploymentGroupRequest method.
req, resp := client.CreateDeploymentGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/CreateDeploymentGroup

func (*CodeDeploy) CreateDeploymentGroupWithContext

func (c *CodeDeploy) CreateDeploymentGroupWithContext(ctx aws.Context, input *CreateDeploymentGroupInput, opts ...request.Option) (*CreateDeploymentGroupOutput, error)

CreateDeploymentGroupWithContext is the same as CreateDeploymentGroup with the addition of the ability to pass a context and additional request options.

See CreateDeploymentGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) CreateDeploymentRequest

func (c *CodeDeploy) CreateDeploymentRequest(input *CreateDeploymentInput) (req *request.Request, output *CreateDeploymentOutput)

CreateDeploymentRequest generates a "aws/request.Request" representing the client's request for the CreateDeployment operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDeployment for more information on using the CreateDeployment API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDeploymentRequest method.
req, resp := client.CreateDeploymentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/CreateDeployment

func (*CodeDeploy) CreateDeploymentWithContext

func (c *CodeDeploy) CreateDeploymentWithContext(ctx aws.Context, input *CreateDeploymentInput, opts ...request.Option) (*CreateDeploymentOutput, error)

CreateDeploymentWithContext is the same as CreateDeployment with the addition of the ability to pass a context and additional request options.

See CreateDeployment for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) DeleteApplication

func (c *CodeDeploy) DeleteApplication(input *DeleteApplicationInput) (*DeleteApplicationOutput, error)

DeleteApplication API operation for AWS CodeDeploy.

Deletes 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 CodeDeploy's API operation DeleteApplication for usage and error information.

Returned Error Types:

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • InvalidRoleException The service role ARN was specified in an invalid format. Or, if an Auto Scaling group was specified, the specified service role does not grant the appropriate permissions to Amazon EC2 Auto Scaling.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeleteApplication

func (*CodeDeploy) DeleteApplicationRequest

func (c *CodeDeploy) DeleteApplicationRequest(input *DeleteApplicationInput) (req *request.Request, output *DeleteApplicationOutput)

DeleteApplicationRequest generates a "aws/request.Request" representing the client's request for the DeleteApplication operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteApplication for more information on using the DeleteApplication API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteApplicationRequest method.
req, resp := client.DeleteApplicationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeleteApplication

func (*CodeDeploy) DeleteApplicationWithContext

func (c *CodeDeploy) DeleteApplicationWithContext(ctx aws.Context, input *DeleteApplicationInput, opts ...request.Option) (*DeleteApplicationOutput, error)

DeleteApplicationWithContext is the same as DeleteApplication with the addition of the ability to pass a context and additional request options.

See DeleteApplication for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) DeleteDeploymentConfig

func (c *CodeDeploy) DeleteDeploymentConfig(input *DeleteDeploymentConfigInput) (*DeleteDeploymentConfigOutput, error)

DeleteDeploymentConfig API operation for AWS CodeDeploy.

Deletes a deployment configuration.

A deployment configuration cannot be deleted if it is currently in use. Predefined configurations cannot be deleted.

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 CodeDeploy's API operation DeleteDeploymentConfig for usage and error information.

Returned Error Types:

  • InvalidDeploymentConfigNameException The deployment configuration name was specified in an invalid format.

  • DeploymentConfigNameRequiredException The deployment configuration name was not specified.

  • DeploymentConfigInUseException The deployment configuration is still in use.

  • InvalidOperationException An invalid operation was detected.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeleteDeploymentConfig

func (*CodeDeploy) DeleteDeploymentConfigRequest

func (c *CodeDeploy) DeleteDeploymentConfigRequest(input *DeleteDeploymentConfigInput) (req *request.Request, output *DeleteDeploymentConfigOutput)

DeleteDeploymentConfigRequest generates a "aws/request.Request" representing the client's request for the DeleteDeploymentConfig operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDeploymentConfig for more information on using the DeleteDeploymentConfig API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDeploymentConfigRequest method.
req, resp := client.DeleteDeploymentConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeleteDeploymentConfig

func (*CodeDeploy) DeleteDeploymentConfigWithContext

func (c *CodeDeploy) DeleteDeploymentConfigWithContext(ctx aws.Context, input *DeleteDeploymentConfigInput, opts ...request.Option) (*DeleteDeploymentConfigOutput, error)

DeleteDeploymentConfigWithContext is the same as DeleteDeploymentConfig with the addition of the ability to pass a context and additional request options.

See DeleteDeploymentConfig for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) DeleteDeploymentGroup

func (c *CodeDeploy) DeleteDeploymentGroup(input *DeleteDeploymentGroupInput) (*DeleteDeploymentGroupOutput, error)

DeleteDeploymentGroup API operation for AWS CodeDeploy.

Deletes a deployment group.

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 CodeDeploy's API operation DeleteDeploymentGroup for usage and error information.

Returned Error Types:

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • DeploymentGroupNameRequiredException The deployment group name was not specified.

  • InvalidDeploymentGroupNameException The deployment group name was specified in an invalid format.

  • InvalidRoleException The service role ARN was specified in an invalid format. Or, if an Auto Scaling group was specified, the specified service role does not grant the appropriate permissions to Amazon EC2 Auto Scaling.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeleteDeploymentGroup

func (*CodeDeploy) DeleteDeploymentGroupRequest

func (c *CodeDeploy) DeleteDeploymentGroupRequest(input *DeleteDeploymentGroupInput) (req *request.Request, output *DeleteDeploymentGroupOutput)

DeleteDeploymentGroupRequest generates a "aws/request.Request" representing the client's request for the DeleteDeploymentGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDeploymentGroup for more information on using the DeleteDeploymentGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDeploymentGroupRequest method.
req, resp := client.DeleteDeploymentGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeleteDeploymentGroup

func (*CodeDeploy) DeleteDeploymentGroupWithContext

func (c *CodeDeploy) DeleteDeploymentGroupWithContext(ctx aws.Context, input *DeleteDeploymentGroupInput, opts ...request.Option) (*DeleteDeploymentGroupOutput, error)

DeleteDeploymentGroupWithContext is the same as DeleteDeploymentGroup with the addition of the ability to pass a context and additional request options.

See DeleteDeploymentGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) DeleteGitHubAccountToken

func (c *CodeDeploy) DeleteGitHubAccountToken(input *DeleteGitHubAccountTokenInput) (*DeleteGitHubAccountTokenOutput, error)

DeleteGitHubAccountToken API operation for AWS CodeDeploy.

Deletes a GitHub account connection.

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 CodeDeploy's API operation DeleteGitHubAccountToken for usage and error information.

Returned Error Types:

  • GitHubAccountTokenNameRequiredException The call is missing a required GitHub account connection name.

  • GitHubAccountTokenDoesNotExistException No GitHub account connection exists with the named specified in the call.

  • InvalidGitHubAccountTokenNameException The format of the specified GitHub account connection name is invalid.

  • ResourceValidationException The specified resource could not be validated.

  • OperationNotSupportedException The API used does not support the deployment.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeleteGitHubAccountToken

func (*CodeDeploy) DeleteGitHubAccountTokenRequest

func (c *CodeDeploy) DeleteGitHubAccountTokenRequest(input *DeleteGitHubAccountTokenInput) (req *request.Request, output *DeleteGitHubAccountTokenOutput)

DeleteGitHubAccountTokenRequest generates a "aws/request.Request" representing the client's request for the DeleteGitHubAccountToken operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteGitHubAccountToken for more information on using the DeleteGitHubAccountToken API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteGitHubAccountTokenRequest method.
req, resp := client.DeleteGitHubAccountTokenRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeleteGitHubAccountToken

func (*CodeDeploy) DeleteGitHubAccountTokenWithContext

func (c *CodeDeploy) DeleteGitHubAccountTokenWithContext(ctx aws.Context, input *DeleteGitHubAccountTokenInput, opts ...request.Option) (*DeleteGitHubAccountTokenOutput, error)

DeleteGitHubAccountTokenWithContext is the same as DeleteGitHubAccountToken with the addition of the ability to pass a context and additional request options.

See DeleteGitHubAccountToken for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) DeleteResourcesByExternalId

func (c *CodeDeploy) DeleteResourcesByExternalId(input *DeleteResourcesByExternalIdInput) (*DeleteResourcesByExternalIdOutput, error)

DeleteResourcesByExternalId API operation for AWS CodeDeploy.

Deletes resources linked to an external ID. This action only applies if you have configured blue/green deployments through CloudFormation.

It is not necessary to call this action directly. CloudFormation calls it on your behalf when it needs to delete stack resources. This action is offered publicly in case you need to delete resources to comply with General Data Protection Regulation (GDPR) requirements.

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 CodeDeploy's API operation DeleteResourcesByExternalId for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeleteResourcesByExternalId

func (*CodeDeploy) DeleteResourcesByExternalIdRequest

func (c *CodeDeploy) DeleteResourcesByExternalIdRequest(input *DeleteResourcesByExternalIdInput) (req *request.Request, output *DeleteResourcesByExternalIdOutput)

DeleteResourcesByExternalIdRequest generates a "aws/request.Request" representing the client's request for the DeleteResourcesByExternalId operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteResourcesByExternalId for more information on using the DeleteResourcesByExternalId API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteResourcesByExternalIdRequest method.
req, resp := client.DeleteResourcesByExternalIdRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeleteResourcesByExternalId

func (*CodeDeploy) DeleteResourcesByExternalIdWithContext

func (c *CodeDeploy) DeleteResourcesByExternalIdWithContext(ctx aws.Context, input *DeleteResourcesByExternalIdInput, opts ...request.Option) (*DeleteResourcesByExternalIdOutput, error)

DeleteResourcesByExternalIdWithContext is the same as DeleteResourcesByExternalId with the addition of the ability to pass a context and additional request options.

See DeleteResourcesByExternalId for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) DeregisterOnPremisesInstance

func (c *CodeDeploy) DeregisterOnPremisesInstance(input *DeregisterOnPremisesInstanceInput) (*DeregisterOnPremisesInstanceOutput, error)

DeregisterOnPremisesInstance API operation for AWS CodeDeploy.

Deregisters an on-premises instance.

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 CodeDeploy's API operation DeregisterOnPremisesInstance for usage and error information.

Returned Error Types:

  • InstanceNameRequiredException An on-premises instance name was not specified.

  • InvalidInstanceNameException The on-premises instance name was specified in an invalid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeregisterOnPremisesInstance

func (*CodeDeploy) DeregisterOnPremisesInstanceRequest

func (c *CodeDeploy) DeregisterOnPremisesInstanceRequest(input *DeregisterOnPremisesInstanceInput) (req *request.Request, output *DeregisterOnPremisesInstanceOutput)

DeregisterOnPremisesInstanceRequest generates a "aws/request.Request" representing the client's request for the DeregisterOnPremisesInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeregisterOnPremisesInstance for more information on using the DeregisterOnPremisesInstance API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeregisterOnPremisesInstanceRequest method.
req, resp := client.DeregisterOnPremisesInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeregisterOnPremisesInstance

func (*CodeDeploy) DeregisterOnPremisesInstanceWithContext

func (c *CodeDeploy) DeregisterOnPremisesInstanceWithContext(ctx aws.Context, input *DeregisterOnPremisesInstanceInput, opts ...request.Option) (*DeregisterOnPremisesInstanceOutput, error)

DeregisterOnPremisesInstanceWithContext is the same as DeregisterOnPremisesInstance with the addition of the ability to pass a context and additional request options.

See DeregisterOnPremisesInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) GetApplication

func (c *CodeDeploy) GetApplication(input *GetApplicationInput) (*GetApplicationOutput, error)

GetApplication API operation for AWS CodeDeploy.

Gets information about 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 CodeDeploy's API operation GetApplication for usage and error information.

Returned Error Types:

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetApplication

func (*CodeDeploy) GetApplicationRequest

func (c *CodeDeploy) GetApplicationRequest(input *GetApplicationInput) (req *request.Request, output *GetApplicationOutput)

GetApplicationRequest generates a "aws/request.Request" representing the client's request for the GetApplication operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetApplication for more information on using the GetApplication API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetApplicationRequest method.
req, resp := client.GetApplicationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetApplication

func (*CodeDeploy) GetApplicationRevision

func (c *CodeDeploy) GetApplicationRevision(input *GetApplicationRevisionInput) (*GetApplicationRevisionOutput, error)

GetApplicationRevision API operation for AWS CodeDeploy.

Gets information about an application revision.

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 CodeDeploy's API operation GetApplicationRevision for usage and error information.

Returned Error Types:

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • RevisionDoesNotExistException The named revision does not exist with the user or Amazon Web Services account.

  • RevisionRequiredException The revision ID was not specified.

  • InvalidRevisionException The revision was specified in an invalid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetApplicationRevision

func (*CodeDeploy) GetApplicationRevisionRequest

func (c *CodeDeploy) GetApplicationRevisionRequest(input *GetApplicationRevisionInput) (req *request.Request, output *GetApplicationRevisionOutput)

GetApplicationRevisionRequest generates a "aws/request.Request" representing the client's request for the GetApplicationRevision operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetApplicationRevision for more information on using the GetApplicationRevision API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetApplicationRevisionRequest method.
req, resp := client.GetApplicationRevisionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetApplicationRevision

func (*CodeDeploy) GetApplicationRevisionWithContext

func (c *CodeDeploy) GetApplicationRevisionWithContext(ctx aws.Context, input *GetApplicationRevisionInput, opts ...request.Option) (*GetApplicationRevisionOutput, error)

GetApplicationRevisionWithContext is the same as GetApplicationRevision with the addition of the ability to pass a context and additional request options.

See GetApplicationRevision for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) GetApplicationWithContext

func (c *CodeDeploy) GetApplicationWithContext(ctx aws.Context, input *GetApplicationInput, opts ...request.Option) (*GetApplicationOutput, error)

GetApplicationWithContext is the same as GetApplication with the addition of the ability to pass a context and additional request options.

See GetApplication for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) GetDeployment

func (c *CodeDeploy) GetDeployment(input *GetDeploymentInput) (*GetDeploymentOutput, error)

GetDeployment API operation for AWS CodeDeploy.

Gets information about a deployment.

The content property of the appSpecContent object in the returned revision is always null. Use GetApplicationRevision and the sha256 property of the returned appSpecContent object to get the content of the deployment’s AppSpec file.

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 CodeDeploy's API operation GetDeployment for usage and error information.

Returned Error Types:

  • DeploymentIdRequiredException At least one deployment ID must be specified.

  • InvalidDeploymentIdException At least one of the deployment IDs was specified in an invalid format.

  • DeploymentDoesNotExistException The deployment with the user or Amazon Web Services account does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetDeployment

func (*CodeDeploy) GetDeploymentConfig

func (c *CodeDeploy) GetDeploymentConfig(input *GetDeploymentConfigInput) (*GetDeploymentConfigOutput, error)

GetDeploymentConfig API operation for AWS CodeDeploy.

Gets information about a deployment configuration.

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 CodeDeploy's API operation GetDeploymentConfig for usage and error information.

Returned Error Types:

  • InvalidDeploymentConfigNameException The deployment configuration name was specified in an invalid format.

  • DeploymentConfigNameRequiredException The deployment configuration name was not specified.

  • DeploymentConfigDoesNotExistException The deployment configuration does not exist with the user or Amazon Web Services account.

  • InvalidComputePlatformException The computePlatform is invalid. The computePlatform should be Lambda, Server, or ECS.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetDeploymentConfig

func (*CodeDeploy) GetDeploymentConfigRequest

func (c *CodeDeploy) GetDeploymentConfigRequest(input *GetDeploymentConfigInput) (req *request.Request, output *GetDeploymentConfigOutput)

GetDeploymentConfigRequest generates a "aws/request.Request" representing the client's request for the GetDeploymentConfig operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetDeploymentConfig for more information on using the GetDeploymentConfig API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetDeploymentConfigRequest method.
req, resp := client.GetDeploymentConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetDeploymentConfig

func (*CodeDeploy) GetDeploymentConfigWithContext

func (c *CodeDeploy) GetDeploymentConfigWithContext(ctx aws.Context, input *GetDeploymentConfigInput, opts ...request.Option) (*GetDeploymentConfigOutput, error)

GetDeploymentConfigWithContext is the same as GetDeploymentConfig with the addition of the ability to pass a context and additional request options.

See GetDeploymentConfig for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) GetDeploymentGroup

func (c *CodeDeploy) GetDeploymentGroup(input *GetDeploymentGroupInput) (*GetDeploymentGroupOutput, error)

GetDeploymentGroup API operation for AWS CodeDeploy.

Gets information about a deployment group.

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 CodeDeploy's API operation GetDeploymentGroup for usage and error information.

Returned Error Types:

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • DeploymentGroupNameRequiredException The deployment group name was not specified.

  • InvalidDeploymentGroupNameException The deployment group name was specified in an invalid format.

  • DeploymentGroupDoesNotExistException The named deployment group with the user or Amazon Web Services account does not exist.

  • DeploymentConfigDoesNotExistException The deployment configuration does not exist with the user or Amazon Web Services account.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetDeploymentGroup

func (*CodeDeploy) GetDeploymentGroupRequest

func (c *CodeDeploy) GetDeploymentGroupRequest(input *GetDeploymentGroupInput) (req *request.Request, output *GetDeploymentGroupOutput)

GetDeploymentGroupRequest generates a "aws/request.Request" representing the client's request for the GetDeploymentGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetDeploymentGroup for more information on using the GetDeploymentGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetDeploymentGroupRequest method.
req, resp := client.GetDeploymentGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetDeploymentGroup

func (*CodeDeploy) GetDeploymentGroupWithContext

func (c *CodeDeploy) GetDeploymentGroupWithContext(ctx aws.Context, input *GetDeploymentGroupInput, opts ...request.Option) (*GetDeploymentGroupOutput, error)

GetDeploymentGroupWithContext is the same as GetDeploymentGroup with the addition of the ability to pass a context and additional request options.

See GetDeploymentGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) GetDeploymentInstance

func (c *CodeDeploy) GetDeploymentInstance(input *GetDeploymentInstanceInput) (*GetDeploymentInstanceOutput, error)

GetDeploymentInstance API operation for AWS CodeDeploy.

Gets information about an instance as part of a deployment.

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 CodeDeploy's API operation GetDeploymentInstance for usage and error information.

Returned Error Types:

  • DeploymentIdRequiredException At least one deployment ID must be specified.

  • DeploymentDoesNotExistException The deployment with the user or Amazon Web Services account does not exist.

  • InstanceIdRequiredException The instance ID was not specified.

  • InvalidDeploymentIdException At least one of the deployment IDs was specified in an invalid format.

  • InstanceDoesNotExistException The specified instance does not exist in the deployment group.

  • InvalidInstanceNameException The on-premises instance name was specified in an invalid format.

  • InvalidComputePlatformException The computePlatform is invalid. The computePlatform should be Lambda, Server, or ECS.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetDeploymentInstance

Deprecated: This operation is deprecated, use GetDeploymentTarget instead.

func (*CodeDeploy) GetDeploymentInstanceRequest

func (c *CodeDeploy) GetDeploymentInstanceRequest(input *GetDeploymentInstanceInput) (req *request.Request, output *GetDeploymentInstanceOutput)

GetDeploymentInstanceRequest generates a "aws/request.Request" representing the client's request for the GetDeploymentInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetDeploymentInstance for more information on using the GetDeploymentInstance API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetDeploymentInstanceRequest method.
req, resp := client.GetDeploymentInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetDeploymentInstance

Deprecated: This operation is deprecated, use GetDeploymentTarget instead.

func (*CodeDeploy) GetDeploymentInstanceWithContext

func (c *CodeDeploy) GetDeploymentInstanceWithContext(ctx aws.Context, input *GetDeploymentInstanceInput, opts ...request.Option) (*GetDeploymentInstanceOutput, error)

GetDeploymentInstanceWithContext is the same as GetDeploymentInstance with the addition of the ability to pass a context and additional request options.

See GetDeploymentInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

Deprecated: This operation is deprecated, use GetDeploymentTarget instead.

func (*CodeDeploy) GetDeploymentRequest

func (c *CodeDeploy) GetDeploymentRequest(input *GetDeploymentInput) (req *request.Request, output *GetDeploymentOutput)

GetDeploymentRequest generates a "aws/request.Request" representing the client's request for the GetDeployment operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetDeployment for more information on using the GetDeployment API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetDeploymentRequest method.
req, resp := client.GetDeploymentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetDeployment

func (*CodeDeploy) GetDeploymentTarget

func (c *CodeDeploy) GetDeploymentTarget(input *GetDeploymentTargetInput) (*GetDeploymentTargetOutput, error)

GetDeploymentTarget API operation for AWS CodeDeploy.

Returns information about a deployment target.

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 CodeDeploy's API operation GetDeploymentTarget for usage and error information.

Returned Error Types:

  • InvalidDeploymentIdException At least one of the deployment IDs was specified in an invalid format.

  • DeploymentIdRequiredException At least one deployment ID must be specified.

  • DeploymentDoesNotExistException The deployment with the user or Amazon Web Services account does not exist.

  • DeploymentNotStartedException The specified deployment has not started.

  • DeploymentTargetIdRequiredException A deployment target ID was not provided.

  • InvalidDeploymentTargetIdException The target ID provided was not valid.

  • DeploymentTargetDoesNotExistException The provided target ID does not belong to the attempted deployment.

  • InvalidInstanceNameException The on-premises instance name was specified in an invalid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetDeploymentTarget

func (*CodeDeploy) GetDeploymentTargetRequest

func (c *CodeDeploy) GetDeploymentTargetRequest(input *GetDeploymentTargetInput) (req *request.Request, output *GetDeploymentTargetOutput)

GetDeploymentTargetRequest generates a "aws/request.Request" representing the client's request for the GetDeploymentTarget operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetDeploymentTarget for more information on using the GetDeploymentTarget API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetDeploymentTargetRequest method.
req, resp := client.GetDeploymentTargetRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetDeploymentTarget

func (*CodeDeploy) GetDeploymentTargetWithContext

func (c *CodeDeploy) GetDeploymentTargetWithContext(ctx aws.Context, input *GetDeploymentTargetInput, opts ...request.Option) (*GetDeploymentTargetOutput, error)

GetDeploymentTargetWithContext is the same as GetDeploymentTarget with the addition of the ability to pass a context and additional request options.

See GetDeploymentTarget for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) GetDeploymentWithContext

func (c *CodeDeploy) GetDeploymentWithContext(ctx aws.Context, input *GetDeploymentInput, opts ...request.Option) (*GetDeploymentOutput, error)

GetDeploymentWithContext is the same as GetDeployment with the addition of the ability to pass a context and additional request options.

See GetDeployment for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) GetOnPremisesInstance

func (c *CodeDeploy) GetOnPremisesInstance(input *GetOnPremisesInstanceInput) (*GetOnPremisesInstanceOutput, error)

GetOnPremisesInstance API operation for AWS CodeDeploy.

Gets information about an on-premises instance.

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 CodeDeploy's API operation GetOnPremisesInstance for usage and error information.

Returned Error Types:

  • InstanceNameRequiredException An on-premises instance name was not specified.

  • InstanceNotRegisteredException The specified on-premises instance is not registered.

  • InvalidInstanceNameException The on-premises instance name was specified in an invalid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetOnPremisesInstance

func (*CodeDeploy) GetOnPremisesInstanceRequest

func (c *CodeDeploy) GetOnPremisesInstanceRequest(input *GetOnPremisesInstanceInput) (req *request.Request, output *GetOnPremisesInstanceOutput)

GetOnPremisesInstanceRequest generates a "aws/request.Request" representing the client's request for the GetOnPremisesInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetOnPremisesInstance for more information on using the GetOnPremisesInstance API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetOnPremisesInstanceRequest method.
req, resp := client.GetOnPremisesInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetOnPremisesInstance

func (*CodeDeploy) GetOnPremisesInstanceWithContext

func (c *CodeDeploy) GetOnPremisesInstanceWithContext(ctx aws.Context, input *GetOnPremisesInstanceInput, opts ...request.Option) (*GetOnPremisesInstanceOutput, error)

GetOnPremisesInstanceWithContext is the same as GetOnPremisesInstance with the addition of the ability to pass a context and additional request options.

See GetOnPremisesInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListApplicationRevisions

func (c *CodeDeploy) ListApplicationRevisions(input *ListApplicationRevisionsInput) (*ListApplicationRevisionsOutput, error)

ListApplicationRevisions API operation for AWS CodeDeploy.

Lists information about revisions 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 CodeDeploy's API operation ListApplicationRevisions for usage and error information.

Returned Error Types:

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • InvalidSortByException The column name to sort by is either not present or was specified in an invalid format.

  • InvalidSortOrderException The sort order was specified in an invalid format.

  • InvalidBucketNameFilterException The bucket name either doesn't exist or was specified in an invalid format.

  • InvalidKeyPrefixFilterException The specified key prefix filter was specified in an invalid format.

  • BucketNameFilterRequiredException A bucket name is required, but was not provided.

  • InvalidDeployedStateFilterException The deployed state filter was specified in an invalid format.

  • InvalidNextTokenException The next token was specified in an invalid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListApplicationRevisions

func (*CodeDeploy) ListApplicationRevisionsPages

func (c *CodeDeploy) ListApplicationRevisionsPages(input *ListApplicationRevisionsInput, fn func(*ListApplicationRevisionsOutput, bool) bool) error

ListApplicationRevisionsPages iterates over the pages of a ListApplicationRevisions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListApplicationRevisions 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 ListApplicationRevisions operation.
pageNum := 0
err := client.ListApplicationRevisionsPages(params,
    func(page *codedeploy.ListApplicationRevisionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeDeploy) ListApplicationRevisionsPagesWithContext

func (c *CodeDeploy) ListApplicationRevisionsPagesWithContext(ctx aws.Context, input *ListApplicationRevisionsInput, fn func(*ListApplicationRevisionsOutput, bool) bool, opts ...request.Option) error

ListApplicationRevisionsPagesWithContext same as ListApplicationRevisionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListApplicationRevisionsRequest

func (c *CodeDeploy) ListApplicationRevisionsRequest(input *ListApplicationRevisionsInput) (req *request.Request, output *ListApplicationRevisionsOutput)

ListApplicationRevisionsRequest generates a "aws/request.Request" representing the client's request for the ListApplicationRevisions operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListApplicationRevisions for more information on using the ListApplicationRevisions API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListApplicationRevisionsRequest method.
req, resp := client.ListApplicationRevisionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListApplicationRevisions

func (*CodeDeploy) ListApplicationRevisionsWithContext

func (c *CodeDeploy) ListApplicationRevisionsWithContext(ctx aws.Context, input *ListApplicationRevisionsInput, opts ...request.Option) (*ListApplicationRevisionsOutput, error)

ListApplicationRevisionsWithContext is the same as ListApplicationRevisions with the addition of the ability to pass a context and additional request options.

See ListApplicationRevisions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListApplications

func (c *CodeDeploy) ListApplications(input *ListApplicationsInput) (*ListApplicationsOutput, error)

ListApplications API operation for AWS CodeDeploy.

Lists the applications registered with the user or Amazon Web Services account.

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 CodeDeploy's API operation ListApplications for usage and error information.

Returned Error Types:

  • InvalidNextTokenException The next token was specified in an invalid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListApplications

func (*CodeDeploy) ListApplicationsPages

func (c *CodeDeploy) ListApplicationsPages(input *ListApplicationsInput, fn func(*ListApplicationsOutput, bool) bool) error

ListApplicationsPages iterates over the pages of a ListApplications operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListApplications 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 ListApplications operation.
pageNum := 0
err := client.ListApplicationsPages(params,
    func(page *codedeploy.ListApplicationsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeDeploy) ListApplicationsPagesWithContext

func (c *CodeDeploy) ListApplicationsPagesWithContext(ctx aws.Context, input *ListApplicationsInput, fn func(*ListApplicationsOutput, bool) bool, opts ...request.Option) error

ListApplicationsPagesWithContext same as ListApplicationsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListApplicationsRequest

func (c *CodeDeploy) ListApplicationsRequest(input *ListApplicationsInput) (req *request.Request, output *ListApplicationsOutput)

ListApplicationsRequest generates a "aws/request.Request" representing the client's request for the ListApplications operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListApplications for more information on using the ListApplications API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListApplicationsRequest method.
req, resp := client.ListApplicationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListApplications

func (*CodeDeploy) ListApplicationsWithContext

func (c *CodeDeploy) ListApplicationsWithContext(ctx aws.Context, input *ListApplicationsInput, opts ...request.Option) (*ListApplicationsOutput, error)

ListApplicationsWithContext is the same as ListApplications with the addition of the ability to pass a context and additional request options.

See ListApplications for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListDeploymentConfigs

func (c *CodeDeploy) ListDeploymentConfigs(input *ListDeploymentConfigsInput) (*ListDeploymentConfigsOutput, error)

ListDeploymentConfigs API operation for AWS CodeDeploy.

Lists the deployment configurations with the user or Amazon Web Services account.

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 CodeDeploy's API operation ListDeploymentConfigs for usage and error information.

Returned Error Types:

  • InvalidNextTokenException The next token was specified in an invalid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListDeploymentConfigs

func (*CodeDeploy) ListDeploymentConfigsPages

func (c *CodeDeploy) ListDeploymentConfigsPages(input *ListDeploymentConfigsInput, fn func(*ListDeploymentConfigsOutput, bool) bool) error

ListDeploymentConfigsPages iterates over the pages of a ListDeploymentConfigs operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListDeploymentConfigs 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 ListDeploymentConfigs operation.
pageNum := 0
err := client.ListDeploymentConfigsPages(params,
    func(page *codedeploy.ListDeploymentConfigsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeDeploy) ListDeploymentConfigsPagesWithContext

func (c *CodeDeploy) ListDeploymentConfigsPagesWithContext(ctx aws.Context, input *ListDeploymentConfigsInput, fn func(*ListDeploymentConfigsOutput, bool) bool, opts ...request.Option) error

ListDeploymentConfigsPagesWithContext same as ListDeploymentConfigsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListDeploymentConfigsRequest

func (c *CodeDeploy) ListDeploymentConfigsRequest(input *ListDeploymentConfigsInput) (req *request.Request, output *ListDeploymentConfigsOutput)

ListDeploymentConfigsRequest generates a "aws/request.Request" representing the client's request for the ListDeploymentConfigs operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListDeploymentConfigs for more information on using the ListDeploymentConfigs API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListDeploymentConfigsRequest method.
req, resp := client.ListDeploymentConfigsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListDeploymentConfigs

func (*CodeDeploy) ListDeploymentConfigsWithContext

func (c *CodeDeploy) ListDeploymentConfigsWithContext(ctx aws.Context, input *ListDeploymentConfigsInput, opts ...request.Option) (*ListDeploymentConfigsOutput, error)

ListDeploymentConfigsWithContext is the same as ListDeploymentConfigs with the addition of the ability to pass a context and additional request options.

See ListDeploymentConfigs for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListDeploymentGroups

func (c *CodeDeploy) ListDeploymentGroups(input *ListDeploymentGroupsInput) (*ListDeploymentGroupsOutput, error)

ListDeploymentGroups API operation for AWS CodeDeploy.

Lists the deployment groups for an application registered with the Amazon Web Services user or Amazon Web Services account.

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 CodeDeploy's API operation ListDeploymentGroups for usage and error information.

Returned Error Types:

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • InvalidNextTokenException The next token was specified in an invalid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListDeploymentGroups

func (*CodeDeploy) ListDeploymentGroupsPages

func (c *CodeDeploy) ListDeploymentGroupsPages(input *ListDeploymentGroupsInput, fn func(*ListDeploymentGroupsOutput, bool) bool) error

ListDeploymentGroupsPages iterates over the pages of a ListDeploymentGroups operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListDeploymentGroups 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 ListDeploymentGroups operation.
pageNum := 0
err := client.ListDeploymentGroupsPages(params,
    func(page *codedeploy.ListDeploymentGroupsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeDeploy) ListDeploymentGroupsPagesWithContext

func (c *CodeDeploy) ListDeploymentGroupsPagesWithContext(ctx aws.Context, input *ListDeploymentGroupsInput, fn func(*ListDeploymentGroupsOutput, bool) bool, opts ...request.Option) error

ListDeploymentGroupsPagesWithContext same as ListDeploymentGroupsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListDeploymentGroupsRequest

func (c *CodeDeploy) ListDeploymentGroupsRequest(input *ListDeploymentGroupsInput) (req *request.Request, output *ListDeploymentGroupsOutput)

ListDeploymentGroupsRequest generates a "aws/request.Request" representing the client's request for the ListDeploymentGroups operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListDeploymentGroups for more information on using the ListDeploymentGroups API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListDeploymentGroupsRequest method.
req, resp := client.ListDeploymentGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListDeploymentGroups

func (*CodeDeploy) ListDeploymentGroupsWithContext

func (c *CodeDeploy) ListDeploymentGroupsWithContext(ctx aws.Context, input *ListDeploymentGroupsInput, opts ...request.Option) (*ListDeploymentGroupsOutput, error)

ListDeploymentGroupsWithContext is the same as ListDeploymentGroups with the addition of the ability to pass a context and additional request options.

See ListDeploymentGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListDeploymentInstances

func (c *CodeDeploy) ListDeploymentInstances(input *ListDeploymentInstancesInput) (*ListDeploymentInstancesOutput, error)

ListDeploymentInstances API operation for AWS CodeDeploy.

The newer BatchGetDeploymentTargets should be used instead because it works with all compute types. ListDeploymentInstances throws an exception if it is used with a compute platform other than EC2/On-premises or Lambda.

Lists the instance for a deployment associated with the user or Amazon Web Services account.

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 CodeDeploy's API operation ListDeploymentInstances for usage and error information.

Returned Error Types:

  • DeploymentIdRequiredException At least one deployment ID must be specified.

  • DeploymentDoesNotExistException The deployment with the user or Amazon Web Services account does not exist.

  • DeploymentNotStartedException The specified deployment has not started.

  • InvalidNextTokenException The next token was specified in an invalid format.

  • InvalidDeploymentIdException At least one of the deployment IDs was specified in an invalid format.

  • InvalidInstanceStatusException The specified instance status does not exist.

  • InvalidInstanceTypeException An invalid instance type was specified for instances in a blue/green deployment. Valid values include "Blue" for an original environment and "Green" for a replacement environment.

  • InvalidDeploymentInstanceTypeException An instance type was specified for an in-place deployment. Instance types are supported for blue/green deployments only.

  • InvalidTargetFilterNameException The target filter name is invalid.

  • InvalidComputePlatformException The computePlatform is invalid. The computePlatform should be Lambda, Server, or ECS.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListDeploymentInstances

Deprecated: This operation is deprecated, use ListDeploymentTargets instead.

func (*CodeDeploy) ListDeploymentInstancesPages

func (c *CodeDeploy) ListDeploymentInstancesPages(input *ListDeploymentInstancesInput, fn func(*ListDeploymentInstancesOutput, bool) bool) error

ListDeploymentInstancesPages iterates over the pages of a ListDeploymentInstances operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListDeploymentInstances 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 ListDeploymentInstances operation.
pageNum := 0
err := client.ListDeploymentInstancesPages(params,
    func(page *codedeploy.ListDeploymentInstancesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

Deprecated: This operation is deprecated, use ListDeploymentTargets instead.

func (*CodeDeploy) ListDeploymentInstancesPagesWithContext

func (c *CodeDeploy) ListDeploymentInstancesPagesWithContext(ctx aws.Context, input *ListDeploymentInstancesInput, fn func(*ListDeploymentInstancesOutput, bool) bool, opts ...request.Option) error

ListDeploymentInstancesPagesWithContext same as ListDeploymentInstancesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

Deprecated: This operation is deprecated, use ListDeploymentTargets instead.

func (*CodeDeploy) ListDeploymentInstancesRequest

func (c *CodeDeploy) ListDeploymentInstancesRequest(input *ListDeploymentInstancesInput) (req *request.Request, output *ListDeploymentInstancesOutput)

ListDeploymentInstancesRequest generates a "aws/request.Request" representing the client's request for the ListDeploymentInstances operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListDeploymentInstances for more information on using the ListDeploymentInstances API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListDeploymentInstancesRequest method.
req, resp := client.ListDeploymentInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListDeploymentInstances

Deprecated: This operation is deprecated, use ListDeploymentTargets instead.

func (*CodeDeploy) ListDeploymentInstancesWithContext

func (c *CodeDeploy) ListDeploymentInstancesWithContext(ctx aws.Context, input *ListDeploymentInstancesInput, opts ...request.Option) (*ListDeploymentInstancesOutput, error)

ListDeploymentInstancesWithContext is the same as ListDeploymentInstances with the addition of the ability to pass a context and additional request options.

See ListDeploymentInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

Deprecated: This operation is deprecated, use ListDeploymentTargets instead.

func (*CodeDeploy) ListDeploymentTargets

func (c *CodeDeploy) ListDeploymentTargets(input *ListDeploymentTargetsInput) (*ListDeploymentTargetsOutput, error)

ListDeploymentTargets API operation for AWS CodeDeploy.

Returns an array of target IDs that are associated a deployment.

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 CodeDeploy's API operation ListDeploymentTargets for usage and error information.

Returned Error Types:

  • DeploymentIdRequiredException At least one deployment ID must be specified.

  • DeploymentDoesNotExistException The deployment with the user or Amazon Web Services account does not exist.

  • DeploymentNotStartedException The specified deployment has not started.

  • InvalidNextTokenException The next token was specified in an invalid format.

  • InvalidDeploymentIdException At least one of the deployment IDs was specified in an invalid format.

  • InvalidInstanceStatusException The specified instance status does not exist.

  • InvalidInstanceTypeException An invalid instance type was specified for instances in a blue/green deployment. Valid values include "Blue" for an original environment and "Green" for a replacement environment.

  • InvalidDeploymentInstanceTypeException An instance type was specified for an in-place deployment. Instance types are supported for blue/green deployments only.

  • InvalidTargetFilterNameException The target filter name is invalid.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListDeploymentTargets

func (*CodeDeploy) ListDeploymentTargetsRequest

func (c *CodeDeploy) ListDeploymentTargetsRequest(input *ListDeploymentTargetsInput) (req *request.Request, output *ListDeploymentTargetsOutput)

ListDeploymentTargetsRequest generates a "aws/request.Request" representing the client's request for the ListDeploymentTargets operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListDeploymentTargets for more information on using the ListDeploymentTargets API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListDeploymentTargetsRequest method.
req, resp := client.ListDeploymentTargetsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListDeploymentTargets

func (*CodeDeploy) ListDeploymentTargetsWithContext

func (c *CodeDeploy) ListDeploymentTargetsWithContext(ctx aws.Context, input *ListDeploymentTargetsInput, opts ...request.Option) (*ListDeploymentTargetsOutput, error)

ListDeploymentTargetsWithContext is the same as ListDeploymentTargets with the addition of the ability to pass a context and additional request options.

See ListDeploymentTargets for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListDeployments

func (c *CodeDeploy) ListDeployments(input *ListDeploymentsInput) (*ListDeploymentsOutput, error)

ListDeployments API operation for AWS CodeDeploy.

Lists the deployments in a deployment group for an application registered with the user or Amazon Web Services account.

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 CodeDeploy's API operation ListDeployments for usage and error information.

Returned Error Types:

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • InvalidDeploymentGroupNameException The deployment group name was specified in an invalid format.

  • DeploymentGroupDoesNotExistException The named deployment group with the user or Amazon Web Services account does not exist.

  • DeploymentGroupNameRequiredException The deployment group name was not specified.

  • InvalidTimeRangeException The specified time range was specified in an invalid format.

  • InvalidDeploymentStatusException The specified deployment status doesn't exist or cannot be determined.

  • InvalidNextTokenException The next token was specified in an invalid format.

  • InvalidExternalIdException The external ID was specified in an invalid format.

  • InvalidInputException The input was specified in an invalid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListDeployments

func (*CodeDeploy) ListDeploymentsPages

func (c *CodeDeploy) ListDeploymentsPages(input *ListDeploymentsInput, fn func(*ListDeploymentsOutput, bool) bool) error

ListDeploymentsPages iterates over the pages of a ListDeployments operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListDeployments 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 ListDeployments operation.
pageNum := 0
err := client.ListDeploymentsPages(params,
    func(page *codedeploy.ListDeploymentsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeDeploy) ListDeploymentsPagesWithContext

func (c *CodeDeploy) ListDeploymentsPagesWithContext(ctx aws.Context, input *ListDeploymentsInput, fn func(*ListDeploymentsOutput, bool) bool, opts ...request.Option) error

ListDeploymentsPagesWithContext same as ListDeploymentsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListDeploymentsRequest

func (c *CodeDeploy) ListDeploymentsRequest(input *ListDeploymentsInput) (req *request.Request, output *ListDeploymentsOutput)

ListDeploymentsRequest generates a "aws/request.Request" representing the client's request for the ListDeployments operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListDeployments for more information on using the ListDeployments API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListDeploymentsRequest method.
req, resp := client.ListDeploymentsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListDeployments

func (*CodeDeploy) ListDeploymentsWithContext

func (c *CodeDeploy) ListDeploymentsWithContext(ctx aws.Context, input *ListDeploymentsInput, opts ...request.Option) (*ListDeploymentsOutput, error)

ListDeploymentsWithContext is the same as ListDeployments with the addition of the ability to pass a context and additional request options.

See ListDeployments for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListGitHubAccountTokenNames

func (c *CodeDeploy) ListGitHubAccountTokenNames(input *ListGitHubAccountTokenNamesInput) (*ListGitHubAccountTokenNamesOutput, error)

ListGitHubAccountTokenNames API operation for AWS CodeDeploy.

Lists the names of stored connections to GitHub accounts.

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 CodeDeploy's API operation ListGitHubAccountTokenNames for usage and error information.

Returned Error Types:

  • InvalidNextTokenException The next token was specified in an invalid format.

  • ResourceValidationException The specified resource could not be validated.

  • OperationNotSupportedException The API used does not support the deployment.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListGitHubAccountTokenNames

func (*CodeDeploy) ListGitHubAccountTokenNamesRequest

func (c *CodeDeploy) ListGitHubAccountTokenNamesRequest(input *ListGitHubAccountTokenNamesInput) (req *request.Request, output *ListGitHubAccountTokenNamesOutput)

ListGitHubAccountTokenNamesRequest generates a "aws/request.Request" representing the client's request for the ListGitHubAccountTokenNames operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListGitHubAccountTokenNames for more information on using the ListGitHubAccountTokenNames API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListGitHubAccountTokenNamesRequest method.
req, resp := client.ListGitHubAccountTokenNamesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListGitHubAccountTokenNames

func (*CodeDeploy) ListGitHubAccountTokenNamesWithContext

func (c *CodeDeploy) ListGitHubAccountTokenNamesWithContext(ctx aws.Context, input *ListGitHubAccountTokenNamesInput, opts ...request.Option) (*ListGitHubAccountTokenNamesOutput, error)

ListGitHubAccountTokenNamesWithContext is the same as ListGitHubAccountTokenNames with the addition of the ability to pass a context and additional request options.

See ListGitHubAccountTokenNames for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListOnPremisesInstances

func (c *CodeDeploy) ListOnPremisesInstances(input *ListOnPremisesInstancesInput) (*ListOnPremisesInstancesOutput, error)

ListOnPremisesInstances API operation for AWS CodeDeploy.

Gets a list of names for one or more on-premises instances.

Unless otherwise specified, both registered and deregistered on-premises instance names are listed. To list only registered or deregistered on-premises instance names, use the registration status parameter.

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 CodeDeploy's API operation ListOnPremisesInstances for usage and error information.

Returned Error Types:

  • InvalidRegistrationStatusException The registration status was specified in an invalid format.

  • InvalidTagFilterException The tag filter was specified in an invalid format.

  • InvalidNextTokenException The next token was specified in an invalid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListOnPremisesInstances

func (*CodeDeploy) ListOnPremisesInstancesRequest

func (c *CodeDeploy) ListOnPremisesInstancesRequest(input *ListOnPremisesInstancesInput) (req *request.Request, output *ListOnPremisesInstancesOutput)

ListOnPremisesInstancesRequest generates a "aws/request.Request" representing the client's request for the ListOnPremisesInstances operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListOnPremisesInstances for more information on using the ListOnPremisesInstances API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListOnPremisesInstancesRequest method.
req, resp := client.ListOnPremisesInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListOnPremisesInstances

func (*CodeDeploy) ListOnPremisesInstancesWithContext

func (c *CodeDeploy) ListOnPremisesInstancesWithContext(ctx aws.Context, input *ListOnPremisesInstancesInput, opts ...request.Option) (*ListOnPremisesInstancesOutput, error)

ListOnPremisesInstancesWithContext is the same as ListOnPremisesInstances with the addition of the ability to pass a context and additional request options.

See ListOnPremisesInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) ListTagsForResource

func (c *CodeDeploy) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)

ListTagsForResource API operation for AWS CodeDeploy.

Returns a list of tags for the resource identified by a specified Amazon Resource Name (ARN). Tags are used to organize and categorize your CodeDeploy resources.

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 CodeDeploy's API operation ListTagsForResource for usage and error information.

Returned Error Types:

  • ArnNotSupportedException The specified ARN is not supported. For example, it might be an ARN for a resource that is not expected.

  • InvalidArnException The specified ARN is not in a valid format.

  • ResourceArnRequiredException The ARN of a resource is required, but was not found.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListTagsForResource

func (*CodeDeploy) ListTagsForResourceRequest

func (c *CodeDeploy) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)

ListTagsForResourceRequest generates a "aws/request.Request" representing the client's request for the ListTagsForResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListTagsForResource for more information on using the ListTagsForResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListTagsForResourceRequest method.
req, resp := client.ListTagsForResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListTagsForResource

func (*CodeDeploy) ListTagsForResourceWithContext

func (c *CodeDeploy) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)

ListTagsForResourceWithContext is the same as ListTagsForResource with the addition of the ability to pass a context and additional request options.

See ListTagsForResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) PutLifecycleEventHookExecutionStatus

func (c *CodeDeploy) PutLifecycleEventHookExecutionStatus(input *PutLifecycleEventHookExecutionStatusInput) (*PutLifecycleEventHookExecutionStatusOutput, error)

PutLifecycleEventHookExecutionStatus API operation for AWS CodeDeploy.

Sets the result of a Lambda validation function. The function validates lifecycle hooks during a deployment that uses the Lambda or Amazon ECS compute platform. For Lambda deployments, the available lifecycle hooks are BeforeAllowTraffic and AfterAllowTraffic. For Amazon ECS deployments, the available lifecycle hooks are BeforeInstall, AfterInstall, AfterAllowTestTraffic, BeforeAllowTraffic, and AfterAllowTraffic. Lambda validation functions return Succeeded or Failed. For more information, see AppSpec 'hooks' Section for an Lambda Deployment (https://docs.aws.amazon.com/codedeploy/latest/userguide/reference-appspec-file-structure-hooks.html#appspec-hooks-lambda) and AppSpec 'hooks' Section for an Amazon ECS Deployment (https://docs.aws.amazon.com/codedeploy/latest/userguide/reference-appspec-file-structure-hooks.html#appspec-hooks-ecs).

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 CodeDeploy's API operation PutLifecycleEventHookExecutionStatus for usage and error information.

Returned Error Types:

  • InvalidLifecycleEventHookExecutionStatusException The result of a Lambda validation function that verifies a lifecycle event is invalid. It should return Succeeded or Failed.

  • InvalidLifecycleEventHookExecutionIdException A lifecycle event hook is invalid. Review the hooks section in your AppSpec file to ensure the lifecycle events and hooks functions are valid.

  • LifecycleEventAlreadyCompletedException An attempt to return the status of an already completed lifecycle event occurred.

  • DeploymentIdRequiredException At least one deployment ID must be specified.

  • DeploymentDoesNotExistException The deployment with the user or Amazon Web Services account does not exist.

  • InvalidDeploymentIdException At least one of the deployment IDs was specified in an invalid format.

  • UnsupportedActionForDeploymentTypeException A call was submitted that is not supported for the specified deployment type.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/PutLifecycleEventHookExecutionStatus

func (*CodeDeploy) PutLifecycleEventHookExecutionStatusRequest

func (c *CodeDeploy) PutLifecycleEventHookExecutionStatusRequest(input *PutLifecycleEventHookExecutionStatusInput) (req *request.Request, output *PutLifecycleEventHookExecutionStatusOutput)

PutLifecycleEventHookExecutionStatusRequest generates a "aws/request.Request" representing the client's request for the PutLifecycleEventHookExecutionStatus operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutLifecycleEventHookExecutionStatus for more information on using the PutLifecycleEventHookExecutionStatus API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutLifecycleEventHookExecutionStatusRequest method.
req, resp := client.PutLifecycleEventHookExecutionStatusRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/PutLifecycleEventHookExecutionStatus

func (*CodeDeploy) PutLifecycleEventHookExecutionStatusWithContext

func (c *CodeDeploy) PutLifecycleEventHookExecutionStatusWithContext(ctx aws.Context, input *PutLifecycleEventHookExecutionStatusInput, opts ...request.Option) (*PutLifecycleEventHookExecutionStatusOutput, error)

PutLifecycleEventHookExecutionStatusWithContext is the same as PutLifecycleEventHookExecutionStatus with the addition of the ability to pass a context and additional request options.

See PutLifecycleEventHookExecutionStatus for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) RegisterApplicationRevision

func (c *CodeDeploy) RegisterApplicationRevision(input *RegisterApplicationRevisionInput) (*RegisterApplicationRevisionOutput, error)

RegisterApplicationRevision API operation for AWS CodeDeploy.

Registers with CodeDeploy a revision for the specified 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 CodeDeploy's API operation RegisterApplicationRevision for usage and error information.

Returned Error Types:

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • DescriptionTooLongException The description is too long.

  • RevisionRequiredException The revision ID was not specified.

  • InvalidRevisionException The revision was specified in an invalid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/RegisterApplicationRevision

func (*CodeDeploy) RegisterApplicationRevisionRequest

func (c *CodeDeploy) RegisterApplicationRevisionRequest(input *RegisterApplicationRevisionInput) (req *request.Request, output *RegisterApplicationRevisionOutput)

RegisterApplicationRevisionRequest generates a "aws/request.Request" representing the client's request for the RegisterApplicationRevision operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RegisterApplicationRevision for more information on using the RegisterApplicationRevision API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RegisterApplicationRevisionRequest method.
req, resp := client.RegisterApplicationRevisionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/RegisterApplicationRevision

func (*CodeDeploy) RegisterApplicationRevisionWithContext

func (c *CodeDeploy) RegisterApplicationRevisionWithContext(ctx aws.Context, input *RegisterApplicationRevisionInput, opts ...request.Option) (*RegisterApplicationRevisionOutput, error)

RegisterApplicationRevisionWithContext is the same as RegisterApplicationRevision with the addition of the ability to pass a context and additional request options.

See RegisterApplicationRevision for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) RegisterOnPremisesInstance

func (c *CodeDeploy) RegisterOnPremisesInstance(input *RegisterOnPremisesInstanceInput) (*RegisterOnPremisesInstanceOutput, error)

RegisterOnPremisesInstance API operation for AWS CodeDeploy.

Registers an on-premises instance.

Only one IAM ARN (an IAM session ARN or IAM user ARN) is supported in the request. You cannot use both.

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 CodeDeploy's API operation RegisterOnPremisesInstance for usage and error information.

Returned Error Types:

  • InstanceNameAlreadyRegisteredException The specified on-premises instance name is already registered.

  • IamArnRequiredException No IAM ARN was included in the request. You must use an IAM session ARN or user ARN in the request.

  • IamSessionArnAlreadyRegisteredException The request included an IAM session ARN that has already been used to register a different instance.

  • IamUserArnAlreadyRegisteredException The specified user ARN is already registered with an on-premises instance.

  • InstanceNameRequiredException An on-premises instance name was not specified.

  • IamUserArnRequiredException An user ARN was not specified.

  • InvalidInstanceNameException The on-premises instance name was specified in an invalid format.

  • InvalidIamSessionArnException The IAM session ARN was specified in an invalid format.

  • InvalidIamUserArnException The user ARN was specified in an invalid format.

  • MultipleIamArnsProvidedException Both an user ARN and an IAM session ARN were included in the request. Use only one ARN type.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/RegisterOnPremisesInstance

func (*CodeDeploy) RegisterOnPremisesInstanceRequest

func (c *CodeDeploy) RegisterOnPremisesInstanceRequest(input *RegisterOnPremisesInstanceInput) (req *request.Request, output *RegisterOnPremisesInstanceOutput)

RegisterOnPremisesInstanceRequest generates a "aws/request.Request" representing the client's request for the RegisterOnPremisesInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RegisterOnPremisesInstance for more information on using the RegisterOnPremisesInstance API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RegisterOnPremisesInstanceRequest method.
req, resp := client.RegisterOnPremisesInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/RegisterOnPremisesInstance

func (*CodeDeploy) RegisterOnPremisesInstanceWithContext

func (c *CodeDeploy) RegisterOnPremisesInstanceWithContext(ctx aws.Context, input *RegisterOnPremisesInstanceInput, opts ...request.Option) (*RegisterOnPremisesInstanceOutput, error)

RegisterOnPremisesInstanceWithContext is the same as RegisterOnPremisesInstance with the addition of the ability to pass a context and additional request options.

See RegisterOnPremisesInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) RemoveTagsFromOnPremisesInstances

func (c *CodeDeploy) RemoveTagsFromOnPremisesInstances(input *RemoveTagsFromOnPremisesInstancesInput) (*RemoveTagsFromOnPremisesInstancesOutput, error)

RemoveTagsFromOnPremisesInstances API operation for AWS CodeDeploy.

Removes one or more tags from one or more on-premises instances.

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 CodeDeploy's API operation RemoveTagsFromOnPremisesInstances for usage and error information.

Returned Error Types:

  • InstanceNameRequiredException An on-premises instance name was not specified.

  • InvalidInstanceNameException The on-premises instance name was specified in an invalid format.

  • TagRequiredException A tag was not specified.

  • InvalidTagException The tag was specified in an invalid format.

  • TagLimitExceededException The maximum allowed number of tags was exceeded.

  • InstanceLimitExceededException The maximum number of allowed on-premises instances in a single call was exceeded.

  • InstanceNotRegisteredException The specified on-premises instance is not registered.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/RemoveTagsFromOnPremisesInstances

func (*CodeDeploy) RemoveTagsFromOnPremisesInstancesRequest

func (c *CodeDeploy) RemoveTagsFromOnPremisesInstancesRequest(input *RemoveTagsFromOnPremisesInstancesInput) (req *request.Request, output *RemoveTagsFromOnPremisesInstancesOutput)

RemoveTagsFromOnPremisesInstancesRequest generates a "aws/request.Request" representing the client's request for the RemoveTagsFromOnPremisesInstances operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RemoveTagsFromOnPremisesInstances for more information on using the RemoveTagsFromOnPremisesInstances API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RemoveTagsFromOnPremisesInstancesRequest method.
req, resp := client.RemoveTagsFromOnPremisesInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/RemoveTagsFromOnPremisesInstances

func (*CodeDeploy) RemoveTagsFromOnPremisesInstancesWithContext

func (c *CodeDeploy) RemoveTagsFromOnPremisesInstancesWithContext(ctx aws.Context, input *RemoveTagsFromOnPremisesInstancesInput, opts ...request.Option) (*RemoveTagsFromOnPremisesInstancesOutput, error)

RemoveTagsFromOnPremisesInstancesWithContext is the same as RemoveTagsFromOnPremisesInstances with the addition of the ability to pass a context and additional request options.

See RemoveTagsFromOnPremisesInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) SkipWaitTimeForInstanceTermination

func (c *CodeDeploy) SkipWaitTimeForInstanceTermination(input *SkipWaitTimeForInstanceTerminationInput) (*SkipWaitTimeForInstanceTerminationOutput, error)

SkipWaitTimeForInstanceTermination API operation for AWS CodeDeploy.

In a blue/green deployment, overrides any specified wait time and starts terminating instances immediately after the traffic routing is complete.

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 CodeDeploy's API operation SkipWaitTimeForInstanceTermination for usage and error information.

Returned Error Types:

  • DeploymentIdRequiredException At least one deployment ID must be specified.

  • DeploymentDoesNotExistException The deployment with the user or Amazon Web Services account does not exist.

  • DeploymentAlreadyCompletedException The deployment is already complete.

  • InvalidDeploymentIdException At least one of the deployment IDs was specified in an invalid format.

  • DeploymentNotStartedException The specified deployment has not started.

  • UnsupportedActionForDeploymentTypeException A call was submitted that is not supported for the specified deployment type.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/SkipWaitTimeForInstanceTermination

Deprecated: This operation is deprecated, use ContinueDeployment with DeploymentWaitType instead.

func (*CodeDeploy) SkipWaitTimeForInstanceTerminationRequest

func (c *CodeDeploy) SkipWaitTimeForInstanceTerminationRequest(input *SkipWaitTimeForInstanceTerminationInput) (req *request.Request, output *SkipWaitTimeForInstanceTerminationOutput)

SkipWaitTimeForInstanceTerminationRequest generates a "aws/request.Request" representing the client's request for the SkipWaitTimeForInstanceTermination operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See SkipWaitTimeForInstanceTermination for more information on using the SkipWaitTimeForInstanceTermination API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the SkipWaitTimeForInstanceTerminationRequest method.
req, resp := client.SkipWaitTimeForInstanceTerminationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/SkipWaitTimeForInstanceTermination

Deprecated: This operation is deprecated, use ContinueDeployment with DeploymentWaitType instead.

func (*CodeDeploy) SkipWaitTimeForInstanceTerminationWithContext

func (c *CodeDeploy) SkipWaitTimeForInstanceTerminationWithContext(ctx aws.Context, input *SkipWaitTimeForInstanceTerminationInput, opts ...request.Option) (*SkipWaitTimeForInstanceTerminationOutput, error)

SkipWaitTimeForInstanceTerminationWithContext is the same as SkipWaitTimeForInstanceTermination with the addition of the ability to pass a context and additional request options.

See SkipWaitTimeForInstanceTermination for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

Deprecated: This operation is deprecated, use ContinueDeployment with DeploymentWaitType instead.

func (*CodeDeploy) StopDeployment

func (c *CodeDeploy) StopDeployment(input *StopDeploymentInput) (*StopDeploymentOutput, error)

StopDeployment API operation for AWS CodeDeploy.

Attempts to stop an ongoing deployment.

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 CodeDeploy's API operation StopDeployment for usage and error information.

Returned Error Types:

  • DeploymentIdRequiredException At least one deployment ID must be specified.

  • DeploymentDoesNotExistException The deployment with the user or Amazon Web Services account does not exist.

  • DeploymentGroupDoesNotExistException The named deployment group with the user or Amazon Web Services account does not exist.

  • DeploymentAlreadyCompletedException The deployment is already complete.

  • InvalidDeploymentIdException At least one of the deployment IDs was specified in an invalid format.

  • UnsupportedActionForDeploymentTypeException A call was submitted that is not supported for the specified deployment type.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/StopDeployment

func (*CodeDeploy) StopDeploymentRequest

func (c *CodeDeploy) StopDeploymentRequest(input *StopDeploymentInput) (req *request.Request, output *StopDeploymentOutput)

StopDeploymentRequest generates a "aws/request.Request" representing the client's request for the StopDeployment operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StopDeployment for more information on using the StopDeployment API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StopDeploymentRequest method.
req, resp := client.StopDeploymentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/StopDeployment

func (*CodeDeploy) StopDeploymentWithContext

func (c *CodeDeploy) StopDeploymentWithContext(ctx aws.Context, input *StopDeploymentInput, opts ...request.Option) (*StopDeploymentOutput, error)

StopDeploymentWithContext is the same as StopDeployment with the addition of the ability to pass a context and additional request options.

See StopDeployment for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) TagResource

func (c *CodeDeploy) TagResource(input *TagResourceInput) (*TagResourceOutput, error)

TagResource API operation for AWS CodeDeploy.

Associates the list of tags in the input Tags parameter with the resource identified by the ResourceArn input parameter.

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 CodeDeploy's API operation TagResource for usage and error information.

Returned Error Types:

  • ResourceArnRequiredException The ARN of a resource is required, but was not found.

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • DeploymentGroupDoesNotExistException The named deployment group with the user or Amazon Web Services account does not exist.

  • DeploymentConfigDoesNotExistException The deployment configuration does not exist with the user or Amazon Web Services account.

  • TagRequiredException A tag was not specified.

  • InvalidTagsToAddException The specified tags are not valid.

  • ArnNotSupportedException The specified ARN is not supported. For example, it might be an ARN for a resource that is not expected.

  • InvalidArnException The specified ARN is not in a valid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/TagResource

func (*CodeDeploy) TagResourceRequest

func (c *CodeDeploy) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput)

TagResourceRequest generates a "aws/request.Request" representing the client's request for the TagResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See TagResource for more information on using the TagResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the TagResourceRequest method.
req, resp := client.TagResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/TagResource

func (*CodeDeploy) TagResourceWithContext

func (c *CodeDeploy) TagResourceWithContext(ctx aws.Context, input *TagResourceInput, opts ...request.Option) (*TagResourceOutput, error)

TagResourceWithContext is the same as TagResource with the addition of the ability to pass a context and additional request options.

See TagResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) UntagResource

func (c *CodeDeploy) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error)

UntagResource API operation for AWS CodeDeploy.

Disassociates a resource from a list of tags. The resource is identified by the ResourceArn input parameter. The tags are identified by the list of keys in the TagKeys input parameter.

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 CodeDeploy's API operation UntagResource for usage and error information.

Returned Error Types:

  • ResourceArnRequiredException The ARN of a resource is required, but was not found.

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • DeploymentGroupDoesNotExistException The named deployment group with the user or Amazon Web Services account does not exist.

  • DeploymentConfigDoesNotExistException The deployment configuration does not exist with the user or Amazon Web Services account.

  • TagRequiredException A tag was not specified.

  • InvalidTagsToAddException The specified tags are not valid.

  • ArnNotSupportedException The specified ARN is not supported. For example, it might be an ARN for a resource that is not expected.

  • InvalidArnException The specified ARN is not in a valid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/UntagResource

func (*CodeDeploy) UntagResourceRequest

func (c *CodeDeploy) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput)

UntagResourceRequest generates a "aws/request.Request" representing the client's request for the UntagResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See UntagResource for more information on using the UntagResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the UntagResourceRequest method.
req, resp := client.UntagResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/UntagResource

func (*CodeDeploy) UntagResourceWithContext

func (c *CodeDeploy) UntagResourceWithContext(ctx aws.Context, input *UntagResourceInput, opts ...request.Option) (*UntagResourceOutput, error)

UntagResourceWithContext is the same as UntagResource with the addition of the ability to pass a context and additional request options.

See UntagResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) UpdateApplication

func (c *CodeDeploy) UpdateApplication(input *UpdateApplicationInput) (*UpdateApplicationOutput, error)

UpdateApplication API operation for AWS CodeDeploy.

Changes the name of 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 CodeDeploy's API operation UpdateApplication for usage and error information.

Returned Error Types:

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • ApplicationAlreadyExistsException An application with the specified name with the user or Amazon Web Services account already exists.

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/UpdateApplication

func (*CodeDeploy) UpdateApplicationRequest

func (c *CodeDeploy) UpdateApplicationRequest(input *UpdateApplicationInput) (req *request.Request, output *UpdateApplicationOutput)

UpdateApplicationRequest generates a "aws/request.Request" representing the client's request for the UpdateApplication operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See UpdateApplication for more information on using the UpdateApplication API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the UpdateApplicationRequest method.
req, resp := client.UpdateApplicationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/UpdateApplication

func (*CodeDeploy) UpdateApplicationWithContext

func (c *CodeDeploy) UpdateApplicationWithContext(ctx aws.Context, input *UpdateApplicationInput, opts ...request.Option) (*UpdateApplicationOutput, error)

UpdateApplicationWithContext is the same as UpdateApplication with the addition of the ability to pass a context and additional request options.

See UpdateApplication for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) UpdateDeploymentGroup

func (c *CodeDeploy) UpdateDeploymentGroup(input *UpdateDeploymentGroupInput) (*UpdateDeploymentGroupOutput, error)

UpdateDeploymentGroup API operation for AWS CodeDeploy.

Changes information about a deployment group.

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 CodeDeploy's API operation UpdateDeploymentGroup for usage and error information.

Returned Error Types:

  • ApplicationNameRequiredException The minimum number of required application names was not specified.

  • InvalidApplicationNameException The application name was specified in an invalid format.

  • ApplicationDoesNotExistException The application does not exist with the user or Amazon Web Services account.

  • InvalidDeploymentGroupNameException The deployment group name was specified in an invalid format.

  • DeploymentGroupAlreadyExistsException A deployment group with the specified name with the user or Amazon Web Services account already exists.

  • DeploymentGroupNameRequiredException The deployment group name was not specified.

  • DeploymentGroupDoesNotExistException The named deployment group with the user or Amazon Web Services account does not exist.

  • InvalidEC2TagException The tag was specified in an invalid format.

  • InvalidTagException The tag was specified in an invalid format.

  • InvalidAutoScalingGroupException The Auto Scaling group was specified in an invalid format or does not exist.

  • InvalidDeploymentConfigNameException The deployment configuration name was specified in an invalid format.

  • DeploymentConfigDoesNotExistException The deployment configuration does not exist with the user or Amazon Web Services account.

  • InvalidRoleException The service role ARN was specified in an invalid format. Or, if an Auto Scaling group was specified, the specified service role does not grant the appropriate permissions to Amazon EC2 Auto Scaling.

  • LifecycleHookLimitExceededException The limit for lifecycle hooks was exceeded.

  • InvalidTriggerConfigException The trigger was specified in an invalid format.

  • TriggerTargetsLimitExceededException The maximum allowed number of triggers was exceeded.

  • InvalidAlarmConfigException The format of the alarm configuration is invalid. Possible causes include:

  • The alarm list is null.

  • The alarm object is null.

  • The alarm name is empty or null or exceeds the limit of 255 characters.

  • Two alarms with the same name have been specified.

  • The alarm configuration is enabled, but the alarm list is empty.

  • AlarmsLimitExceededException The maximum number of alarms for a deployment group (10) was exceeded.

  • InvalidAutoRollbackConfigException The automatic rollback configuration was specified in an invalid format. For example, automatic rollback is enabled, but an invalid triggering event type or no event types were listed.

  • InvalidLoadBalancerInfoException An invalid load balancer name, or no load balancer name, was specified.

  • InvalidDeploymentStyleException An invalid deployment style was specified. Valid deployment types include "IN_PLACE" and "BLUE_GREEN." Valid deployment options include "WITH_TRAFFIC_CONTROL" and "WITHOUT_TRAFFIC_CONTROL."

  • InvalidBlueGreenDeploymentConfigurationException The configuration for the blue/green deployment group was provided in an invalid format. For information about deployment configuration format, see CreateDeploymentConfig.

  • InvalidEC2TagCombinationException A call was submitted that specified both Ec2TagFilters and Ec2TagSet, but only one of these data types can be used in a single call.

  • InvalidOnPremisesTagCombinationException A call was submitted that specified both OnPremisesTagFilters and OnPremisesTagSet, but only one of these data types can be used in a single call.

  • TagSetListLimitExceededException The number of tag groups included in the tag set list exceeded the maximum allowed limit of 3.

  • InvalidInputException The input was specified in an invalid format.

  • ThrottlingException An API function was called too frequently.

  • InvalidECSServiceException The Amazon ECS service identifier is not valid.

  • InvalidTargetGroupPairException A target group pair associated with this deployment is not valid.

  • ECSServiceMappingLimitExceededException The Amazon ECS service is associated with more than one deployment groups. An Amazon ECS service can be associated with only one deployment group.

  • InvalidTrafficRoutingConfigurationException The configuration that specifies how traffic is routed during a deployment is invalid.

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/UpdateDeploymentGroup

func (*CodeDeploy) UpdateDeploymentGroupRequest

func (c *CodeDeploy) UpdateDeploymentGroupRequest(input *UpdateDeploymentGroupInput) (req *request.Request, output *UpdateDeploymentGroupOutput)

UpdateDeploymentGroupRequest generates a "aws/request.Request" representing the client's request for the UpdateDeploymentGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See UpdateDeploymentGroup for more information on using the UpdateDeploymentGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the UpdateDeploymentGroupRequest method.
req, resp := client.UpdateDeploymentGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/UpdateDeploymentGroup

func (*CodeDeploy) UpdateDeploymentGroupWithContext

func (c *CodeDeploy) UpdateDeploymentGroupWithContext(ctx aws.Context, input *UpdateDeploymentGroupInput, opts ...request.Option) (*UpdateDeploymentGroupOutput, error)

UpdateDeploymentGroupWithContext is the same as UpdateDeploymentGroup with the addition of the ability to pass a context and additional request options.

See UpdateDeploymentGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeDeploy) WaitUntilDeploymentSuccessful

func (c *CodeDeploy) WaitUntilDeploymentSuccessful(input *GetDeploymentInput) error

WaitUntilDeploymentSuccessful uses the CodeDeploy API operation GetDeployment to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

func (*CodeDeploy) WaitUntilDeploymentSuccessfulWithContext

func (c *CodeDeploy) WaitUntilDeploymentSuccessfulWithContext(ctx aws.Context, input *GetDeploymentInput, opts ...request.WaiterOption) error

WaitUntilDeploymentSuccessfulWithContext is an extended version of WaitUntilDeploymentSuccessful. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

type ContinueDeploymentInput

type ContinueDeploymentInput struct {

    // The unique ID of a blue/green deployment for which you want to start rerouting
    // traffic to the replacement environment.
    DeploymentId *string `locationName:"deploymentId" type:"string"`

    // The status of the deployment's waiting period. READY_WAIT indicates that
    // the deployment is ready to start shifting traffic. TERMINATION_WAIT indicates
    // that the traffic is shifted, but the original target is not terminated.
    DeploymentWaitType *string `locationName:"deploymentWaitType" type:"string" enum:"DeploymentWaitType"`
    // contains filtered or unexported fields
}

func (ContinueDeploymentInput) GoString

func (s ContinueDeploymentInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ContinueDeploymentInput) SetDeploymentId

func (s *ContinueDeploymentInput) SetDeploymentId(v string) *ContinueDeploymentInput

SetDeploymentId sets the DeploymentId field's value.

func (*ContinueDeploymentInput) SetDeploymentWaitType

func (s *ContinueDeploymentInput) SetDeploymentWaitType(v string) *ContinueDeploymentInput

SetDeploymentWaitType sets the DeploymentWaitType field's value.

func (ContinueDeploymentInput) String

func (s ContinueDeploymentInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ContinueDeploymentOutput

type ContinueDeploymentOutput struct {
    // contains filtered or unexported fields
}

func (ContinueDeploymentOutput) GoString

func (s ContinueDeploymentOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (ContinueDeploymentOutput) String

func (s ContinueDeploymentOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateApplicationInput

type CreateApplicationInput struct {

    // The name of the application. This name must be unique with the applicable
    // user or Amazon Web Services account.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`

    // The destination platform type for the deployment (Lambda, Server, or ECS).
    ComputePlatform *string `locationName:"computePlatform" type:"string" enum:"ComputePlatform"`

    // The metadata that you apply to CodeDeploy applications to help you organize
    // and categorize them. Each tag consists of a key and an optional value, both
    // of which you define.
    Tags []*Tag `locationName:"tags" type:"list"`
    // contains filtered or unexported fields
}

Represents the input of a CreateApplication operation.

func (CreateApplicationInput) GoString

func (s CreateApplicationInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateApplicationInput) SetApplicationName

func (s *CreateApplicationInput) SetApplicationName(v string) *CreateApplicationInput

SetApplicationName sets the ApplicationName field's value.

func (*CreateApplicationInput) SetComputePlatform

func (s *CreateApplicationInput) SetComputePlatform(v string) *CreateApplicationInput

SetComputePlatform sets the ComputePlatform field's value.

func (*CreateApplicationInput) SetTags

func (s *CreateApplicationInput) SetTags(v []*Tag) *CreateApplicationInput

SetTags sets the Tags field's value.

func (CreateApplicationInput) String

func (s CreateApplicationInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateApplicationInput) Validate

func (s *CreateApplicationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateApplicationOutput

type CreateApplicationOutput struct {

    // A unique application ID.
    ApplicationId *string `locationName:"applicationId" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a CreateApplication operation.

func (CreateApplicationOutput) GoString

func (s CreateApplicationOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateApplicationOutput) SetApplicationId

func (s *CreateApplicationOutput) SetApplicationId(v string) *CreateApplicationOutput

SetApplicationId sets the ApplicationId field's value.

func (CreateApplicationOutput) String

func (s CreateApplicationOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDeploymentConfigInput

type CreateDeploymentConfigInput struct {

    // The destination platform type for the deployment (Lambda, Server, or ECS).
    ComputePlatform *string `locationName:"computePlatform" type:"string" enum:"ComputePlatform"`

    // The name of the deployment configuration to create.
    //
    // DeploymentConfigName is a required field
    DeploymentConfigName *string `locationName:"deploymentConfigName" min:"1" type:"string" required:"true"`

    // The minimum number of healthy instances that should be available at any time
    // during the deployment. There are two parameters expected in the input: type
    // and value.
    //
    // The type parameter takes either of the following values:
    //
    //    * HOST_COUNT: The value parameter represents the minimum number of healthy
    //    instances as an absolute value.
    //
    //    * FLEET_PERCENT: The value parameter represents the minimum number of
    //    healthy instances as a percentage of the total number of instances in
    //    the deployment. If you specify FLEET_PERCENT, at the start of the deployment,
    //    CodeDeploy converts the percentage to the equivalent number of instances
    //    and rounds up fractional instances.
    //
    // The value parameter takes an integer.
    //
    // For example, to set a minimum of 95% healthy instance, specify a type of
    // FLEET_PERCENT and a value of 95.
    MinimumHealthyHosts *MinimumHealthyHosts `locationName:"minimumHealthyHosts" type:"structure"`

    // The configuration that specifies how the deployment traffic is routed.
    TrafficRoutingConfig *TrafficRoutingConfig `locationName:"trafficRoutingConfig" type:"structure"`

    // Configure the ZonalConfig object if you want CodeDeploy to deploy your application
    // to one Availability Zone (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-availability-zones)
    // at a time, within an Amazon Web Services Region.
    //
    // For more information about the zonal configuration feature, see zonal configuration
    // (https://docs.aws.amazon.com/codedeploy/latest/userguide/deployment-configurations-create.html#zonal-config)
    // in the CodeDeploy User Guide.
    ZonalConfig *ZonalConfig `locationName:"zonalConfig" type:"structure"`
    // contains filtered or unexported fields
}

Represents the input of a CreateDeploymentConfig operation.

func (CreateDeploymentConfigInput) GoString

func (s CreateDeploymentConfigInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDeploymentConfigInput) SetComputePlatform

func (s *CreateDeploymentConfigInput) SetComputePlatform(v string) *CreateDeploymentConfigInput

SetComputePlatform sets the ComputePlatform field's value.

func (*CreateDeploymentConfigInput) SetDeploymentConfigName

func (s *CreateDeploymentConfigInput) SetDeploymentConfigName(v string) *CreateDeploymentConfigInput

SetDeploymentConfigName sets the DeploymentConfigName field's value.

func (*CreateDeploymentConfigInput) SetMinimumHealthyHosts

func (s *CreateDeploymentConfigInput) SetMinimumHealthyHosts(v *MinimumHealthyHosts) *CreateDeploymentConfigInput

SetMinimumHealthyHosts sets the MinimumHealthyHosts field's value.

func (*CreateDeploymentConfigInput) SetTrafficRoutingConfig

func (s *CreateDeploymentConfigInput) SetTrafficRoutingConfig(v *TrafficRoutingConfig) *CreateDeploymentConfigInput

SetTrafficRoutingConfig sets the TrafficRoutingConfig field's value.

func (*CreateDeploymentConfigInput) SetZonalConfig

func (s *CreateDeploymentConfigInput) SetZonalConfig(v *ZonalConfig) *CreateDeploymentConfigInput

SetZonalConfig sets the ZonalConfig field's value.

func (CreateDeploymentConfigInput) String

func (s CreateDeploymentConfigInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDeploymentConfigInput) Validate

func (s *CreateDeploymentConfigInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDeploymentConfigOutput

type CreateDeploymentConfigOutput struct {

    // A unique deployment configuration ID.
    DeploymentConfigId *string `locationName:"deploymentConfigId" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a CreateDeploymentConfig operation.

func (CreateDeploymentConfigOutput) GoString

func (s CreateDeploymentConfigOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDeploymentConfigOutput) SetDeploymentConfigId

func (s *CreateDeploymentConfigOutput) SetDeploymentConfigId(v string) *CreateDeploymentConfigOutput

SetDeploymentConfigId sets the DeploymentConfigId field's value.

func (CreateDeploymentConfigOutput) String

func (s CreateDeploymentConfigOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDeploymentGroupInput

type CreateDeploymentGroupInput struct {

    // Information to add about Amazon CloudWatch alarms when the deployment group
    // is created.
    AlarmConfiguration *AlarmConfiguration `locationName:"alarmConfiguration" type:"structure"`

    // The name of an CodeDeploy application associated with the user or Amazon
    // Web Services account.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`

    // Configuration information for an automatic rollback that is added when a
    // deployment group is created.
    AutoRollbackConfiguration *AutoRollbackConfiguration `locationName:"autoRollbackConfiguration" type:"structure"`

    // A list of associated Amazon EC2 Auto Scaling groups.
    AutoScalingGroups []*string `locationName:"autoScalingGroups" type:"list"`

    // Information about blue/green deployment options for a deployment group.
    BlueGreenDeploymentConfiguration *BlueGreenDeploymentConfiguration `locationName:"blueGreenDeploymentConfiguration" type:"structure"`

    // If specified, the deployment configuration name can be either one of the
    // predefined configurations provided with CodeDeploy or a custom deployment
    // configuration that you create by calling the create deployment configuration
    // operation.
    //
    // CodeDeployDefault.OneAtATime is the default deployment configuration. It
    // is used if a configuration isn't specified for the deployment or deployment
    // group.
    //
    // For more information about the predefined deployment configurations in CodeDeploy,
    // see Working with Deployment Configurations in CodeDeploy (https://docs.aws.amazon.com/codedeploy/latest/userguide/deployment-configurations.html)
    // in the CodeDeploy User Guide.
    DeploymentConfigName *string `locationName:"deploymentConfigName" min:"1" type:"string"`

    // The name of a new deployment group for the specified application.
    //
    // DeploymentGroupName is a required field
    DeploymentGroupName *string `locationName:"deploymentGroupName" min:"1" type:"string" required:"true"`

    // Information about the type of deployment, in-place or blue/green, that you
    // want to run and whether to route deployment traffic behind a load balancer.
    DeploymentStyle *DeploymentStyle `locationName:"deploymentStyle" type:"structure"`

    // The Amazon EC2 tags on which to filter. The deployment group includes Amazon
    // EC2 instances with any of the specified tags. Cannot be used in the same
    // call as ec2TagSet.
    Ec2TagFilters []*EC2TagFilter `locationName:"ec2TagFilters" type:"list"`

    // Information about groups of tags applied to Amazon EC2 instances. The deployment
    // group includes only Amazon EC2 instances identified by all the tag groups.
    // Cannot be used in the same call as ec2TagFilters.
    Ec2TagSet *EC2TagSet `locationName:"ec2TagSet" type:"structure"`

    // The target Amazon ECS services in the deployment group. This applies only
    // to deployment groups that use the Amazon ECS compute platform. A target Amazon
    // ECS service is specified as an Amazon ECS cluster and service name pair using
    // the format <clustername>:<servicename>.
    EcsServices []*ECSService `locationName:"ecsServices" type:"list"`

    // Information about the load balancer used in a deployment.
    LoadBalancerInfo *LoadBalancerInfo `locationName:"loadBalancerInfo" type:"structure"`

    // The on-premises instance tags on which to filter. The deployment group includes
    // on-premises instances with any of the specified tags. Cannot be used in the
    // same call as OnPremisesTagSet.
    OnPremisesInstanceTagFilters []*TagFilter `locationName:"onPremisesInstanceTagFilters" type:"list"`

    // Information about groups of tags applied to on-premises instances. The deployment
    // group includes only on-premises instances identified by all of the tag groups.
    // Cannot be used in the same call as onPremisesInstanceTagFilters.
    OnPremisesTagSet *OnPremisesTagSet `locationName:"onPremisesTagSet" type:"structure"`

    // Indicates what happens when new Amazon EC2 instances are launched mid-deployment
    // and do not receive the deployed application revision.
    //
    // If this option is set to UPDATE or is unspecified, CodeDeploy initiates one
    // or more 'auto-update outdated instances' deployments to apply the deployed
    // application revision to the new Amazon EC2 instances.
    //
    // If this option is set to IGNORE, CodeDeploy does not initiate a deployment
    // to update the new Amazon EC2 instances. This may result in instances having
    // different revisions.
    OutdatedInstancesStrategy *string `locationName:"outdatedInstancesStrategy" type:"string" enum:"OutdatedInstancesStrategy"`

    // A service role Amazon Resource Name (ARN) that allows CodeDeploy to act on
    // the user's behalf when interacting with Amazon Web Services services.
    //
    // ServiceRoleArn is a required field
    ServiceRoleArn *string `locationName:"serviceRoleArn" type:"string" required:"true"`

    // The metadata that you apply to CodeDeploy deployment groups to help you organize
    // and categorize them. Each tag consists of a key and an optional value, both
    // of which you define.
    Tags []*Tag `locationName:"tags" type:"list"`

    // This parameter only applies if you are using CodeDeploy with Amazon EC2 Auto
    // Scaling. For more information, see Integrating CodeDeploy with Amazon EC2
    // Auto Scaling (https://docs.aws.amazon.com/codedeploy/latest/userguide/integrations-aws-auto-scaling.html)
    // in the CodeDeploy User Guide.
    //
    // Set terminationHookEnabled to true to have CodeDeploy install a termination
    // hook into your Auto Scaling group when you create a deployment group. When
    // this hook is installed, CodeDeploy will perform termination deployments.
    //
    // For information about termination deployments, see Enabling termination deployments
    // during Auto Scaling scale-in events (https://docs.aws.amazon.com/codedeploy/latest/userguide/integrations-aws-auto-scaling.html#integrations-aws-auto-scaling-behaviors-hook-enable)
    // in the CodeDeploy User Guide.
    //
    // For more information about Auto Scaling scale-in events, see the Scale in
    // (https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-lifecycle.html#as-lifecycle-scale-in)
    // topic in the Amazon EC2 Auto Scaling User Guide.
    TerminationHookEnabled *bool `locationName:"terminationHookEnabled" type:"boolean"`

    // Information about triggers to create when the deployment group is created.
    // For examples, see Create a Trigger for an CodeDeploy Event (https://docs.aws.amazon.com/codedeploy/latest/userguide/how-to-notify-sns.html)
    // in the CodeDeploy User Guide.
    TriggerConfigurations []*TriggerConfig `locationName:"triggerConfigurations" type:"list"`
    // contains filtered or unexported fields
}

Represents the input of a CreateDeploymentGroup operation.

func (CreateDeploymentGroupInput) GoString

func (s CreateDeploymentGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDeploymentGroupInput) SetAlarmConfiguration

func (s *CreateDeploymentGroupInput) SetAlarmConfiguration(v *AlarmConfiguration) *CreateDeploymentGroupInput

SetAlarmConfiguration sets the AlarmConfiguration field's value.

func (*CreateDeploymentGroupInput) SetApplicationName

func (s *CreateDeploymentGroupInput) SetApplicationName(v string) *CreateDeploymentGroupInput

SetApplicationName sets the ApplicationName field's value.

func (*CreateDeploymentGroupInput) SetAutoRollbackConfiguration

func (s *CreateDeploymentGroupInput) SetAutoRollbackConfiguration(v *AutoRollbackConfiguration) *CreateDeploymentGroupInput

SetAutoRollbackConfiguration sets the AutoRollbackConfiguration field's value.

func (*CreateDeploymentGroupInput) SetAutoScalingGroups

func (s *CreateDeploymentGroupInput) SetAutoScalingGroups(v []*string) *CreateDeploymentGroupInput

SetAutoScalingGroups sets the AutoScalingGroups field's value.

func (*CreateDeploymentGroupInput) SetBlueGreenDeploymentConfiguration

func (s *CreateDeploymentGroupInput) SetBlueGreenDeploymentConfiguration(v *BlueGreenDeploymentConfiguration) *CreateDeploymentGroupInput

SetBlueGreenDeploymentConfiguration sets the BlueGreenDeploymentConfiguration field's value.

func (*CreateDeploymentGroupInput) SetDeploymentConfigName

func (s *CreateDeploymentGroupInput) SetDeploymentConfigName(v string) *CreateDeploymentGroupInput

SetDeploymentConfigName sets the DeploymentConfigName field's value.

func (*CreateDeploymentGroupInput) SetDeploymentGroupName

func (s *CreateDeploymentGroupInput) SetDeploymentGroupName(v string) *CreateDeploymentGroupInput

SetDeploymentGroupName sets the DeploymentGroupName field's value.

func (*CreateDeploymentGroupInput) SetDeploymentStyle

func (s *CreateDeploymentGroupInput) SetDeploymentStyle(v *DeploymentStyle) *CreateDeploymentGroupInput

SetDeploymentStyle sets the DeploymentStyle field's value.

func (*CreateDeploymentGroupInput) SetEc2TagFilters

func (s *CreateDeploymentGroupInput) SetEc2TagFilters(v []*EC2TagFilter) *CreateDeploymentGroupInput

SetEc2TagFilters sets the Ec2TagFilters field's value.

func (*CreateDeploymentGroupInput) SetEc2TagSet

func (s *CreateDeploymentGroupInput) SetEc2TagSet(v *EC2TagSet) *CreateDeploymentGroupInput

SetEc2TagSet sets the Ec2TagSet field's value.

func (*CreateDeploymentGroupInput) SetEcsServices

func (s *CreateDeploymentGroupInput) SetEcsServices(v []*ECSService) *CreateDeploymentGroupInput

SetEcsServices sets the EcsServices field's value.

func (*CreateDeploymentGroupInput) SetLoadBalancerInfo

func (s *CreateDeploymentGroupInput) SetLoadBalancerInfo(v *LoadBalancerInfo) *CreateDeploymentGroupInput

SetLoadBalancerInfo sets the LoadBalancerInfo field's value.

func (*CreateDeploymentGroupInput) SetOnPremisesInstanceTagFilters

func (s *CreateDeploymentGroupInput) SetOnPremisesInstanceTagFilters(v []*TagFilter) *CreateDeploymentGroupInput

SetOnPremisesInstanceTagFilters sets the OnPremisesInstanceTagFilters field's value.

func (*CreateDeploymentGroupInput) SetOnPremisesTagSet

func (s *CreateDeploymentGroupInput) SetOnPremisesTagSet(v *OnPremisesTagSet) *CreateDeploymentGroupInput

SetOnPremisesTagSet sets the OnPremisesTagSet field's value.

func (*CreateDeploymentGroupInput) SetOutdatedInstancesStrategy

func (s *CreateDeploymentGroupInput) SetOutdatedInstancesStrategy(v string) *CreateDeploymentGroupInput

SetOutdatedInstancesStrategy sets the OutdatedInstancesStrategy field's value.

func (*CreateDeploymentGroupInput) SetServiceRoleArn

func (s *CreateDeploymentGroupInput) SetServiceRoleArn(v string) *CreateDeploymentGroupInput

SetServiceRoleArn sets the ServiceRoleArn field's value.

func (*CreateDeploymentGroupInput) SetTags

func (s *CreateDeploymentGroupInput) SetTags(v []*Tag) *CreateDeploymentGroupInput

SetTags sets the Tags field's value.

func (*CreateDeploymentGroupInput) SetTerminationHookEnabled

func (s *CreateDeploymentGroupInput) SetTerminationHookEnabled(v bool) *CreateDeploymentGroupInput

SetTerminationHookEnabled sets the TerminationHookEnabled field's value.

func (*CreateDeploymentGroupInput) SetTriggerConfigurations

func (s *CreateDeploymentGroupInput) SetTriggerConfigurations(v []*TriggerConfig) *CreateDeploymentGroupInput

SetTriggerConfigurations sets the TriggerConfigurations field's value.

func (CreateDeploymentGroupInput) String

func (s CreateDeploymentGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDeploymentGroupInput) Validate

func (s *CreateDeploymentGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDeploymentGroupOutput

type CreateDeploymentGroupOutput struct {

    // A unique deployment group ID.
    DeploymentGroupId *string `locationName:"deploymentGroupId" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a CreateDeploymentGroup operation.

func (CreateDeploymentGroupOutput) GoString

func (s CreateDeploymentGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDeploymentGroupOutput) SetDeploymentGroupId

func (s *CreateDeploymentGroupOutput) SetDeploymentGroupId(v string) *CreateDeploymentGroupOutput

SetDeploymentGroupId sets the DeploymentGroupId field's value.

func (CreateDeploymentGroupOutput) String

func (s CreateDeploymentGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDeploymentInput

type CreateDeploymentInput struct {

    // The name of an CodeDeploy application associated with the user or Amazon
    // Web Services account.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`

    // Configuration information for an automatic rollback that is added when a
    // deployment is created.
    AutoRollbackConfiguration *AutoRollbackConfiguration `locationName:"autoRollbackConfiguration" type:"structure"`

    // The name of a deployment configuration associated with the user or Amazon
    // Web Services account.
    //
    // If not specified, the value configured in the deployment group is used as
    // the default. If the deployment group does not have a deployment configuration
    // associated with it, CodeDeployDefault.OneAtATime is used by default.
    DeploymentConfigName *string `locationName:"deploymentConfigName" min:"1" type:"string"`

    // The name of the deployment group.
    DeploymentGroupName *string `locationName:"deploymentGroupName" min:"1" type:"string"`

    // A comment about the deployment.
    Description *string `locationName:"description" type:"string"`

    // Information about how CodeDeploy handles files that already exist in a deployment
    // target location but weren't part of the previous successful deployment.
    //
    // The fileExistsBehavior parameter takes any of the following values:
    //
    //    * DISALLOW: The deployment fails. This is also the default behavior if
    //    no option is specified.
    //
    //    * OVERWRITE: The version of the file from the application revision currently
    //    being deployed replaces the version already on the instance.
    //
    //    * RETAIN: The version of the file already on the instance is kept and
    //    used as part of the new deployment.
    FileExistsBehavior *string `locationName:"fileExistsBehavior" type:"string" enum:"FileExistsBehavior"`

    // If true, then if an ApplicationStop, BeforeBlockTraffic, or AfterBlockTraffic
    // deployment lifecycle event to an instance fails, then the deployment continues
    // to the next deployment lifecycle event. For example, if ApplicationStop fails,
    // the deployment continues with DownloadBundle. If BeforeBlockTraffic fails,
    // the deployment continues with BlockTraffic. If AfterBlockTraffic fails, the
    // deployment continues with ApplicationStop.
    //
    // If false or not specified, then if a lifecycle event fails during a deployment
    // to an instance, that deployment fails. If deployment to that instance is
    // part of an overall deployment and the number of healthy hosts is not less
    // than the minimum number of healthy hosts, then a deployment to the next instance
    // is attempted.
    //
    // During a deployment, the CodeDeploy agent runs the scripts specified for
    // ApplicationStop, BeforeBlockTraffic, and AfterBlockTraffic in the AppSpec
    // file from the previous successful deployment. (All other scripts are run
    // from the AppSpec file in the current deployment.) If one of these scripts
    // contains an error and does not run successfully, the deployment can fail.
    //
    // If the cause of the failure is a script from the last successful deployment
    // that will never run successfully, create a new deployment and use ignoreApplicationStopFailures
    // to specify that the ApplicationStop, BeforeBlockTraffic, and AfterBlockTraffic
    // failures should be ignored.
    IgnoreApplicationStopFailures *bool `locationName:"ignoreApplicationStopFailures" type:"boolean"`

    // Allows you to specify information about alarms associated with a deployment.
    // The alarm configuration that you specify here will override the alarm configuration
    // at the deployment group level. Consider overriding the alarm configuration
    // if you have set up alarms at the deployment group level that are causing
    // deployment failures. In this case, you would call CreateDeployment to create
    // a new deployment that uses a previous application revision that is known
    // to work, and set its alarm configuration to turn off alarm polling. Turning
    // off alarm polling ensures that the new deployment proceeds without being
    // blocked by the alarm that was generated by the previous, failed, deployment.
    //
    // If you specify an overrideAlarmConfiguration, you need the UpdateDeploymentGroup
    // IAM permission when calling CreateDeployment.
    OverrideAlarmConfiguration *AlarmConfiguration `locationName:"overrideAlarmConfiguration" type:"structure"`

    // The type and location of the revision to deploy.
    Revision *RevisionLocation `locationName:"revision" type:"structure"`

    // Information about the instances that belong to the replacement environment
    // in a blue/green deployment.
    TargetInstances *TargetInstances `locationName:"targetInstances" type:"structure"`

    // Indicates whether to deploy to all instances or only to instances that are
    // not running the latest application revision.
    UpdateOutdatedInstancesOnly *bool `locationName:"updateOutdatedInstancesOnly" type:"boolean"`
    // contains filtered or unexported fields
}

Represents the input of a CreateDeployment operation.

func (CreateDeploymentInput) GoString

func (s CreateDeploymentInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDeploymentInput) SetApplicationName

func (s *CreateDeploymentInput) SetApplicationName(v string) *CreateDeploymentInput

SetApplicationName sets the ApplicationName field's value.

func (*CreateDeploymentInput) SetAutoRollbackConfiguration

func (s *CreateDeploymentInput) SetAutoRollbackConfiguration(v *AutoRollbackConfiguration) *CreateDeploymentInput

SetAutoRollbackConfiguration sets the AutoRollbackConfiguration field's value.

func (*CreateDeploymentInput) SetDeploymentConfigName

func (s *CreateDeploymentInput) SetDeploymentConfigName(v string) *CreateDeploymentInput

SetDeploymentConfigName sets the DeploymentConfigName field's value.

func (*CreateDeploymentInput) SetDeploymentGroupName

func (s *CreateDeploymentInput) SetDeploymentGroupName(v string) *CreateDeploymentInput

SetDeploymentGroupName sets the DeploymentGroupName field's value.

func (*CreateDeploymentInput) SetDescription

func (s *CreateDeploymentInput) SetDescription(v string) *CreateDeploymentInput

SetDescription sets the Description field's value.

func (*CreateDeploymentInput) SetFileExistsBehavior

func (s *CreateDeploymentInput) SetFileExistsBehavior(v string) *CreateDeploymentInput

SetFileExistsBehavior sets the FileExistsBehavior field's value.

func (*CreateDeploymentInput) SetIgnoreApplicationStopFailures

func (s *CreateDeploymentInput) SetIgnoreApplicationStopFailures(v bool) *CreateDeploymentInput

SetIgnoreApplicationStopFailures sets the IgnoreApplicationStopFailures field's value.

func (*CreateDeploymentInput) SetOverrideAlarmConfiguration

func (s *CreateDeploymentInput) SetOverrideAlarmConfiguration(v *AlarmConfiguration) *CreateDeploymentInput

SetOverrideAlarmConfiguration sets the OverrideAlarmConfiguration field's value.

func (*CreateDeploymentInput) SetRevision

func (s *CreateDeploymentInput) SetRevision(v *RevisionLocation) *CreateDeploymentInput

SetRevision sets the Revision field's value.

func (*CreateDeploymentInput) SetTargetInstances

func (s *CreateDeploymentInput) SetTargetInstances(v *TargetInstances) *CreateDeploymentInput

SetTargetInstances sets the TargetInstances field's value.

func (*CreateDeploymentInput) SetUpdateOutdatedInstancesOnly

func (s *CreateDeploymentInput) SetUpdateOutdatedInstancesOnly(v bool) *CreateDeploymentInput

SetUpdateOutdatedInstancesOnly sets the UpdateOutdatedInstancesOnly field's value.

func (CreateDeploymentInput) String

func (s CreateDeploymentInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDeploymentInput) Validate

func (s *CreateDeploymentInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDeploymentOutput

type CreateDeploymentOutput struct {

    // The unique ID of a deployment.
    DeploymentId *string `locationName:"deploymentId" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a CreateDeployment operation.

func (CreateDeploymentOutput) GoString

func (s CreateDeploymentOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDeploymentOutput) SetDeploymentId

func (s *CreateDeploymentOutput) SetDeploymentId(v string) *CreateDeploymentOutput

SetDeploymentId sets the DeploymentId field's value.

func (CreateDeploymentOutput) String

func (s CreateDeploymentOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteApplicationInput

type DeleteApplicationInput struct {

    // The name of an CodeDeploy application associated with the user or Amazon
    // Web Services account.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a DeleteApplication operation.

func (DeleteApplicationInput) GoString

func (s DeleteApplicationInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteApplicationInput) SetApplicationName

func (s *DeleteApplicationInput) SetApplicationName(v string) *DeleteApplicationInput

SetApplicationName sets the ApplicationName field's value.

func (DeleteApplicationInput) String

func (s DeleteApplicationInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteApplicationInput) Validate

func (s *DeleteApplicationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteApplicationOutput

type DeleteApplicationOutput struct {
    // contains filtered or unexported fields
}

func (DeleteApplicationOutput) GoString

func (s DeleteApplicationOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteApplicationOutput) String

func (s DeleteApplicationOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDeploymentConfigInput

type DeleteDeploymentConfigInput struct {

    // The name of a deployment configuration associated with the user or Amazon
    // Web Services account.
    //
    // DeploymentConfigName is a required field
    DeploymentConfigName *string `locationName:"deploymentConfigName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a DeleteDeploymentConfig operation.

func (DeleteDeploymentConfigInput) GoString

func (s DeleteDeploymentConfigInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDeploymentConfigInput) SetDeploymentConfigName

func (s *DeleteDeploymentConfigInput) SetDeploymentConfigName(v string) *DeleteDeploymentConfigInput

SetDeploymentConfigName sets the DeploymentConfigName field's value.

func (DeleteDeploymentConfigInput) String

func (s DeleteDeploymentConfigInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDeploymentConfigInput) Validate

func (s *DeleteDeploymentConfigInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDeploymentConfigOutput

type DeleteDeploymentConfigOutput struct {
    // contains filtered or unexported fields
}

func (DeleteDeploymentConfigOutput) GoString

func (s DeleteDeploymentConfigOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteDeploymentConfigOutput) String

func (s DeleteDeploymentConfigOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDeploymentGroupInput

type DeleteDeploymentGroupInput struct {

    // The name of an CodeDeploy application associated with the user or Amazon
    // Web Services account.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`

    // The name of a deployment group for the specified application.
    //
    // DeploymentGroupName is a required field
    DeploymentGroupName *string `locationName:"deploymentGroupName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a DeleteDeploymentGroup operation.

func (DeleteDeploymentGroupInput) GoString

func (s DeleteDeploymentGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDeploymentGroupInput) SetApplicationName

func (s *DeleteDeploymentGroupInput) SetApplicationName(v string) *DeleteDeploymentGroupInput

SetApplicationName sets the ApplicationName field's value.

func (*DeleteDeploymentGroupInput) SetDeploymentGroupName

func (s *DeleteDeploymentGroupInput) SetDeploymentGroupName(v string) *DeleteDeploymentGroupInput

SetDeploymentGroupName sets the DeploymentGroupName field's value.

func (DeleteDeploymentGroupInput) String

func (s DeleteDeploymentGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDeploymentGroupInput) Validate

func (s *DeleteDeploymentGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDeploymentGroupOutput

type DeleteDeploymentGroupOutput struct {

    // If the output contains no data, and the corresponding deployment group contained
    // at least one Auto Scaling group, CodeDeploy successfully removed all corresponding
    // Auto Scaling lifecycle event hooks from the Amazon EC2 instances in the Auto
    // Scaling group. If the output contains data, CodeDeploy could not remove some
    // Auto Scaling lifecycle event hooks from the Amazon EC2 instances in the Auto
    // Scaling group.
    HooksNotCleanedUp []*AutoScalingGroup `locationName:"hooksNotCleanedUp" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a DeleteDeploymentGroup operation.

func (DeleteDeploymentGroupOutput) GoString

func (s DeleteDeploymentGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDeploymentGroupOutput) SetHooksNotCleanedUp

func (s *DeleteDeploymentGroupOutput) SetHooksNotCleanedUp(v []*AutoScalingGroup) *DeleteDeploymentGroupOutput

SetHooksNotCleanedUp sets the HooksNotCleanedUp field's value.

func (DeleteDeploymentGroupOutput) String

func (s DeleteDeploymentGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteGitHubAccountTokenInput

type DeleteGitHubAccountTokenInput struct {

    // The name of the GitHub account connection to delete.
    TokenName *string `locationName:"tokenName" type:"string"`
    // contains filtered or unexported fields
}

Represents the input of a DeleteGitHubAccount operation.

func (DeleteGitHubAccountTokenInput) GoString

func (s DeleteGitHubAccountTokenInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteGitHubAccountTokenInput) SetTokenName

func (s *DeleteGitHubAccountTokenInput) SetTokenName(v string) *DeleteGitHubAccountTokenInput

SetTokenName sets the TokenName field's value.

func (DeleteGitHubAccountTokenInput) String

func (s DeleteGitHubAccountTokenInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteGitHubAccountTokenOutput

type DeleteGitHubAccountTokenOutput struct {

    // The name of the GitHub account connection that was deleted.
    TokenName *string `locationName:"tokenName" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a DeleteGitHubAccountToken operation.

func (DeleteGitHubAccountTokenOutput) GoString

func (s DeleteGitHubAccountTokenOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteGitHubAccountTokenOutput) SetTokenName

func (s *DeleteGitHubAccountTokenOutput) SetTokenName(v string) *DeleteGitHubAccountTokenOutput

SetTokenName sets the TokenName field's value.

func (DeleteGitHubAccountTokenOutput) String

func (s DeleteGitHubAccountTokenOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteResourcesByExternalIdInput

type DeleteResourcesByExternalIdInput struct {

    // The unique ID of an external resource (for example, a CloudFormation stack
    // ID) that is linked to one or more CodeDeploy resources.
    ExternalId *string `locationName:"externalId" type:"string"`
    // contains filtered or unexported fields
}

func (DeleteResourcesByExternalIdInput) GoString

func (s DeleteResourcesByExternalIdInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteResourcesByExternalIdInput) SetExternalId

func (s *DeleteResourcesByExternalIdInput) SetExternalId(v string) *DeleteResourcesByExternalIdInput

SetExternalId sets the ExternalId field's value.

func (DeleteResourcesByExternalIdInput) String

func (s DeleteResourcesByExternalIdInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteResourcesByExternalIdOutput

type DeleteResourcesByExternalIdOutput struct {
    // contains filtered or unexported fields
}

func (DeleteResourcesByExternalIdOutput) GoString

func (s DeleteResourcesByExternalIdOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteResourcesByExternalIdOutput) String

func (s DeleteResourcesByExternalIdOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentAlreadyCompletedException

type DeploymentAlreadyCompletedException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The deployment is already complete.

func (*DeploymentAlreadyCompletedException) Code

func (s *DeploymentAlreadyCompletedException) Code() string

Code returns the exception type name.

func (*DeploymentAlreadyCompletedException) Error

func (s *DeploymentAlreadyCompletedException) Error() string

func (DeploymentAlreadyCompletedException) GoString

func (s DeploymentAlreadyCompletedException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentAlreadyCompletedException) Message

func (s *DeploymentAlreadyCompletedException) Message() string

Message returns the exception's message.

func (*DeploymentAlreadyCompletedException) OrigErr

func (s *DeploymentAlreadyCompletedException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentAlreadyCompletedException) RequestID

func (s *DeploymentAlreadyCompletedException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentAlreadyCompletedException) StatusCode

func (s *DeploymentAlreadyCompletedException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentAlreadyCompletedException) String

func (s DeploymentAlreadyCompletedException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentConfigAlreadyExistsException

type DeploymentConfigAlreadyExistsException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

A deployment configuration with the specified name with the user or Amazon Web Services account already exists.

func (*DeploymentConfigAlreadyExistsException) Code

func (s *DeploymentConfigAlreadyExistsException) Code() string

Code returns the exception type name.

func (*DeploymentConfigAlreadyExistsException) Error

func (s *DeploymentConfigAlreadyExistsException) Error() string

func (DeploymentConfigAlreadyExistsException) GoString

func (s DeploymentConfigAlreadyExistsException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentConfigAlreadyExistsException) Message

func (s *DeploymentConfigAlreadyExistsException) Message() string

Message returns the exception's message.

func (*DeploymentConfigAlreadyExistsException) OrigErr

func (s *DeploymentConfigAlreadyExistsException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentConfigAlreadyExistsException) RequestID

func (s *DeploymentConfigAlreadyExistsException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentConfigAlreadyExistsException) StatusCode

func (s *DeploymentConfigAlreadyExistsException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentConfigAlreadyExistsException) String

func (s DeploymentConfigAlreadyExistsException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentConfigDoesNotExistException

type DeploymentConfigDoesNotExistException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The deployment configuration does not exist with the user or Amazon Web Services account.

func (*DeploymentConfigDoesNotExistException) Code

func (s *DeploymentConfigDoesNotExistException) Code() string

Code returns the exception type name.

func (*DeploymentConfigDoesNotExistException) Error

func (s *DeploymentConfigDoesNotExistException) Error() string

func (DeploymentConfigDoesNotExistException) GoString

func (s DeploymentConfigDoesNotExistException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentConfigDoesNotExistException) Message

func (s *DeploymentConfigDoesNotExistException) Message() string

Message returns the exception's message.

func (*DeploymentConfigDoesNotExistException) OrigErr

func (s *DeploymentConfigDoesNotExistException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentConfigDoesNotExistException) RequestID

func (s *DeploymentConfigDoesNotExistException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentConfigDoesNotExistException) StatusCode

func (s *DeploymentConfigDoesNotExistException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentConfigDoesNotExistException) String

func (s DeploymentConfigDoesNotExistException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentConfigInUseException

type DeploymentConfigInUseException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The deployment configuration is still in use.

func (*DeploymentConfigInUseException) Code

func (s *DeploymentConfigInUseException) Code() string

Code returns the exception type name.

func (*DeploymentConfigInUseException) Error

func (s *DeploymentConfigInUseException) Error() string

func (DeploymentConfigInUseException) GoString

func (s DeploymentConfigInUseException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentConfigInUseException) Message

func (s *DeploymentConfigInUseException) Message() string

Message returns the exception's message.

func (*DeploymentConfigInUseException) OrigErr

func (s *DeploymentConfigInUseException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentConfigInUseException) RequestID

func (s *DeploymentConfigInUseException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentConfigInUseException) StatusCode

func (s *DeploymentConfigInUseException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentConfigInUseException) String

func (s DeploymentConfigInUseException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentConfigInfo

type DeploymentConfigInfo struct {

    // The destination platform type for the deployment (Lambda, Server, or ECS).
    ComputePlatform *string `locationName:"computePlatform" type:"string" enum:"ComputePlatform"`

    // The time at which the deployment configuration was created.
    CreateTime *time.Time `locationName:"createTime" type:"timestamp"`

    // The deployment configuration ID.
    DeploymentConfigId *string `locationName:"deploymentConfigId" type:"string"`

    // The deployment configuration name.
    DeploymentConfigName *string `locationName:"deploymentConfigName" min:"1" type:"string"`

    // Information about the number or percentage of minimum healthy instances.
    MinimumHealthyHosts *MinimumHealthyHosts `locationName:"minimumHealthyHosts" type:"structure"`

    // The configuration that specifies how the deployment traffic is routed. Used
    // for deployments with a Lambda or Amazon ECS compute platform only.
    TrafficRoutingConfig *TrafficRoutingConfig `locationName:"trafficRoutingConfig" type:"structure"`

    // Information about a zonal configuration.
    ZonalConfig *ZonalConfig `locationName:"zonalConfig" type:"structure"`
    // contains filtered or unexported fields
}

Information about a deployment configuration.

func (DeploymentConfigInfo) GoString

func (s DeploymentConfigInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentConfigInfo) SetComputePlatform

func (s *DeploymentConfigInfo) SetComputePlatform(v string) *DeploymentConfigInfo

SetComputePlatform sets the ComputePlatform field's value.

func (*DeploymentConfigInfo) SetCreateTime

func (s *DeploymentConfigInfo) SetCreateTime(v time.Time) *DeploymentConfigInfo

SetCreateTime sets the CreateTime field's value.

func (*DeploymentConfigInfo) SetDeploymentConfigId

func (s *DeploymentConfigInfo) SetDeploymentConfigId(v string) *DeploymentConfigInfo

SetDeploymentConfigId sets the DeploymentConfigId field's value.

func (*DeploymentConfigInfo) SetDeploymentConfigName

func (s *DeploymentConfigInfo) SetDeploymentConfigName(v string) *DeploymentConfigInfo

SetDeploymentConfigName sets the DeploymentConfigName field's value.

func (*DeploymentConfigInfo) SetMinimumHealthyHosts

func (s *DeploymentConfigInfo) SetMinimumHealthyHosts(v *MinimumHealthyHosts) *DeploymentConfigInfo

SetMinimumHealthyHosts sets the MinimumHealthyHosts field's value.

func (*DeploymentConfigInfo) SetTrafficRoutingConfig

func (s *DeploymentConfigInfo) SetTrafficRoutingConfig(v *TrafficRoutingConfig) *DeploymentConfigInfo

SetTrafficRoutingConfig sets the TrafficRoutingConfig field's value.

func (*DeploymentConfigInfo) SetZonalConfig

func (s *DeploymentConfigInfo) SetZonalConfig(v *ZonalConfig) *DeploymentConfigInfo

SetZonalConfig sets the ZonalConfig field's value.

func (DeploymentConfigInfo) String

func (s DeploymentConfigInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentConfigLimitExceededException

type DeploymentConfigLimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The deployment configurations limit was exceeded.

func (*DeploymentConfigLimitExceededException) Code

func (s *DeploymentConfigLimitExceededException) Code() string

Code returns the exception type name.

func (*DeploymentConfigLimitExceededException) Error

func (s *DeploymentConfigLimitExceededException) Error() string

func (DeploymentConfigLimitExceededException) GoString

func (s DeploymentConfigLimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentConfigLimitExceededException) Message

func (s *DeploymentConfigLimitExceededException) Message() string

Message returns the exception's message.

func (*DeploymentConfigLimitExceededException) OrigErr

func (s *DeploymentConfigLimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentConfigLimitExceededException) RequestID

func (s *DeploymentConfigLimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentConfigLimitExceededException) StatusCode

func (s *DeploymentConfigLimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentConfigLimitExceededException) String

func (s DeploymentConfigLimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentConfigNameRequiredException

type DeploymentConfigNameRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The deployment configuration name was not specified.

func (*DeploymentConfigNameRequiredException) Code

func (s *DeploymentConfigNameRequiredException) Code() string

Code returns the exception type name.

func (*DeploymentConfigNameRequiredException) Error

func (s *DeploymentConfigNameRequiredException) Error() string

func (DeploymentConfigNameRequiredException) GoString

func (s DeploymentConfigNameRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentConfigNameRequiredException) Message

func (s *DeploymentConfigNameRequiredException) Message() string

Message returns the exception's message.

func (*DeploymentConfigNameRequiredException) OrigErr

func (s *DeploymentConfigNameRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentConfigNameRequiredException) RequestID

func (s *DeploymentConfigNameRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentConfigNameRequiredException) StatusCode

func (s *DeploymentConfigNameRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentConfigNameRequiredException) String

func (s DeploymentConfigNameRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentDoesNotExistException

type DeploymentDoesNotExistException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The deployment with the user or Amazon Web Services account does not exist.

func (*DeploymentDoesNotExistException) Code

func (s *DeploymentDoesNotExistException) Code() string

Code returns the exception type name.

func (*DeploymentDoesNotExistException) Error

func (s *DeploymentDoesNotExistException) Error() string

func (DeploymentDoesNotExistException) GoString

func (s DeploymentDoesNotExistException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentDoesNotExistException) Message

func (s *DeploymentDoesNotExistException) Message() string

Message returns the exception's message.

func (*DeploymentDoesNotExistException) OrigErr

func (s *DeploymentDoesNotExistException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentDoesNotExistException) RequestID

func (s *DeploymentDoesNotExistException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentDoesNotExistException) StatusCode

func (s *DeploymentDoesNotExistException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentDoesNotExistException) String

func (s DeploymentDoesNotExistException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentGroupAlreadyExistsException

type DeploymentGroupAlreadyExistsException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

A deployment group with the specified name with the user or Amazon Web Services account already exists.

func (*DeploymentGroupAlreadyExistsException) Code

func (s *DeploymentGroupAlreadyExistsException) Code() string

Code returns the exception type name.

func (*DeploymentGroupAlreadyExistsException) Error

func (s *DeploymentGroupAlreadyExistsException) Error() string

func (DeploymentGroupAlreadyExistsException) GoString

func (s DeploymentGroupAlreadyExistsException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentGroupAlreadyExistsException) Message

func (s *DeploymentGroupAlreadyExistsException) Message() string

Message returns the exception's message.

func (*DeploymentGroupAlreadyExistsException) OrigErr

func (s *DeploymentGroupAlreadyExistsException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentGroupAlreadyExistsException) RequestID

func (s *DeploymentGroupAlreadyExistsException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentGroupAlreadyExistsException) StatusCode

func (s *DeploymentGroupAlreadyExistsException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentGroupAlreadyExistsException) String

func (s DeploymentGroupAlreadyExistsException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentGroupDoesNotExistException

type DeploymentGroupDoesNotExistException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The named deployment group with the user or Amazon Web Services account does not exist.

func (*DeploymentGroupDoesNotExistException) Code

func (s *DeploymentGroupDoesNotExistException) Code() string

Code returns the exception type name.

func (*DeploymentGroupDoesNotExistException) Error

func (s *DeploymentGroupDoesNotExistException) Error() string

func (DeploymentGroupDoesNotExistException) GoString

func (s DeploymentGroupDoesNotExistException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentGroupDoesNotExistException) Message

func (s *DeploymentGroupDoesNotExistException) Message() string

Message returns the exception's message.

func (*DeploymentGroupDoesNotExistException) OrigErr

func (s *DeploymentGroupDoesNotExistException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentGroupDoesNotExistException) RequestID

func (s *DeploymentGroupDoesNotExistException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentGroupDoesNotExistException) StatusCode

func (s *DeploymentGroupDoesNotExistException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentGroupDoesNotExistException) String

func (s DeploymentGroupDoesNotExistException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentGroupInfo

type DeploymentGroupInfo struct {

    // A list of alarms associated with the deployment group.
    AlarmConfiguration *AlarmConfiguration `locationName:"alarmConfiguration" type:"structure"`

    // The application name.
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string"`

    // Information about the automatic rollback configuration associated with the
    // deployment group.
    AutoRollbackConfiguration *AutoRollbackConfiguration `locationName:"autoRollbackConfiguration" type:"structure"`

    // A list of associated Auto Scaling groups.
    AutoScalingGroups []*AutoScalingGroup `locationName:"autoScalingGroups" type:"list"`

    // Information about blue/green deployment options for a deployment group.
    BlueGreenDeploymentConfiguration *BlueGreenDeploymentConfiguration `locationName:"blueGreenDeploymentConfiguration" type:"structure"`

    // The destination platform type for the deployment (Lambda, Server, or ECS).
    ComputePlatform *string `locationName:"computePlatform" type:"string" enum:"ComputePlatform"`

    // The deployment configuration name.
    DeploymentConfigName *string `locationName:"deploymentConfigName" min:"1" type:"string"`

    // The deployment group ID.
    DeploymentGroupId *string `locationName:"deploymentGroupId" type:"string"`

    // The deployment group name.
    DeploymentGroupName *string `locationName:"deploymentGroupName" min:"1" type:"string"`

    // Information about the type of deployment, either in-place or blue/green,
    // you want to run and whether to route deployment traffic behind a load balancer.
    DeploymentStyle *DeploymentStyle `locationName:"deploymentStyle" type:"structure"`

    // The Amazon EC2 tags on which to filter. The deployment group includes EC2
    // instances with any of the specified tags.
    Ec2TagFilters []*EC2TagFilter `locationName:"ec2TagFilters" type:"list"`

    // Information about groups of tags applied to an Amazon EC2 instance. The deployment
    // group includes only Amazon EC2 instances identified by all of the tag groups.
    // Cannot be used in the same call as ec2TagFilters.
    Ec2TagSet *EC2TagSet `locationName:"ec2TagSet" type:"structure"`

    // The target Amazon ECS services in the deployment group. This applies only
    // to deployment groups that use the Amazon ECS compute platform. A target Amazon
    // ECS service is specified as an Amazon ECS cluster and service name pair using
    // the format <clustername>:<servicename>.
    EcsServices []*ECSService `locationName:"ecsServices" type:"list"`

    // Information about the most recent attempted deployment to the deployment
    // group.
    LastAttemptedDeployment *LastDeploymentInfo `locationName:"lastAttemptedDeployment" type:"structure"`

    // Information about the most recent successful deployment to the deployment
    // group.
    LastSuccessfulDeployment *LastDeploymentInfo `locationName:"lastSuccessfulDeployment" type:"structure"`

    // Information about the load balancer to use in a deployment.
    LoadBalancerInfo *LoadBalancerInfo `locationName:"loadBalancerInfo" type:"structure"`

    // The on-premises instance tags on which to filter. The deployment group includes
    // on-premises instances with any of the specified tags.
    OnPremisesInstanceTagFilters []*TagFilter `locationName:"onPremisesInstanceTagFilters" type:"list"`

    // Information about groups of tags applied to an on-premises instance. The
    // deployment group includes only on-premises instances identified by all the
    // tag groups. Cannot be used in the same call as onPremisesInstanceTagFilters.
    OnPremisesTagSet *OnPremisesTagSet `locationName:"onPremisesTagSet" type:"structure"`

    // Indicates what happens when new Amazon EC2 instances are launched mid-deployment
    // and do not receive the deployed application revision.
    //
    // If this option is set to UPDATE or is unspecified, CodeDeploy initiates one
    // or more 'auto-update outdated instances' deployments to apply the deployed
    // application revision to the new Amazon EC2 instances.
    //
    // If this option is set to IGNORE, CodeDeploy does not initiate a deployment
    // to update the new Amazon EC2 instances. This may result in instances having
    // different revisions.
    OutdatedInstancesStrategy *string `locationName:"outdatedInstancesStrategy" type:"string" enum:"OutdatedInstancesStrategy"`

    // A service role Amazon Resource Name (ARN) that grants CodeDeploy permission
    // to make calls to Amazon Web Services services on your behalf. For more information,
    // see Create a Service Role for CodeDeploy (https://docs.aws.amazon.com/codedeploy/latest/userguide/getting-started-create-service-role.html)
    // in the CodeDeploy User Guide.
    ServiceRoleArn *string `locationName:"serviceRoleArn" type:"string"`

    // Information about the deployment group's target revision, including type
    // and location.
    TargetRevision *RevisionLocation `locationName:"targetRevision" type:"structure"`

    // Indicates whether the deployment group was configured to have CodeDeploy
    // install a termination hook into an Auto Scaling group.
    //
    // For more information about the termination hook, see How Amazon EC2 Auto
    // Scaling works with CodeDeploy (https://docs.aws.amazon.com/codedeploy/latest/userguide/integrations-aws-auto-scaling.html#integrations-aws-auto-scaling-behaviors)
    // in the CodeDeploy User Guide.
    TerminationHookEnabled *bool `locationName:"terminationHookEnabled" type:"boolean"`

    // Information about triggers associated with the deployment group.
    TriggerConfigurations []*TriggerConfig `locationName:"triggerConfigurations" type:"list"`
    // contains filtered or unexported fields
}

Information about a deployment group.

func (DeploymentGroupInfo) GoString

func (s DeploymentGroupInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentGroupInfo) SetAlarmConfiguration

func (s *DeploymentGroupInfo) SetAlarmConfiguration(v *AlarmConfiguration) *DeploymentGroupInfo

SetAlarmConfiguration sets the AlarmConfiguration field's value.

func (*DeploymentGroupInfo) SetApplicationName

func (s *DeploymentGroupInfo) SetApplicationName(v string) *DeploymentGroupInfo

SetApplicationName sets the ApplicationName field's value.

func (*DeploymentGroupInfo) SetAutoRollbackConfiguration

func (s *DeploymentGroupInfo) SetAutoRollbackConfiguration(v *AutoRollbackConfiguration) *DeploymentGroupInfo

SetAutoRollbackConfiguration sets the AutoRollbackConfiguration field's value.

func (*DeploymentGroupInfo) SetAutoScalingGroups

func (s *DeploymentGroupInfo) SetAutoScalingGroups(v []*AutoScalingGroup) *DeploymentGroupInfo

SetAutoScalingGroups sets the AutoScalingGroups field's value.

func (*DeploymentGroupInfo) SetBlueGreenDeploymentConfiguration

func (s *DeploymentGroupInfo) SetBlueGreenDeploymentConfiguration(v *BlueGreenDeploymentConfiguration) *DeploymentGroupInfo

SetBlueGreenDeploymentConfiguration sets the BlueGreenDeploymentConfiguration field's value.

func (*DeploymentGroupInfo) SetComputePlatform

func (s *DeploymentGroupInfo) SetComputePlatform(v string) *DeploymentGroupInfo

SetComputePlatform sets the ComputePlatform field's value.

func (*DeploymentGroupInfo) SetDeploymentConfigName

func (s *DeploymentGroupInfo) SetDeploymentConfigName(v string) *DeploymentGroupInfo

SetDeploymentConfigName sets the DeploymentConfigName field's value.

func (*DeploymentGroupInfo) SetDeploymentGroupId

func (s *DeploymentGroupInfo) SetDeploymentGroupId(v string) *DeploymentGroupInfo

SetDeploymentGroupId sets the DeploymentGroupId field's value.

func (*DeploymentGroupInfo) SetDeploymentGroupName

func (s *DeploymentGroupInfo) SetDeploymentGroupName(v string) *DeploymentGroupInfo

SetDeploymentGroupName sets the DeploymentGroupName field's value.

func (*DeploymentGroupInfo) SetDeploymentStyle

func (s *DeploymentGroupInfo) SetDeploymentStyle(v *DeploymentStyle) *DeploymentGroupInfo

SetDeploymentStyle sets the DeploymentStyle field's value.

func (*DeploymentGroupInfo) SetEc2TagFilters

func (s *DeploymentGroupInfo) SetEc2TagFilters(v []*EC2TagFilter) *DeploymentGroupInfo

SetEc2TagFilters sets the Ec2TagFilters field's value.

func (*DeploymentGroupInfo) SetEc2TagSet

func (s *DeploymentGroupInfo) SetEc2TagSet(v *EC2TagSet) *DeploymentGroupInfo

SetEc2TagSet sets the Ec2TagSet field's value.

func (*DeploymentGroupInfo) SetEcsServices

func (s *DeploymentGroupInfo) SetEcsServices(v []*ECSService) *DeploymentGroupInfo

SetEcsServices sets the EcsServices field's value.

func (*DeploymentGroupInfo) SetLastAttemptedDeployment

func (s *DeploymentGroupInfo) SetLastAttemptedDeployment(v *LastDeploymentInfo) *DeploymentGroupInfo

SetLastAttemptedDeployment sets the LastAttemptedDeployment field's value.

func (*DeploymentGroupInfo) SetLastSuccessfulDeployment

func (s *DeploymentGroupInfo) SetLastSuccessfulDeployment(v *LastDeploymentInfo) *DeploymentGroupInfo

SetLastSuccessfulDeployment sets the LastSuccessfulDeployment field's value.

func (*DeploymentGroupInfo) SetLoadBalancerInfo

func (s *DeploymentGroupInfo) SetLoadBalancerInfo(v *LoadBalancerInfo) *DeploymentGroupInfo

SetLoadBalancerInfo sets the LoadBalancerInfo field's value.

func (*DeploymentGroupInfo) SetOnPremisesInstanceTagFilters

func (s *DeploymentGroupInfo) SetOnPremisesInstanceTagFilters(v []*TagFilter) *DeploymentGroupInfo

SetOnPremisesInstanceTagFilters sets the OnPremisesInstanceTagFilters field's value.

func (*DeploymentGroupInfo) SetOnPremisesTagSet

func (s *DeploymentGroupInfo) SetOnPremisesTagSet(v *OnPremisesTagSet) *DeploymentGroupInfo

SetOnPremisesTagSet sets the OnPremisesTagSet field's value.

func (*DeploymentGroupInfo) SetOutdatedInstancesStrategy

func (s *DeploymentGroupInfo) SetOutdatedInstancesStrategy(v string) *DeploymentGroupInfo

SetOutdatedInstancesStrategy sets the OutdatedInstancesStrategy field's value.

func (*DeploymentGroupInfo) SetServiceRoleArn

func (s *DeploymentGroupInfo) SetServiceRoleArn(v string) *DeploymentGroupInfo

SetServiceRoleArn sets the ServiceRoleArn field's value.

func (*DeploymentGroupInfo) SetTargetRevision

func (s *DeploymentGroupInfo) SetTargetRevision(v *RevisionLocation) *DeploymentGroupInfo

SetTargetRevision sets the TargetRevision field's value.

func (*DeploymentGroupInfo) SetTerminationHookEnabled

func (s *DeploymentGroupInfo) SetTerminationHookEnabled(v bool) *DeploymentGroupInfo

SetTerminationHookEnabled sets the TerminationHookEnabled field's value.

func (*DeploymentGroupInfo) SetTriggerConfigurations

func (s *DeploymentGroupInfo) SetTriggerConfigurations(v []*TriggerConfig) *DeploymentGroupInfo

SetTriggerConfigurations sets the TriggerConfigurations field's value.

func (DeploymentGroupInfo) String

func (s DeploymentGroupInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentGroupLimitExceededException

type DeploymentGroupLimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The deployment groups limit was exceeded.

func (*DeploymentGroupLimitExceededException) Code

func (s *DeploymentGroupLimitExceededException) Code() string

Code returns the exception type name.

func (*DeploymentGroupLimitExceededException) Error

func (s *DeploymentGroupLimitExceededException) Error() string

func (DeploymentGroupLimitExceededException) GoString

func (s DeploymentGroupLimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentGroupLimitExceededException) Message

func (s *DeploymentGroupLimitExceededException) Message() string

Message returns the exception's message.

func (*DeploymentGroupLimitExceededException) OrigErr

func (s *DeploymentGroupLimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentGroupLimitExceededException) RequestID

func (s *DeploymentGroupLimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentGroupLimitExceededException) StatusCode

func (s *DeploymentGroupLimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentGroupLimitExceededException) String

func (s DeploymentGroupLimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentGroupNameRequiredException

type DeploymentGroupNameRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The deployment group name was not specified.

func (*DeploymentGroupNameRequiredException) Code

func (s *DeploymentGroupNameRequiredException) Code() string

Code returns the exception type name.

func (*DeploymentGroupNameRequiredException) Error

func (s *DeploymentGroupNameRequiredException) Error() string

func (DeploymentGroupNameRequiredException) GoString

func (s DeploymentGroupNameRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentGroupNameRequiredException) Message

func (s *DeploymentGroupNameRequiredException) Message() string

Message returns the exception's message.

func (*DeploymentGroupNameRequiredException) OrigErr

func (s *DeploymentGroupNameRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentGroupNameRequiredException) RequestID

func (s *DeploymentGroupNameRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentGroupNameRequiredException) StatusCode

func (s *DeploymentGroupNameRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentGroupNameRequiredException) String

func (s DeploymentGroupNameRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentIdRequiredException

type DeploymentIdRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

At least one deployment ID must be specified.

func (*DeploymentIdRequiredException) Code

func (s *DeploymentIdRequiredException) Code() string

Code returns the exception type name.

func (*DeploymentIdRequiredException) Error

func (s *DeploymentIdRequiredException) Error() string

func (DeploymentIdRequiredException) GoString

func (s DeploymentIdRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentIdRequiredException) Message

func (s *DeploymentIdRequiredException) Message() string

Message returns the exception's message.

func (*DeploymentIdRequiredException) OrigErr

func (s *DeploymentIdRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentIdRequiredException) RequestID

func (s *DeploymentIdRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentIdRequiredException) StatusCode

func (s *DeploymentIdRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentIdRequiredException) String

func (s DeploymentIdRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentInfo

type DeploymentInfo struct {

    // Provides information about the results of a deployment, such as whether instances
    // in the original environment in a blue/green deployment were not terminated.
    AdditionalDeploymentStatusInfo *string `locationName:"additionalDeploymentStatusInfo" deprecated:"true" type:"string"`

    // The application name.
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string"`

    // Information about the automatic rollback configuration associated with the
    // deployment.
    AutoRollbackConfiguration *AutoRollbackConfiguration `locationName:"autoRollbackConfiguration" type:"structure"`

    // Information about blue/green deployment options for this deployment.
    BlueGreenDeploymentConfiguration *BlueGreenDeploymentConfiguration `locationName:"blueGreenDeploymentConfiguration" type:"structure"`

    // A timestamp that indicates when the deployment was complete.
    CompleteTime *time.Time `locationName:"completeTime" type:"timestamp"`

    // The destination platform type for the deployment (Lambda, Server, or ECS).
    ComputePlatform *string `locationName:"computePlatform" type:"string" enum:"ComputePlatform"`

    // A timestamp that indicates when the deployment was created.
    CreateTime *time.Time `locationName:"createTime" type:"timestamp"`

    // The means by which the deployment was created:
    //
    //    * user: A user created the deployment.
    //
    //    * autoscaling: Amazon EC2 Auto Scaling created the deployment.
    //
    //    * codeDeployRollback: A rollback process created the deployment.
    //
    //    * CodeDeployAutoUpdate: An auto-update process created the deployment
    //    when it detected outdated Amazon EC2 instances.
    Creator *string `locationName:"creator" type:"string" enum:"DeploymentCreator"`

    // The deployment configuration name.
    DeploymentConfigName *string `locationName:"deploymentConfigName" min:"1" type:"string"`

    // The deployment group name.
    DeploymentGroupName *string `locationName:"deploymentGroupName" min:"1" type:"string"`

    // The unique ID of a deployment.
    DeploymentId *string `locationName:"deploymentId" type:"string"`

    // A summary of the deployment status of the instances in the deployment.
    DeploymentOverview *DeploymentOverview `locationName:"deploymentOverview" type:"structure"`

    // Messages that contain information about the status of a deployment.
    DeploymentStatusMessages []*string `locationName:"deploymentStatusMessages" type:"list"`

    // Information about the type of deployment, either in-place or blue/green,
    // you want to run and whether to route deployment traffic behind a load balancer.
    DeploymentStyle *DeploymentStyle `locationName:"deploymentStyle" type:"structure"`

    // A comment about the deployment.
    Description *string `locationName:"description" type:"string"`

    // Information about any error associated with this deployment.
    ErrorInformation *ErrorInformation `locationName:"errorInformation" type:"structure"`

    // The unique ID for an external resource (for example, a CloudFormation stack
    // ID) that is linked to this deployment.
    ExternalId *string `locationName:"externalId" type:"string"`

    // Information about how CodeDeploy handles files that already exist in a deployment
    // target location but weren't part of the previous successful deployment.
    //
    //    * DISALLOW: The deployment fails. This is also the default behavior if
    //    no option is specified.
    //
    //    * OVERWRITE: The version of the file from the application revision currently
    //    being deployed replaces the version already on the instance.
    //
    //    * RETAIN: The version of the file already on the instance is kept and
    //    used as part of the new deployment.
    FileExistsBehavior *string `locationName:"fileExistsBehavior" type:"string" enum:"FileExistsBehavior"`

    // If true, then if an ApplicationStop, BeforeBlockTraffic, or AfterBlockTraffic
    // deployment lifecycle event to an instance fails, then the deployment continues
    // to the next deployment lifecycle event. For example, if ApplicationStop fails,
    // the deployment continues with DownloadBundle. If BeforeBlockTraffic fails,
    // the deployment continues with BlockTraffic. If AfterBlockTraffic fails, the
    // deployment continues with ApplicationStop.
    //
    // If false or not specified, then if a lifecycle event fails during a deployment
    // to an instance, that deployment fails. If deployment to that instance is
    // part of an overall deployment and the number of healthy hosts is not less
    // than the minimum number of healthy hosts, then a deployment to the next instance
    // is attempted.
    //
    // During a deployment, the CodeDeploy agent runs the scripts specified for
    // ApplicationStop, BeforeBlockTraffic, and AfterBlockTraffic in the AppSpec
    // file from the previous successful deployment. (All other scripts are run
    // from the AppSpec file in the current deployment.) If one of these scripts
    // contains an error and does not run successfully, the deployment can fail.
    //
    // If the cause of the failure is a script from the last successful deployment
    // that will never run successfully, create a new deployment and use ignoreApplicationStopFailures
    // to specify that the ApplicationStop, BeforeBlockTraffic, and AfterBlockTraffic
    // failures should be ignored.
    IgnoreApplicationStopFailures *bool `locationName:"ignoreApplicationStopFailures" type:"boolean"`

    // Indicates whether the wait period set for the termination of instances in
    // the original environment has started. Status is 'false' if the KEEP_ALIVE
    // option is specified. Otherwise, 'true' as soon as the termination wait period
    // starts.
    InstanceTerminationWaitTimeStarted *bool `locationName:"instanceTerminationWaitTimeStarted" type:"boolean"`

    // Information about the load balancer used in the deployment.
    LoadBalancerInfo *LoadBalancerInfo `locationName:"loadBalancerInfo" type:"structure"`

    // Information about alarms associated with a deployment or deployment group.
    OverrideAlarmConfiguration *AlarmConfiguration `locationName:"overrideAlarmConfiguration" type:"structure"`

    // Information about the application revision that was deployed to the deployment
    // group before the most recent successful deployment.
    PreviousRevision *RevisionLocation `locationName:"previousRevision" type:"structure"`

    // Information about deployments related to the specified deployment.
    RelatedDeployments *RelatedDeployments `locationName:"relatedDeployments" type:"structure"`

    // Information about the location of stored application artifacts and the service
    // from which to retrieve them.
    Revision *RevisionLocation `locationName:"revision" type:"structure"`

    // Information about a deployment rollback.
    RollbackInfo *RollbackInfo `locationName:"rollbackInfo" type:"structure"`

    // A timestamp that indicates when the deployment was deployed to the deployment
    // group.
    //
    // In some cases, the reported value of the start time might be later than the
    // complete time. This is due to differences in the clock settings of backend
    // servers that participate in the deployment process.
    StartTime *time.Time `locationName:"startTime" type:"timestamp"`

    // The current state of the deployment as a whole.
    Status *string `locationName:"status" type:"string" enum:"DeploymentStatus"`

    // Information about the instances that belong to the replacement environment
    // in a blue/green deployment.
    TargetInstances *TargetInstances `locationName:"targetInstances" type:"structure"`

    // Indicates whether only instances that are not running the latest application
    // revision are to be deployed to.
    UpdateOutdatedInstancesOnly *bool `locationName:"updateOutdatedInstancesOnly" type:"boolean"`
    // contains filtered or unexported fields
}

Information about a deployment.

func (DeploymentInfo) GoString

func (s DeploymentInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentInfo) SetAdditionalDeploymentStatusInfo

func (s *DeploymentInfo) SetAdditionalDeploymentStatusInfo(v string) *DeploymentInfo

SetAdditionalDeploymentStatusInfo sets the AdditionalDeploymentStatusInfo field's value.

func (*DeploymentInfo) SetApplicationName

func (s *DeploymentInfo) SetApplicationName(v string) *DeploymentInfo

SetApplicationName sets the ApplicationName field's value.

func (*DeploymentInfo) SetAutoRollbackConfiguration

func (s *DeploymentInfo) SetAutoRollbackConfiguration(v *AutoRollbackConfiguration) *DeploymentInfo

SetAutoRollbackConfiguration sets the AutoRollbackConfiguration field's value.

func (*DeploymentInfo) SetBlueGreenDeploymentConfiguration

func (s *DeploymentInfo) SetBlueGreenDeploymentConfiguration(v *BlueGreenDeploymentConfiguration) *DeploymentInfo

SetBlueGreenDeploymentConfiguration sets the BlueGreenDeploymentConfiguration field's value.

func (*DeploymentInfo) SetCompleteTime

func (s *DeploymentInfo) SetCompleteTime(v time.Time) *DeploymentInfo

SetCompleteTime sets the CompleteTime field's value.

func (*DeploymentInfo) SetComputePlatform

func (s *DeploymentInfo) SetComputePlatform(v string) *DeploymentInfo

SetComputePlatform sets the ComputePlatform field's value.

func (*DeploymentInfo) SetCreateTime

func (s *DeploymentInfo) SetCreateTime(v time.Time) *DeploymentInfo

SetCreateTime sets the CreateTime field's value.

func (*DeploymentInfo) SetCreator

func (s *DeploymentInfo) SetCreator(v string) *DeploymentInfo

SetCreator sets the Creator field's value.

func (*DeploymentInfo) SetDeploymentConfigName

func (s *DeploymentInfo) SetDeploymentConfigName(v string) *DeploymentInfo

SetDeploymentConfigName sets the DeploymentConfigName field's value.

func (*DeploymentInfo) SetDeploymentGroupName

func (s *DeploymentInfo) SetDeploymentGroupName(v string) *DeploymentInfo

SetDeploymentGroupName sets the DeploymentGroupName field's value.

func (*DeploymentInfo) SetDeploymentId

func (s *DeploymentInfo) SetDeploymentId(v string) *DeploymentInfo

SetDeploymentId sets the DeploymentId field's value.

func (*DeploymentInfo) SetDeploymentOverview

func (s *DeploymentInfo) SetDeploymentOverview(v *DeploymentOverview) *DeploymentInfo

SetDeploymentOverview sets the DeploymentOverview field's value.

func (*DeploymentInfo) SetDeploymentStatusMessages

func (s *DeploymentInfo) SetDeploymentStatusMessages(v []*string) *DeploymentInfo

SetDeploymentStatusMessages sets the DeploymentStatusMessages field's value.

func (*DeploymentInfo) SetDeploymentStyle

func (s *DeploymentInfo) SetDeploymentStyle(v *DeploymentStyle) *DeploymentInfo

SetDeploymentStyle sets the DeploymentStyle field's value.

func (*DeploymentInfo) SetDescription

func (s *DeploymentInfo) SetDescription(v string) *DeploymentInfo

SetDescription sets the Description field's value.

func (*DeploymentInfo) SetErrorInformation

func (s *DeploymentInfo) SetErrorInformation(v *ErrorInformation) *DeploymentInfo

SetErrorInformation sets the ErrorInformation field's value.

func (*DeploymentInfo) SetExternalId

func (s *DeploymentInfo) SetExternalId(v string) *DeploymentInfo

SetExternalId sets the ExternalId field's value.

func (*DeploymentInfo) SetFileExistsBehavior

func (s *DeploymentInfo) SetFileExistsBehavior(v string) *DeploymentInfo

SetFileExistsBehavior sets the FileExistsBehavior field's value.

func (*DeploymentInfo) SetIgnoreApplicationStopFailures

func (s *DeploymentInfo) SetIgnoreApplicationStopFailures(v bool) *DeploymentInfo

SetIgnoreApplicationStopFailures sets the IgnoreApplicationStopFailures field's value.

func (*DeploymentInfo) SetInstanceTerminationWaitTimeStarted

func (s *DeploymentInfo) SetInstanceTerminationWaitTimeStarted(v bool) *DeploymentInfo

SetInstanceTerminationWaitTimeStarted sets the InstanceTerminationWaitTimeStarted field's value.

func (*DeploymentInfo) SetLoadBalancerInfo

func (s *DeploymentInfo) SetLoadBalancerInfo(v *LoadBalancerInfo) *DeploymentInfo

SetLoadBalancerInfo sets the LoadBalancerInfo field's value.

func (*DeploymentInfo) SetOverrideAlarmConfiguration

func (s *DeploymentInfo) SetOverrideAlarmConfiguration(v *AlarmConfiguration) *DeploymentInfo

SetOverrideAlarmConfiguration sets the OverrideAlarmConfiguration field's value.

func (*DeploymentInfo) SetPreviousRevision

func (s *DeploymentInfo) SetPreviousRevision(v *RevisionLocation) *DeploymentInfo

SetPreviousRevision sets the PreviousRevision field's value.

func (*DeploymentInfo) SetRelatedDeployments

func (s *DeploymentInfo) SetRelatedDeployments(v *RelatedDeployments) *DeploymentInfo

SetRelatedDeployments sets the RelatedDeployments field's value.

func (*DeploymentInfo) SetRevision

func (s *DeploymentInfo) SetRevision(v *RevisionLocation) *DeploymentInfo

SetRevision sets the Revision field's value.

func (*DeploymentInfo) SetRollbackInfo

func (s *DeploymentInfo) SetRollbackInfo(v *RollbackInfo) *DeploymentInfo

SetRollbackInfo sets the RollbackInfo field's value.

func (*DeploymentInfo) SetStartTime

func (s *DeploymentInfo) SetStartTime(v time.Time) *DeploymentInfo

SetStartTime sets the StartTime field's value.

func (*DeploymentInfo) SetStatus

func (s *DeploymentInfo) SetStatus(v string) *DeploymentInfo

SetStatus sets the Status field's value.

func (*DeploymentInfo) SetTargetInstances

func (s *DeploymentInfo) SetTargetInstances(v *TargetInstances) *DeploymentInfo

SetTargetInstances sets the TargetInstances field's value.

func (*DeploymentInfo) SetUpdateOutdatedInstancesOnly

func (s *DeploymentInfo) SetUpdateOutdatedInstancesOnly(v bool) *DeploymentInfo

SetUpdateOutdatedInstancesOnly sets the UpdateOutdatedInstancesOnly field's value.

func (DeploymentInfo) String

func (s DeploymentInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentIsNotInReadyStateException

type DeploymentIsNotInReadyStateException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The deployment does not have a status of Ready and can't continue yet.

func (*DeploymentIsNotInReadyStateException) Code

func (s *DeploymentIsNotInReadyStateException) Code() string

Code returns the exception type name.

func (*DeploymentIsNotInReadyStateException) Error

func (s *DeploymentIsNotInReadyStateException) Error() string

func (DeploymentIsNotInReadyStateException) GoString

func (s DeploymentIsNotInReadyStateException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentIsNotInReadyStateException) Message

func (s *DeploymentIsNotInReadyStateException) Message() string

Message returns the exception's message.

func (*DeploymentIsNotInReadyStateException) OrigErr

func (s *DeploymentIsNotInReadyStateException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentIsNotInReadyStateException) RequestID

func (s *DeploymentIsNotInReadyStateException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentIsNotInReadyStateException) StatusCode

func (s *DeploymentIsNotInReadyStateException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentIsNotInReadyStateException) String

func (s DeploymentIsNotInReadyStateException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentLimitExceededException

type DeploymentLimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The number of allowed deployments was exceeded.

func (*DeploymentLimitExceededException) Code

func (s *DeploymentLimitExceededException) Code() string

Code returns the exception type name.

func (*DeploymentLimitExceededException) Error

func (s *DeploymentLimitExceededException) Error() string

func (DeploymentLimitExceededException) GoString

func (s DeploymentLimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentLimitExceededException) Message

func (s *DeploymentLimitExceededException) Message() string

Message returns the exception's message.

func (*DeploymentLimitExceededException) OrigErr

func (s *DeploymentLimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentLimitExceededException) RequestID

func (s *DeploymentLimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentLimitExceededException) StatusCode

func (s *DeploymentLimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentLimitExceededException) String

func (s DeploymentLimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentNotStartedException

type DeploymentNotStartedException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified deployment has not started.

func (*DeploymentNotStartedException) Code

func (s *DeploymentNotStartedException) Code() string

Code returns the exception type name.

func (*DeploymentNotStartedException) Error

func (s *DeploymentNotStartedException) Error() string

func (DeploymentNotStartedException) GoString

func (s DeploymentNotStartedException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentNotStartedException) Message

func (s *DeploymentNotStartedException) Message() string

Message returns the exception's message.

func (*DeploymentNotStartedException) OrigErr

func (s *DeploymentNotStartedException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentNotStartedException) RequestID

func (s *DeploymentNotStartedException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentNotStartedException) StatusCode

func (s *DeploymentNotStartedException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentNotStartedException) String

func (s DeploymentNotStartedException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentOverview

type DeploymentOverview struct {

    // The number of instances in the deployment in a failed state.
    Failed *int64 `type:"long"`

    // The number of instances in which the deployment is in progress.
    InProgress *int64 `type:"long"`

    // The number of instances in the deployment in a pending state.
    Pending *int64 `type:"long"`

    // The number of instances in a replacement environment ready to receive traffic
    // in a blue/green deployment.
    Ready *int64 `type:"long"`

    // The number of instances in the deployment in a skipped state.
    Skipped *int64 `type:"long"`

    // The number of instances in the deployment to which revisions have been successfully
    // deployed.
    Succeeded *int64 `type:"long"`
    // contains filtered or unexported fields
}

Information about the deployment status of the instances in the deployment.

func (DeploymentOverview) GoString

func (s DeploymentOverview) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentOverview) SetFailed

func (s *DeploymentOverview) SetFailed(v int64) *DeploymentOverview

SetFailed sets the Failed field's value.

func (*DeploymentOverview) SetInProgress

func (s *DeploymentOverview) SetInProgress(v int64) *DeploymentOverview

SetInProgress sets the InProgress field's value.

func (*DeploymentOverview) SetPending

func (s *DeploymentOverview) SetPending(v int64) *DeploymentOverview

SetPending sets the Pending field's value.

func (*DeploymentOverview) SetReady

func (s *DeploymentOverview) SetReady(v int64) *DeploymentOverview

SetReady sets the Ready field's value.

func (*DeploymentOverview) SetSkipped

func (s *DeploymentOverview) SetSkipped(v int64) *DeploymentOverview

SetSkipped sets the Skipped field's value.

func (*DeploymentOverview) SetSucceeded

func (s *DeploymentOverview) SetSucceeded(v int64) *DeploymentOverview

SetSucceeded sets the Succeeded field's value.

func (DeploymentOverview) String

func (s DeploymentOverview) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentReadyOption

type DeploymentReadyOption struct {

    // Information about when to reroute traffic from an original environment to
    // a replacement environment in a blue/green deployment.
    //
    //    * CONTINUE_DEPLOYMENT: Register new instances with the load balancer immediately
    //    after the new application revision is installed on the instances in the
    //    replacement environment.
    //
    //    * STOP_DEPLOYMENT: Do not register new instances with a load balancer
    //    unless traffic rerouting is started using ContinueDeployment. If traffic
    //    rerouting is not started before the end of the specified wait period,
    //    the deployment status is changed to Stopped.
    ActionOnTimeout *string `locationName:"actionOnTimeout" type:"string" enum:"DeploymentReadyAction"`

    // The number of minutes to wait before the status of a blue/green deployment
    // is changed to Stopped if rerouting is not started manually. Applies only
    // to the STOP_DEPLOYMENT option for actionOnTimeout.
    WaitTimeInMinutes *int64 `locationName:"waitTimeInMinutes" type:"integer"`
    // contains filtered or unexported fields
}

Information about how traffic is rerouted to instances in a replacement environment in a blue/green deployment.

func (DeploymentReadyOption) GoString

func (s DeploymentReadyOption) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentReadyOption) SetActionOnTimeout

func (s *DeploymentReadyOption) SetActionOnTimeout(v string) *DeploymentReadyOption

SetActionOnTimeout sets the ActionOnTimeout field's value.

func (*DeploymentReadyOption) SetWaitTimeInMinutes

func (s *DeploymentReadyOption) SetWaitTimeInMinutes(v int64) *DeploymentReadyOption

SetWaitTimeInMinutes sets the WaitTimeInMinutes field's value.

func (DeploymentReadyOption) String

func (s DeploymentReadyOption) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentStyle

type DeploymentStyle struct {

    // Indicates whether to route deployment traffic behind a load balancer.
    DeploymentOption *string `locationName:"deploymentOption" type:"string" enum:"DeploymentOption"`

    // Indicates whether to run an in-place deployment or a blue/green deployment.
    DeploymentType *string `locationName:"deploymentType" type:"string" enum:"DeploymentType"`
    // contains filtered or unexported fields
}

Information about the type of deployment, either in-place or blue/green, you want to run and whether to route deployment traffic behind a load balancer.

func (DeploymentStyle) GoString

func (s DeploymentStyle) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentStyle) SetDeploymentOption

func (s *DeploymentStyle) SetDeploymentOption(v string) *DeploymentStyle

SetDeploymentOption sets the DeploymentOption field's value.

func (*DeploymentStyle) SetDeploymentType

func (s *DeploymentStyle) SetDeploymentType(v string) *DeploymentStyle

SetDeploymentType sets the DeploymentType field's value.

func (DeploymentStyle) String

func (s DeploymentStyle) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentTarget

type DeploymentTarget struct {

    // Information about the target to be updated by an CloudFormation blue/green
    // deployment. This target type is used for all deployments initiated by a CloudFormation
    // stack update.
    CloudFormationTarget *CloudFormationTarget `locationName:"cloudFormationTarget" type:"structure"`

    // The deployment type that is specific to the deployment's compute platform
    // or deployments initiated by a CloudFormation stack update.
    DeploymentTargetType *string `locationName:"deploymentTargetType" type:"string" enum:"DeploymentTargetType"`

    // Information about the target for a deployment that uses the Amazon ECS compute
    // platform.
    EcsTarget *ECSTarget `locationName:"ecsTarget" type:"structure"`

    // Information about the target for a deployment that uses the EC2/On-premises
    // compute platform.
    InstanceTarget *InstanceTarget `locationName:"instanceTarget" type:"structure"`

    // Information about the target for a deployment that uses the Lambda compute
    // platform.
    LambdaTarget *LambdaTarget `locationName:"lambdaTarget" type:"structure"`
    // contains filtered or unexported fields
}

Information about the deployment target.

func (DeploymentTarget) GoString

func (s DeploymentTarget) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentTarget) SetCloudFormationTarget

func (s *DeploymentTarget) SetCloudFormationTarget(v *CloudFormationTarget) *DeploymentTarget

SetCloudFormationTarget sets the CloudFormationTarget field's value.

func (*DeploymentTarget) SetDeploymentTargetType

func (s *DeploymentTarget) SetDeploymentTargetType(v string) *DeploymentTarget

SetDeploymentTargetType sets the DeploymentTargetType field's value.

func (*DeploymentTarget) SetEcsTarget

func (s *DeploymentTarget) SetEcsTarget(v *ECSTarget) *DeploymentTarget

SetEcsTarget sets the EcsTarget field's value.

func (*DeploymentTarget) SetInstanceTarget

func (s *DeploymentTarget) SetInstanceTarget(v *InstanceTarget) *DeploymentTarget

SetInstanceTarget sets the InstanceTarget field's value.

func (*DeploymentTarget) SetLambdaTarget

func (s *DeploymentTarget) SetLambdaTarget(v *LambdaTarget) *DeploymentTarget

SetLambdaTarget sets the LambdaTarget field's value.

func (DeploymentTarget) String

func (s DeploymentTarget) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentTargetDoesNotExistException

type DeploymentTargetDoesNotExistException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The provided target ID does not belong to the attempted deployment.

func (*DeploymentTargetDoesNotExistException) Code

func (s *DeploymentTargetDoesNotExistException) Code() string

Code returns the exception type name.

func (*DeploymentTargetDoesNotExistException) Error

func (s *DeploymentTargetDoesNotExistException) Error() string

func (DeploymentTargetDoesNotExistException) GoString

func (s DeploymentTargetDoesNotExistException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentTargetDoesNotExistException) Message

func (s *DeploymentTargetDoesNotExistException) Message() string

Message returns the exception's message.

func (*DeploymentTargetDoesNotExistException) OrigErr

func (s *DeploymentTargetDoesNotExistException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentTargetDoesNotExistException) RequestID

func (s *DeploymentTargetDoesNotExistException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentTargetDoesNotExistException) StatusCode

func (s *DeploymentTargetDoesNotExistException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentTargetDoesNotExistException) String

func (s DeploymentTargetDoesNotExistException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentTargetIdRequiredException

type DeploymentTargetIdRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

A deployment target ID was not provided.

func (*DeploymentTargetIdRequiredException) Code

func (s *DeploymentTargetIdRequiredException) Code() string

Code returns the exception type name.

func (*DeploymentTargetIdRequiredException) Error

func (s *DeploymentTargetIdRequiredException) Error() string

func (DeploymentTargetIdRequiredException) GoString

func (s DeploymentTargetIdRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentTargetIdRequiredException) Message

func (s *DeploymentTargetIdRequiredException) Message() string

Message returns the exception's message.

func (*DeploymentTargetIdRequiredException) OrigErr

func (s *DeploymentTargetIdRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentTargetIdRequiredException) RequestID

func (s *DeploymentTargetIdRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentTargetIdRequiredException) StatusCode

func (s *DeploymentTargetIdRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentTargetIdRequiredException) String

func (s DeploymentTargetIdRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeploymentTargetListSizeExceededException

type DeploymentTargetListSizeExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The maximum number of targets that can be associated with an Amazon ECS or Lambda deployment was exceeded. The target list of both types of deployments must have exactly one item. This exception does not apply to EC2/On-premises deployments.

func (*DeploymentTargetListSizeExceededException) Code

func (s *DeploymentTargetListSizeExceededException) Code() string

Code returns the exception type name.

func (*DeploymentTargetListSizeExceededException) Error

func (s *DeploymentTargetListSizeExceededException) Error() string

func (DeploymentTargetListSizeExceededException) GoString

func (s DeploymentTargetListSizeExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeploymentTargetListSizeExceededException) Message

func (s *DeploymentTargetListSizeExceededException) Message() string

Message returns the exception's message.

func (*DeploymentTargetListSizeExceededException) OrigErr

func (s *DeploymentTargetListSizeExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DeploymentTargetListSizeExceededException) RequestID

func (s *DeploymentTargetListSizeExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DeploymentTargetListSizeExceededException) StatusCode

func (s *DeploymentTargetListSizeExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DeploymentTargetListSizeExceededException) String

func (s DeploymentTargetListSizeExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeregisterOnPremisesInstanceInput

type DeregisterOnPremisesInstanceInput struct {

    // The name of the on-premises instance to deregister.
    //
    // InstanceName is a required field
    InstanceName *string `locationName:"instanceName" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a DeregisterOnPremisesInstance operation.

func (DeregisterOnPremisesInstanceInput) GoString

func (s DeregisterOnPremisesInstanceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeregisterOnPremisesInstanceInput) SetInstanceName

func (s *DeregisterOnPremisesInstanceInput) SetInstanceName(v string) *DeregisterOnPremisesInstanceInput

SetInstanceName sets the InstanceName field's value.

func (DeregisterOnPremisesInstanceInput) String

func (s DeregisterOnPremisesInstanceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeregisterOnPremisesInstanceInput) Validate

func (s *DeregisterOnPremisesInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeregisterOnPremisesInstanceOutput

type DeregisterOnPremisesInstanceOutput struct {
    // contains filtered or unexported fields
}

func (DeregisterOnPremisesInstanceOutput) GoString

func (s DeregisterOnPremisesInstanceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeregisterOnPremisesInstanceOutput) String

func (s DeregisterOnPremisesInstanceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescriptionTooLongException

type DescriptionTooLongException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The description is too long.

func (*DescriptionTooLongException) Code

func (s *DescriptionTooLongException) Code() string

Code returns the exception type name.

func (*DescriptionTooLongException) Error

func (s *DescriptionTooLongException) Error() string

func (DescriptionTooLongException) GoString

func (s DescriptionTooLongException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescriptionTooLongException) Message

func (s *DescriptionTooLongException) Message() string

Message returns the exception's message.

func (*DescriptionTooLongException) OrigErr

func (s *DescriptionTooLongException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DescriptionTooLongException) RequestID

func (s *DescriptionTooLongException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DescriptionTooLongException) StatusCode

func (s *DescriptionTooLongException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DescriptionTooLongException) String

func (s DescriptionTooLongException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Diagnostics

type Diagnostics struct {

    // The associated error code:
    //
    //    * Success: The specified script ran.
    //
    //    * ScriptMissing: The specified script was not found in the specified location.
    //
    //    * ScriptNotExecutable: The specified script is not a recognized executable
    //    file type.
    //
    //    * ScriptTimedOut: The specified script did not finish running in the specified
    //    time period.
    //
    //    * ScriptFailed: The specified script failed to run as expected.
    //
    //    * UnknownError: The specified script did not run for an unknown reason.
    ErrorCode *string `locationName:"errorCode" type:"string" enum:"LifecycleErrorCode"`

    // The last portion of the diagnostic log.
    //
    // If available, CodeDeploy returns up to the last 4 KB of the diagnostic log.
    LogTail *string `locationName:"logTail" type:"string"`

    // The message associated with the error.
    Message *string `locationName:"message" type:"string"`

    // The name of the script.
    ScriptName *string `locationName:"scriptName" type:"string"`
    // contains filtered or unexported fields
}

Diagnostic information about executable scripts that are part of a deployment.

func (Diagnostics) GoString

func (s Diagnostics) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Diagnostics) SetErrorCode

func (s *Diagnostics) SetErrorCode(v string) *Diagnostics

SetErrorCode sets the ErrorCode field's value.

func (*Diagnostics) SetLogTail

func (s *Diagnostics) SetLogTail(v string) *Diagnostics

SetLogTail sets the LogTail field's value.

func (*Diagnostics) SetMessage

func (s *Diagnostics) SetMessage(v string) *Diagnostics

SetMessage sets the Message field's value.

func (*Diagnostics) SetScriptName

func (s *Diagnostics) SetScriptName(v string) *Diagnostics

SetScriptName sets the ScriptName field's value.

func (Diagnostics) String

func (s Diagnostics) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type EC2TagFilter

type EC2TagFilter struct {

    // The tag filter key.
    Key *string `type:"string"`

    // The tag filter type:
    //
    //    * KEY_ONLY: Key only.
    //
    //    * VALUE_ONLY: Value only.
    //
    //    * KEY_AND_VALUE: Key and value.
    Type *string `type:"string" enum:"EC2TagFilterType"`

    // The tag filter value.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

Information about an EC2 tag filter.

func (EC2TagFilter) GoString

func (s EC2TagFilter) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EC2TagFilter) SetKey

func (s *EC2TagFilter) SetKey(v string) *EC2TagFilter

SetKey sets the Key field's value.

func (*EC2TagFilter) SetType

func (s *EC2TagFilter) SetType(v string) *EC2TagFilter

SetType sets the Type field's value.

func (*EC2TagFilter) SetValue

func (s *EC2TagFilter) SetValue(v string) *EC2TagFilter

SetValue sets the Value field's value.

func (EC2TagFilter) String

func (s EC2TagFilter) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type EC2TagSet

type EC2TagSet struct {

    // A list that contains other lists of Amazon EC2 instance tag groups. For an
    // instance to be included in the deployment group, it must be identified by
    // all of the tag groups in the list.
    Ec2TagSetList [][]*EC2TagFilter `locationName:"ec2TagSetList" type:"list"`
    // contains filtered or unexported fields
}

Information about groups of Amazon EC2 instance tags.

func (EC2TagSet) GoString

func (s EC2TagSet) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EC2TagSet) SetEc2TagSetList

func (s *EC2TagSet) SetEc2TagSetList(v [][]*EC2TagFilter) *EC2TagSet

SetEc2TagSetList sets the Ec2TagSetList field's value.

func (EC2TagSet) String

func (s EC2TagSet) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ECSService

type ECSService struct {

    // The name of the cluster that the Amazon ECS service is associated with.
    ClusterName *string `locationName:"clusterName" type:"string"`

    // The name of the target Amazon ECS service.
    ServiceName *string `locationName:"serviceName" type:"string"`
    // contains filtered or unexported fields
}

Contains the service and cluster names used to identify an Amazon ECS deployment's target.

func (ECSService) GoString

func (s ECSService) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ECSService) SetClusterName

func (s *ECSService) SetClusterName(v string) *ECSService

SetClusterName sets the ClusterName field's value.

func (*ECSService) SetServiceName

func (s *ECSService) SetServiceName(v string) *ECSService

SetServiceName sets the ServiceName field's value.

func (ECSService) String

func (s ECSService) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ECSServiceMappingLimitExceededException

type ECSServiceMappingLimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The Amazon ECS service is associated with more than one deployment groups. An Amazon ECS service can be associated with only one deployment group.

func (*ECSServiceMappingLimitExceededException) Code

func (s *ECSServiceMappingLimitExceededException) Code() string

Code returns the exception type name.

func (*ECSServiceMappingLimitExceededException) Error

func (s *ECSServiceMappingLimitExceededException) Error() string

func (ECSServiceMappingLimitExceededException) GoString

func (s ECSServiceMappingLimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ECSServiceMappingLimitExceededException) Message

func (s *ECSServiceMappingLimitExceededException) Message() string

Message returns the exception's message.

func (*ECSServiceMappingLimitExceededException) OrigErr

func (s *ECSServiceMappingLimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ECSServiceMappingLimitExceededException) RequestID

func (s *ECSServiceMappingLimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ECSServiceMappingLimitExceededException) StatusCode

func (s *ECSServiceMappingLimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ECSServiceMappingLimitExceededException) String

func (s ECSServiceMappingLimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ECSTarget

type ECSTarget struct {

    // The unique ID of a deployment.
    DeploymentId *string `locationName:"deploymentId" type:"string"`

    // The date and time when the target Amazon ECS application was updated by a
    // deployment.
    LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"`

    // The lifecycle events of the deployment to this target Amazon ECS application.
    LifecycleEvents []*LifecycleEvent `locationName:"lifecycleEvents" type:"list"`

    // The status an Amazon ECS deployment's target ECS application.
    Status *string `locationName:"status" type:"string" enum:"TargetStatus"`

    // The Amazon Resource Name (ARN) of the target.
    TargetArn *string `locationName:"targetArn" type:"string"`

    // The unique ID of a deployment target that has a type of ecsTarget.
    TargetId *string `locationName:"targetId" type:"string"`

    // The ECSTaskSet objects associated with the ECS target.
    TaskSetsInfo []*ECSTaskSet `locationName:"taskSetsInfo" type:"list"`
    // contains filtered or unexported fields
}

Information about the target of an Amazon ECS deployment.

func (ECSTarget) GoString

func (s ECSTarget) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ECSTarget) SetDeploymentId

func (s *ECSTarget) SetDeploymentId(v string) *ECSTarget

SetDeploymentId sets the DeploymentId field's value.

func (*ECSTarget) SetLastUpdatedAt

func (s *ECSTarget) SetLastUpdatedAt(v time.Time) *ECSTarget

SetLastUpdatedAt sets the LastUpdatedAt field's value.

func (*ECSTarget) SetLifecycleEvents

func (s *ECSTarget) SetLifecycleEvents(v []*LifecycleEvent) *ECSTarget

SetLifecycleEvents sets the LifecycleEvents field's value.

func (*ECSTarget) SetStatus

func (s *ECSTarget) SetStatus(v string) *ECSTarget

SetStatus sets the Status field's value.

func (*ECSTarget) SetTargetArn

func (s *ECSTarget) SetTargetArn(v string) *ECSTarget

SetTargetArn sets the TargetArn field's value.

func (*ECSTarget) SetTargetId

func (s *ECSTarget) SetTargetId(v string) *ECSTarget

SetTargetId sets the TargetId field's value.

func (*ECSTarget) SetTaskSetsInfo

func (s *ECSTarget) SetTaskSetsInfo(v []*ECSTaskSet) *ECSTarget

SetTaskSetsInfo sets the TaskSetsInfo field's value.

func (ECSTarget) String

func (s ECSTarget) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ECSTaskSet

type ECSTaskSet struct {

    // The number of tasks in a task set. During a deployment that uses the Amazon
    // ECS compute type, CodeDeploy instructs Amazon ECS to create a new task set
    // and uses this value to determine how many tasks to create. After the updated
    // task set is created, CodeDeploy shifts traffic to the new task set.
    DesiredCount *int64 `locationName:"desiredCount" type:"long"`

    // A unique ID of an ECSTaskSet.
    Identifer *string `locationName:"identifer" type:"string"`

    // The number of tasks in the task set that are in the PENDING status during
    // an Amazon ECS deployment. A task in the PENDING state is preparing to enter
    // the RUNNING state. A task set enters the PENDING status when it launches
    // for the first time, or when it is restarted after being in the STOPPED state.
    PendingCount *int64 `locationName:"pendingCount" type:"long"`

    // The number of tasks in the task set that are in the RUNNING status during
    // an Amazon ECS deployment. A task in the RUNNING state is running and ready
    // for use.
    RunningCount *int64 `locationName:"runningCount" type:"long"`

    // The status of the task set. There are three valid task set statuses:
    //
    //    * PRIMARY: Indicates the task set is serving production traffic.
    //
    //    * ACTIVE: Indicates the task set is not serving production traffic.
    //
    //    * DRAINING: Indicates the tasks in the task set are being stopped and
    //    their corresponding targets are being deregistered from their target group.
    Status *string `locationName:"status" type:"string"`

    // The target group associated with the task set. The target group is used by
    // CodeDeploy to manage traffic to a task set.
    TargetGroup *TargetGroupInfo `locationName:"targetGroup" type:"structure"`

    // A label that identifies whether the ECS task set is an original target (BLUE)
    // or a replacement target (GREEN).
    TaskSetLabel *string `locationName:"taskSetLabel" type:"string" enum:"TargetLabel"`

    // The percentage of traffic served by this task set.
    TrafficWeight *float64 `locationName:"trafficWeight" type:"double"`
    // contains filtered or unexported fields
}

Information about a set of Amazon ECS tasks in an CodeDeploy deployment. An Amazon ECS task set includes details such as the desired number of tasks, how many tasks are running, and whether the task set serves production traffic. An CodeDeploy application that uses the Amazon ECS compute platform deploys a containerized application in an Amazon ECS service as a task set.

func (ECSTaskSet) GoString

func (s ECSTaskSet) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ECSTaskSet) SetDesiredCount

func (s *ECSTaskSet) SetDesiredCount(v int64) *ECSTaskSet

SetDesiredCount sets the DesiredCount field's value.

func (*ECSTaskSet) SetIdentifer

func (s *ECSTaskSet) SetIdentifer(v string) *ECSTaskSet

SetIdentifer sets the Identifer field's value.

func (*ECSTaskSet) SetPendingCount

func (s *ECSTaskSet) SetPendingCount(v int64) *ECSTaskSet

SetPendingCount sets the PendingCount field's value.

func (*ECSTaskSet) SetRunningCount

func (s *ECSTaskSet) SetRunningCount(v int64) *ECSTaskSet

SetRunningCount sets the RunningCount field's value.

func (*ECSTaskSet) SetStatus

func (s *ECSTaskSet) SetStatus(v string) *ECSTaskSet

SetStatus sets the Status field's value.

func (*ECSTaskSet) SetTargetGroup

func (s *ECSTaskSet) SetTargetGroup(v *TargetGroupInfo) *ECSTaskSet

SetTargetGroup sets the TargetGroup field's value.

func (*ECSTaskSet) SetTaskSetLabel

func (s *ECSTaskSet) SetTaskSetLabel(v string) *ECSTaskSet

SetTaskSetLabel sets the TaskSetLabel field's value.

func (*ECSTaskSet) SetTrafficWeight

func (s *ECSTaskSet) SetTrafficWeight(v float64) *ECSTaskSet

SetTrafficWeight sets the TrafficWeight field's value.

func (ECSTaskSet) String

func (s ECSTaskSet) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ELBInfo

type ELBInfo struct {

    // For blue/green deployments, the name of the Classic Load Balancer that is
    // used to route traffic from original instances to replacement instances in
    // a blue/green deployment. For in-place deployments, the name of the Classic
    // Load Balancer that instances are deregistered from so they are not serving
    // traffic during a deployment, and then re-registered with after the deployment
    // is complete.
    Name *string `locationName:"name" type:"string"`
    // contains filtered or unexported fields
}

Information about a Classic Load Balancer in Elastic Load Balancing to use in a deployment. Instances are registered directly with a load balancer, and traffic is routed to the load balancer.

func (ELBInfo) GoString

func (s ELBInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ELBInfo) SetName

func (s *ELBInfo) SetName(v string) *ELBInfo

SetName sets the Name field's value.

func (ELBInfo) String

func (s ELBInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ErrorInformation

type ErrorInformation struct {

    // For more information, see Error Codes for CodeDeploy (https://docs.aws.amazon.com/codedeploy/latest/userguide/error-codes.html)
    // in the CodeDeploy User Guide (https://docs.aws.amazon.com/codedeploy/latest/userguide).
    //
    // The error code:
    //
    //    * APPLICATION_MISSING: The application was missing. This error code is
    //    most likely raised if the application is deleted after the deployment
    //    is created, but before it is started.
    //
    //    * DEPLOYMENT_GROUP_MISSING: The deployment group was missing. This error
    //    code is most likely raised if the deployment group is deleted after the
    //    deployment is created, but before it is started.
    //
    //    * HEALTH_CONSTRAINTS: The deployment failed on too many instances to be
    //    successfully deployed within the instance health constraints specified.
    //
    //    * HEALTH_CONSTRAINTS_INVALID: The revision cannot be successfully deployed
    //    within the instance health constraints specified.
    //
    //    * IAM_ROLE_MISSING: The service role cannot be accessed.
    //
    //    * IAM_ROLE_PERMISSIONS: The service role does not have the correct permissions.
    //
    //    * INTERNAL_ERROR: There was an internal error.
    //
    //    * NO_EC2_SUBSCRIPTION: The calling account is not subscribed to Amazon
    //    EC2.
    //
    //    * NO_INSTANCES: No instances were specified, or no instances can be found.
    //
    //    * OVER_MAX_INSTANCES: The maximum number of instances was exceeded.
    //
    //    * THROTTLED: The operation was throttled because the calling account exceeded
    //    the throttling limits of one or more Amazon Web Services services.
    //
    //    * TIMEOUT: The deployment has timed out.
    //
    //    * REVISION_MISSING: The revision ID was missing. This error code is most
    //    likely raised if the revision is deleted after the deployment is created,
    //    but before it is started.
    Code *string `locationName:"code" type:"string" enum:"ErrorCode"`

    // An accompanying error message.
    Message *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

Information about a deployment error.

func (ErrorInformation) GoString

func (s ErrorInformation) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ErrorInformation) SetCode

func (s *ErrorInformation) SetCode(v string) *ErrorInformation

SetCode sets the Code field's value.

func (*ErrorInformation) SetMessage

func (s *ErrorInformation) SetMessage(v string) *ErrorInformation

SetMessage sets the Message field's value.

func (ErrorInformation) String

func (s ErrorInformation) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GenericRevisionInfo

type GenericRevisionInfo struct {

    // The deployment groups for which this is the current target revision.
    DeploymentGroups []*string `locationName:"deploymentGroups" type:"list"`

    // A comment about the revision.
    Description *string `locationName:"description" type:"string"`

    // When the revision was first used by CodeDeploy.
    FirstUsedTime *time.Time `locationName:"firstUsedTime" type:"timestamp"`

    // When the revision was last used by CodeDeploy.
    LastUsedTime *time.Time `locationName:"lastUsedTime" type:"timestamp"`

    // When the revision was registered with CodeDeploy.
    RegisterTime *time.Time `locationName:"registerTime" type:"timestamp"`
    // contains filtered or unexported fields
}

Information about an application revision.

func (GenericRevisionInfo) GoString

func (s GenericRevisionInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GenericRevisionInfo) SetDeploymentGroups

func (s *GenericRevisionInfo) SetDeploymentGroups(v []*string) *GenericRevisionInfo

SetDeploymentGroups sets the DeploymentGroups field's value.

func (*GenericRevisionInfo) SetDescription

func (s *GenericRevisionInfo) SetDescription(v string) *GenericRevisionInfo

SetDescription sets the Description field's value.

func (*GenericRevisionInfo) SetFirstUsedTime

func (s *GenericRevisionInfo) SetFirstUsedTime(v time.Time) *GenericRevisionInfo

SetFirstUsedTime sets the FirstUsedTime field's value.

func (*GenericRevisionInfo) SetLastUsedTime

func (s *GenericRevisionInfo) SetLastUsedTime(v time.Time) *GenericRevisionInfo

SetLastUsedTime sets the LastUsedTime field's value.

func (*GenericRevisionInfo) SetRegisterTime

func (s *GenericRevisionInfo) SetRegisterTime(v time.Time) *GenericRevisionInfo

SetRegisterTime sets the RegisterTime field's value.

func (GenericRevisionInfo) String

func (s GenericRevisionInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetApplicationInput

type GetApplicationInput struct {

    // The name of an CodeDeploy application associated with the user or Amazon
    // Web Services account.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a GetApplication operation.

func (GetApplicationInput) GoString

func (s GetApplicationInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetApplicationInput) SetApplicationName

func (s *GetApplicationInput) SetApplicationName(v string) *GetApplicationInput

SetApplicationName sets the ApplicationName field's value.

func (GetApplicationInput) String

func (s GetApplicationInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetApplicationInput) Validate

func (s *GetApplicationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetApplicationOutput

type GetApplicationOutput struct {

    // Information about the application.
    Application *ApplicationInfo `locationName:"application" type:"structure"`
    // contains filtered or unexported fields
}

Represents the output of a GetApplication operation.

func (GetApplicationOutput) GoString

func (s GetApplicationOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetApplicationOutput) SetApplication

func (s *GetApplicationOutput) SetApplication(v *ApplicationInfo) *GetApplicationOutput

SetApplication sets the Application field's value.

func (GetApplicationOutput) String

func (s GetApplicationOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetApplicationRevisionInput

type GetApplicationRevisionInput struct {

    // The name of the application that corresponds to the revision.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`

    // Information about the application revision to get, including type and location.
    //
    // Revision is a required field
    Revision *RevisionLocation `locationName:"revision" type:"structure" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a GetApplicationRevision operation.

func (GetApplicationRevisionInput) GoString

func (s GetApplicationRevisionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetApplicationRevisionInput) SetApplicationName

func (s *GetApplicationRevisionInput) SetApplicationName(v string) *GetApplicationRevisionInput

SetApplicationName sets the ApplicationName field's value.

func (*GetApplicationRevisionInput) SetRevision

func (s *GetApplicationRevisionInput) SetRevision(v *RevisionLocation) *GetApplicationRevisionInput

SetRevision sets the Revision field's value.

func (GetApplicationRevisionInput) String

func (s GetApplicationRevisionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetApplicationRevisionInput) Validate

func (s *GetApplicationRevisionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetApplicationRevisionOutput

type GetApplicationRevisionOutput struct {

    // The name of the application that corresponds to the revision.
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string"`

    // Additional information about the revision, including type and location.
    Revision *RevisionLocation `locationName:"revision" type:"structure"`

    // General information about the revision.
    RevisionInfo *GenericRevisionInfo `locationName:"revisionInfo" type:"structure"`
    // contains filtered or unexported fields
}

Represents the output of a GetApplicationRevision operation.

func (GetApplicationRevisionOutput) GoString

func (s GetApplicationRevisionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetApplicationRevisionOutput) SetApplicationName

func (s *GetApplicationRevisionOutput) SetApplicationName(v string) *GetApplicationRevisionOutput

SetApplicationName sets the ApplicationName field's value.

func (*GetApplicationRevisionOutput) SetRevision

func (s *GetApplicationRevisionOutput) SetRevision(v *RevisionLocation) *GetApplicationRevisionOutput

SetRevision sets the Revision field's value.

func (*GetApplicationRevisionOutput) SetRevisionInfo

func (s *GetApplicationRevisionOutput) SetRevisionInfo(v *GenericRevisionInfo) *GetApplicationRevisionOutput

SetRevisionInfo sets the RevisionInfo field's value.

func (GetApplicationRevisionOutput) String

func (s GetApplicationRevisionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetDeploymentConfigInput

type GetDeploymentConfigInput struct {

    // The name of a deployment configuration associated with the user or Amazon
    // Web Services account.
    //
    // DeploymentConfigName is a required field
    DeploymentConfigName *string `locationName:"deploymentConfigName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a GetDeploymentConfig operation.

func (GetDeploymentConfigInput) GoString

func (s GetDeploymentConfigInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentConfigInput) SetDeploymentConfigName

func (s *GetDeploymentConfigInput) SetDeploymentConfigName(v string) *GetDeploymentConfigInput

SetDeploymentConfigName sets the DeploymentConfigName field's value.

func (GetDeploymentConfigInput) String

func (s GetDeploymentConfigInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentConfigInput) Validate

func (s *GetDeploymentConfigInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetDeploymentConfigOutput

type GetDeploymentConfigOutput struct {

    // Information about the deployment configuration.
    DeploymentConfigInfo *DeploymentConfigInfo `locationName:"deploymentConfigInfo" type:"structure"`
    // contains filtered or unexported fields
}

Represents the output of a GetDeploymentConfig operation.

func (GetDeploymentConfigOutput) GoString

func (s GetDeploymentConfigOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentConfigOutput) SetDeploymentConfigInfo

func (s *GetDeploymentConfigOutput) SetDeploymentConfigInfo(v *DeploymentConfigInfo) *GetDeploymentConfigOutput

SetDeploymentConfigInfo sets the DeploymentConfigInfo field's value.

func (GetDeploymentConfigOutput) String

func (s GetDeploymentConfigOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetDeploymentGroupInput

type GetDeploymentGroupInput struct {

    // The name of an CodeDeploy application associated with the user or Amazon
    // Web Services account.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`

    // The name of a deployment group for the specified application.
    //
    // DeploymentGroupName is a required field
    DeploymentGroupName *string `locationName:"deploymentGroupName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a GetDeploymentGroup operation.

func (GetDeploymentGroupInput) GoString

func (s GetDeploymentGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentGroupInput) SetApplicationName

func (s *GetDeploymentGroupInput) SetApplicationName(v string) *GetDeploymentGroupInput

SetApplicationName sets the ApplicationName field's value.

func (*GetDeploymentGroupInput) SetDeploymentGroupName

func (s *GetDeploymentGroupInput) SetDeploymentGroupName(v string) *GetDeploymentGroupInput

SetDeploymentGroupName sets the DeploymentGroupName field's value.

func (GetDeploymentGroupInput) String

func (s GetDeploymentGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentGroupInput) Validate

func (s *GetDeploymentGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetDeploymentGroupOutput

type GetDeploymentGroupOutput struct {

    // Information about the deployment group.
    DeploymentGroupInfo *DeploymentGroupInfo `locationName:"deploymentGroupInfo" type:"structure"`
    // contains filtered or unexported fields
}

Represents the output of a GetDeploymentGroup operation.

func (GetDeploymentGroupOutput) GoString

func (s GetDeploymentGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentGroupOutput) SetDeploymentGroupInfo

func (s *GetDeploymentGroupOutput) SetDeploymentGroupInfo(v *DeploymentGroupInfo) *GetDeploymentGroupOutput

SetDeploymentGroupInfo sets the DeploymentGroupInfo field's value.

func (GetDeploymentGroupOutput) String

func (s GetDeploymentGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetDeploymentInput

type GetDeploymentInput struct {

    // The unique ID of a deployment associated with the user or Amazon Web Services
    // account.
    //
    // DeploymentId is a required field
    DeploymentId *string `locationName:"deploymentId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a GetDeployment operation.

func (GetDeploymentInput) GoString

func (s GetDeploymentInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentInput) SetDeploymentId

func (s *GetDeploymentInput) SetDeploymentId(v string) *GetDeploymentInput

SetDeploymentId sets the DeploymentId field's value.

func (GetDeploymentInput) String

func (s GetDeploymentInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentInput) Validate

func (s *GetDeploymentInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetDeploymentInstanceInput

type GetDeploymentInstanceInput struct {

    // The unique ID of a deployment.
    //
    // DeploymentId is a required field
    DeploymentId *string `locationName:"deploymentId" type:"string" required:"true"`

    // The unique ID of an instance in the deployment group.
    //
    // InstanceId is a required field
    InstanceId *string `locationName:"instanceId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a GetDeploymentInstance operation.

func (GetDeploymentInstanceInput) GoString

func (s GetDeploymentInstanceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentInstanceInput) SetDeploymentId

func (s *GetDeploymentInstanceInput) SetDeploymentId(v string) *GetDeploymentInstanceInput

SetDeploymentId sets the DeploymentId field's value.

func (*GetDeploymentInstanceInput) SetInstanceId

func (s *GetDeploymentInstanceInput) SetInstanceId(v string) *GetDeploymentInstanceInput

SetInstanceId sets the InstanceId field's value.

func (GetDeploymentInstanceInput) String

func (s GetDeploymentInstanceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentInstanceInput) Validate

func (s *GetDeploymentInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetDeploymentInstanceOutput

type GetDeploymentInstanceOutput struct {

    // Information about the instance.
    InstanceSummary *InstanceSummary `locationName:"instanceSummary" deprecated:"true" type:"structure"`
    // contains filtered or unexported fields
}

Represents the output of a GetDeploymentInstance operation.

func (GetDeploymentInstanceOutput) GoString

func (s GetDeploymentInstanceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentInstanceOutput) SetInstanceSummary

func (s *GetDeploymentInstanceOutput) SetInstanceSummary(v *InstanceSummary) *GetDeploymentInstanceOutput

SetInstanceSummary sets the InstanceSummary field's value.

func (GetDeploymentInstanceOutput) String

func (s GetDeploymentInstanceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetDeploymentOutput

type GetDeploymentOutput struct {

    // Information about the deployment.
    DeploymentInfo *DeploymentInfo `locationName:"deploymentInfo" type:"structure"`
    // contains filtered or unexported fields
}

Represents the output of a GetDeployment operation.

func (GetDeploymentOutput) GoString

func (s GetDeploymentOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentOutput) SetDeploymentInfo

func (s *GetDeploymentOutput) SetDeploymentInfo(v *DeploymentInfo) *GetDeploymentOutput

SetDeploymentInfo sets the DeploymentInfo field's value.

func (GetDeploymentOutput) String

func (s GetDeploymentOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetDeploymentTargetInput

type GetDeploymentTargetInput struct {

    // The unique ID of a deployment.
    //
    // DeploymentId is a required field
    DeploymentId *string `locationName:"deploymentId" type:"string" required:"true"`

    // The unique ID of a deployment target.
    //
    // TargetId is a required field
    TargetId *string `locationName:"targetId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetDeploymentTargetInput) GoString

func (s GetDeploymentTargetInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentTargetInput) SetDeploymentId

func (s *GetDeploymentTargetInput) SetDeploymentId(v string) *GetDeploymentTargetInput

SetDeploymentId sets the DeploymentId field's value.

func (*GetDeploymentTargetInput) SetTargetId

func (s *GetDeploymentTargetInput) SetTargetId(v string) *GetDeploymentTargetInput

SetTargetId sets the TargetId field's value.

func (GetDeploymentTargetInput) String

func (s GetDeploymentTargetInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentTargetInput) Validate

func (s *GetDeploymentTargetInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetDeploymentTargetOutput

type GetDeploymentTargetOutput struct {

    // A deployment target that contains information about a deployment such as
    // its status, lifecycle events, and when it was last updated. It also contains
    // metadata about the deployment target. The deployment target metadata depends
    // on the deployment target's type (instanceTarget, lambdaTarget, or ecsTarget).
    DeploymentTarget *DeploymentTarget `locationName:"deploymentTarget" type:"structure"`
    // contains filtered or unexported fields
}

func (GetDeploymentTargetOutput) GoString

func (s GetDeploymentTargetOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDeploymentTargetOutput) SetDeploymentTarget

func (s *GetDeploymentTargetOutput) SetDeploymentTarget(v *DeploymentTarget) *GetDeploymentTargetOutput

SetDeploymentTarget sets the DeploymentTarget field's value.

func (GetDeploymentTargetOutput) String

func (s GetDeploymentTargetOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetOnPremisesInstanceInput

type GetOnPremisesInstanceInput struct {

    // The name of the on-premises instance about which to get information.
    //
    // InstanceName is a required field
    InstanceName *string `locationName:"instanceName" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a GetOnPremisesInstance operation.

func (GetOnPremisesInstanceInput) GoString

func (s GetOnPremisesInstanceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetOnPremisesInstanceInput) SetInstanceName

func (s *GetOnPremisesInstanceInput) SetInstanceName(v string) *GetOnPremisesInstanceInput

SetInstanceName sets the InstanceName field's value.

func (GetOnPremisesInstanceInput) String

func (s GetOnPremisesInstanceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetOnPremisesInstanceInput) Validate

func (s *GetOnPremisesInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetOnPremisesInstanceOutput

type GetOnPremisesInstanceOutput struct {

    // Information about the on-premises instance.
    InstanceInfo *InstanceInfo `locationName:"instanceInfo" type:"structure"`
    // contains filtered or unexported fields
}

Represents the output of a GetOnPremisesInstance operation.

func (GetOnPremisesInstanceOutput) GoString

func (s GetOnPremisesInstanceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetOnPremisesInstanceOutput) SetInstanceInfo

func (s *GetOnPremisesInstanceOutput) SetInstanceInfo(v *InstanceInfo) *GetOnPremisesInstanceOutput

SetInstanceInfo sets the InstanceInfo field's value.

func (GetOnPremisesInstanceOutput) String

func (s GetOnPremisesInstanceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GitHubAccountTokenDoesNotExistException

type GitHubAccountTokenDoesNotExistException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

No GitHub account connection exists with the named specified in the call.

func (*GitHubAccountTokenDoesNotExistException) Code

func (s *GitHubAccountTokenDoesNotExistException) Code() string

Code returns the exception type name.

func (*GitHubAccountTokenDoesNotExistException) Error

func (s *GitHubAccountTokenDoesNotExistException) Error() string

func (GitHubAccountTokenDoesNotExistException) GoString

func (s GitHubAccountTokenDoesNotExistException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitHubAccountTokenDoesNotExistException) Message

func (s *GitHubAccountTokenDoesNotExistException) Message() string

Message returns the exception's message.

func (*GitHubAccountTokenDoesNotExistException) OrigErr

func (s *GitHubAccountTokenDoesNotExistException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*GitHubAccountTokenDoesNotExistException) RequestID

func (s *GitHubAccountTokenDoesNotExistException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*GitHubAccountTokenDoesNotExistException) StatusCode

func (s *GitHubAccountTokenDoesNotExistException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (GitHubAccountTokenDoesNotExistException) String

func (s GitHubAccountTokenDoesNotExistException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GitHubAccountTokenNameRequiredException

type GitHubAccountTokenNameRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The call is missing a required GitHub account connection name.

func (*GitHubAccountTokenNameRequiredException) Code

func (s *GitHubAccountTokenNameRequiredException) Code() string

Code returns the exception type name.

func (*GitHubAccountTokenNameRequiredException) Error

func (s *GitHubAccountTokenNameRequiredException) Error() string

func (GitHubAccountTokenNameRequiredException) GoString

func (s GitHubAccountTokenNameRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitHubAccountTokenNameRequiredException) Message

func (s *GitHubAccountTokenNameRequiredException) Message() string

Message returns the exception's message.

func (*GitHubAccountTokenNameRequiredException) OrigErr

func (s *GitHubAccountTokenNameRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*GitHubAccountTokenNameRequiredException) RequestID

func (s *GitHubAccountTokenNameRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*GitHubAccountTokenNameRequiredException) StatusCode

func (s *GitHubAccountTokenNameRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (GitHubAccountTokenNameRequiredException) String

func (s GitHubAccountTokenNameRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GitHubLocation

type GitHubLocation struct {

    // The SHA1 commit ID of the GitHub commit that represents the bundled artifacts
    // for the application revision.
    CommitId *string `locationName:"commitId" type:"string"`

    // The GitHub account and repository pair that stores a reference to the commit
    // that represents the bundled artifacts for the application revision.
    //
    // Specified as account/repository.
    Repository *string `locationName:"repository" type:"string"`
    // contains filtered or unexported fields
}

Information about the location of application artifacts stored in GitHub.

func (GitHubLocation) GoString

func (s GitHubLocation) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitHubLocation) SetCommitId

func (s *GitHubLocation) SetCommitId(v string) *GitHubLocation

SetCommitId sets the CommitId field's value.

func (*GitHubLocation) SetRepository

func (s *GitHubLocation) SetRepository(v string) *GitHubLocation

SetRepository sets the Repository field's value.

func (GitHubLocation) String

func (s GitHubLocation) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GreenFleetProvisioningOption

type GreenFleetProvisioningOption struct {

    // The method used to add instances to a replacement environment.
    //
    //    * DISCOVER_EXISTING: Use instances that already exist or will be created
    //    manually.
    //
    //    * COPY_AUTO_SCALING_GROUP: Use settings from a specified Auto Scaling
    //    group to define and create instances in a new Auto Scaling group.
    Action *string `locationName:"action" type:"string" enum:"GreenFleetProvisioningAction"`
    // contains filtered or unexported fields
}

Information about the instances that belong to the replacement environment in a blue/green deployment.

func (GreenFleetProvisioningOption) GoString

func (s GreenFleetProvisioningOption) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GreenFleetProvisioningOption) SetAction

func (s *GreenFleetProvisioningOption) SetAction(v string) *GreenFleetProvisioningOption

SetAction sets the Action field's value.

func (GreenFleetProvisioningOption) String

func (s GreenFleetProvisioningOption) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type IamArnRequiredException

type IamArnRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

No IAM ARN was included in the request. You must use an IAM session ARN or user ARN in the request.

func (*IamArnRequiredException) Code

func (s *IamArnRequiredException) Code() string

Code returns the exception type name.

func (*IamArnRequiredException) Error

func (s *IamArnRequiredException) Error() string

func (IamArnRequiredException) GoString

func (s IamArnRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*IamArnRequiredException) Message

func (s *IamArnRequiredException) Message() string

Message returns the exception's message.

func (*IamArnRequiredException) OrigErr

func (s *IamArnRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*IamArnRequiredException) RequestID

func (s *IamArnRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*IamArnRequiredException) StatusCode

func (s *IamArnRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (IamArnRequiredException) String

func (s IamArnRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type IamSessionArnAlreadyRegisteredException

type IamSessionArnAlreadyRegisteredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The request included an IAM session ARN that has already been used to register a different instance.

func (*IamSessionArnAlreadyRegisteredException) Code

func (s *IamSessionArnAlreadyRegisteredException) Code() string

Code returns the exception type name.

func (*IamSessionArnAlreadyRegisteredException) Error

func (s *IamSessionArnAlreadyRegisteredException) Error() string

func (IamSessionArnAlreadyRegisteredException) GoString

func (s IamSessionArnAlreadyRegisteredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*IamSessionArnAlreadyRegisteredException) Message

func (s *IamSessionArnAlreadyRegisteredException) Message() string

Message returns the exception's message.

func (*IamSessionArnAlreadyRegisteredException) OrigErr

func (s *IamSessionArnAlreadyRegisteredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*IamSessionArnAlreadyRegisteredException) RequestID

func (s *IamSessionArnAlreadyRegisteredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*IamSessionArnAlreadyRegisteredException) StatusCode

func (s *IamSessionArnAlreadyRegisteredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (IamSessionArnAlreadyRegisteredException) String

func (s IamSessionArnAlreadyRegisteredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type IamUserArnAlreadyRegisteredException

type IamUserArnAlreadyRegisteredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified user ARN is already registered with an on-premises instance.

func (*IamUserArnAlreadyRegisteredException) Code

func (s *IamUserArnAlreadyRegisteredException) Code() string

Code returns the exception type name.

func (*IamUserArnAlreadyRegisteredException) Error

func (s *IamUserArnAlreadyRegisteredException) Error() string

func (IamUserArnAlreadyRegisteredException) GoString

func (s IamUserArnAlreadyRegisteredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*IamUserArnAlreadyRegisteredException) Message

func (s *IamUserArnAlreadyRegisteredException) Message() string

Message returns the exception's message.

func (*IamUserArnAlreadyRegisteredException) OrigErr

func (s *IamUserArnAlreadyRegisteredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*IamUserArnAlreadyRegisteredException) RequestID

func (s *IamUserArnAlreadyRegisteredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*IamUserArnAlreadyRegisteredException) StatusCode

func (s *IamUserArnAlreadyRegisteredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (IamUserArnAlreadyRegisteredException) String

func (s IamUserArnAlreadyRegisteredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type IamUserArnRequiredException

type IamUserArnRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

An user ARN was not specified.

func (*IamUserArnRequiredException) Code

func (s *IamUserArnRequiredException) Code() string

Code returns the exception type name.

func (*IamUserArnRequiredException) Error

func (s *IamUserArnRequiredException) Error() string

func (IamUserArnRequiredException) GoString

func (s IamUserArnRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*IamUserArnRequiredException) Message

func (s *IamUserArnRequiredException) Message() string

Message returns the exception's message.

func (*IamUserArnRequiredException) OrigErr

func (s *IamUserArnRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*IamUserArnRequiredException) RequestID

func (s *IamUserArnRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*IamUserArnRequiredException) StatusCode

func (s *IamUserArnRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (IamUserArnRequiredException) String

func (s IamUserArnRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InstanceDoesNotExistException

type InstanceDoesNotExistException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified instance does not exist in the deployment group.

Deprecated: This exception is deprecated, use DeploymentTargetDoesNotExistException instead.

func (*InstanceDoesNotExistException) Code

func (s *InstanceDoesNotExistException) Code() string

Code returns the exception type name.

func (*InstanceDoesNotExistException) Error

func (s *InstanceDoesNotExistException) Error() string

func (InstanceDoesNotExistException) GoString

func (s InstanceDoesNotExistException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InstanceDoesNotExistException) Message

func (s *InstanceDoesNotExistException) Message() string

Message returns the exception's message.

func (*InstanceDoesNotExistException) OrigErr

func (s *InstanceDoesNotExistException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InstanceDoesNotExistException) RequestID

func (s *InstanceDoesNotExistException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InstanceDoesNotExistException) StatusCode

func (s *InstanceDoesNotExistException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InstanceDoesNotExistException) String

func (s InstanceDoesNotExistException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InstanceIdRequiredException

type InstanceIdRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The instance ID was not specified.

Deprecated: This exception is deprecated, use DeploymentTargetIdRequiredException instead.

func (*InstanceIdRequiredException) Code

func (s *InstanceIdRequiredException) Code() string

Code returns the exception type name.

func (*InstanceIdRequiredException) Error

func (s *InstanceIdRequiredException) Error() string

func (InstanceIdRequiredException) GoString

func (s InstanceIdRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InstanceIdRequiredException) Message

func (s *InstanceIdRequiredException) Message() string

Message returns the exception's message.

func (*InstanceIdRequiredException) OrigErr

func (s *InstanceIdRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InstanceIdRequiredException) RequestID

func (s *InstanceIdRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InstanceIdRequiredException) StatusCode

func (s *InstanceIdRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InstanceIdRequiredException) String

func (s InstanceIdRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InstanceInfo

type InstanceInfo struct {

    // If the on-premises instance was deregistered, the time at which the on-premises
    // instance was deregistered.
    DeregisterTime *time.Time `locationName:"deregisterTime" type:"timestamp"`

    // The ARN of the IAM session associated with the on-premises instance.
    IamSessionArn *string `locationName:"iamSessionArn" type:"string"`

    // The user ARN associated with the on-premises instance.
    IamUserArn *string `locationName:"iamUserArn" type:"string"`

    // The ARN of the on-premises instance.
    InstanceArn *string `locationName:"instanceArn" type:"string"`

    // The name of the on-premises instance.
    InstanceName *string `locationName:"instanceName" type:"string"`

    // The time at which the on-premises instance was registered.
    RegisterTime *time.Time `locationName:"registerTime" type:"timestamp"`

    // The tags currently associated with the on-premises instance.
    Tags []*Tag `locationName:"tags" type:"list"`
    // contains filtered or unexported fields
}

Information about an on-premises instance.

func (InstanceInfo) GoString

func (s InstanceInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InstanceInfo) SetDeregisterTime

func (s *InstanceInfo) SetDeregisterTime(v time.Time) *InstanceInfo

SetDeregisterTime sets the DeregisterTime field's value.

func (*InstanceInfo) SetIamSessionArn

func (s *InstanceInfo) SetIamSessionArn(v string) *InstanceInfo

SetIamSessionArn sets the IamSessionArn field's value.

func (*InstanceInfo) SetIamUserArn

func (s *InstanceInfo) SetIamUserArn(v string) *InstanceInfo

SetIamUserArn sets the IamUserArn field's value.

func (*InstanceInfo) SetInstanceArn

func (s *InstanceInfo) SetInstanceArn(v string) *InstanceInfo

SetInstanceArn sets the InstanceArn field's value.

func (*InstanceInfo) SetInstanceName

func (s *InstanceInfo) SetInstanceName(v string) *InstanceInfo

SetInstanceName sets the InstanceName field's value.

func (*InstanceInfo) SetRegisterTime

func (s *InstanceInfo) SetRegisterTime(v time.Time) *InstanceInfo

SetRegisterTime sets the RegisterTime field's value.

func (*InstanceInfo) SetTags

func (s *InstanceInfo) SetTags(v []*Tag) *InstanceInfo

SetTags sets the Tags field's value.

func (InstanceInfo) String

func (s InstanceInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InstanceLimitExceededException

type InstanceLimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The maximum number of allowed on-premises instances in a single call was exceeded.

func (*InstanceLimitExceededException) Code

func (s *InstanceLimitExceededException) Code() string

Code returns the exception type name.

func (*InstanceLimitExceededException) Error

func (s *InstanceLimitExceededException) Error() string

func (InstanceLimitExceededException) GoString

func (s InstanceLimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InstanceLimitExceededException) Message

func (s *InstanceLimitExceededException) Message() string

Message returns the exception's message.

func (*InstanceLimitExceededException) OrigErr

func (s *InstanceLimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InstanceLimitExceededException) RequestID

func (s *InstanceLimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InstanceLimitExceededException) StatusCode

func (s *InstanceLimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InstanceLimitExceededException) String

func (s InstanceLimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InstanceNameAlreadyRegisteredException

type InstanceNameAlreadyRegisteredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified on-premises instance name is already registered.

func (*InstanceNameAlreadyRegisteredException) Code

func (s *InstanceNameAlreadyRegisteredException) Code() string

Code returns the exception type name.

func (*InstanceNameAlreadyRegisteredException) Error

func (s *InstanceNameAlreadyRegisteredException) Error() string

func (InstanceNameAlreadyRegisteredException) GoString

func (s InstanceNameAlreadyRegisteredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InstanceNameAlreadyRegisteredException) Message

func (s *InstanceNameAlreadyRegisteredException) Message() string

Message returns the exception's message.

func (*InstanceNameAlreadyRegisteredException) OrigErr

func (s *InstanceNameAlreadyRegisteredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InstanceNameAlreadyRegisteredException) RequestID

func (s *InstanceNameAlreadyRegisteredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InstanceNameAlreadyRegisteredException) StatusCode

func (s *InstanceNameAlreadyRegisteredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InstanceNameAlreadyRegisteredException) String

func (s InstanceNameAlreadyRegisteredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InstanceNameRequiredException

type InstanceNameRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

An on-premises instance name was not specified.

func (*InstanceNameRequiredException) Code

func (s *InstanceNameRequiredException) Code() string

Code returns the exception type name.

func (*InstanceNameRequiredException) Error

func (s *InstanceNameRequiredException) Error() string

func (InstanceNameRequiredException) GoString

func (s InstanceNameRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InstanceNameRequiredException) Message

func (s *InstanceNameRequiredException) Message() string

Message returns the exception's message.

func (*InstanceNameRequiredException) OrigErr

func (s *InstanceNameRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InstanceNameRequiredException) RequestID

func (s *InstanceNameRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InstanceNameRequiredException) StatusCode

func (s *InstanceNameRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InstanceNameRequiredException) String

func (s InstanceNameRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InstanceNotRegisteredException

type InstanceNotRegisteredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified on-premises instance is not registered.

func (*InstanceNotRegisteredException) Code

func (s *InstanceNotRegisteredException) Code() string

Code returns the exception type name.

func (*InstanceNotRegisteredException) Error

func (s *InstanceNotRegisteredException) Error() string

func (InstanceNotRegisteredException) GoString

func (s InstanceNotRegisteredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InstanceNotRegisteredException) Message

func (s *InstanceNotRegisteredException) Message() string

Message returns the exception's message.

func (*InstanceNotRegisteredException) OrigErr

func (s *InstanceNotRegisteredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InstanceNotRegisteredException) RequestID

func (s *InstanceNotRegisteredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InstanceNotRegisteredException) StatusCode

func (s *InstanceNotRegisteredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InstanceNotRegisteredException) String

func (s InstanceNotRegisteredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InstanceSummary

type InstanceSummary struct {

    // The unique ID of a deployment.
    DeploymentId *string `locationName:"deploymentId" type:"string"`

    // The instance ID.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // Information about which environment an instance belongs to in a blue/green
    // deployment.
    //
    //    * BLUE: The instance is part of the original environment.
    //
    //    * GREEN: The instance is part of the replacement environment.
    InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"`

    // A timestamp that indicates when the instance information was last updated.
    LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"`

    // A list of lifecycle events for this instance.
    LifecycleEvents []*LifecycleEvent `locationName:"lifecycleEvents" type:"list"`

    // The deployment status for this instance:
    //
    //    * Pending: The deployment is pending for this instance.
    //
    //    * In Progress: The deployment is in progress for this instance.
    //
    //    * Succeeded: The deployment has succeeded for this instance.
    //
    //    * Failed: The deployment has failed for this instance.
    //
    //    * Skipped: The deployment has been skipped for this instance.
    //
    //    * Unknown: The deployment status is unknown for this instance.
    Status *string `locationName:"status" deprecated:"true" type:"string" enum:"InstanceStatus"`
    // contains filtered or unexported fields
}

Information about an instance in a deployment.

Deprecated: InstanceSummary is deprecated, use DeploymentTarget instead.

func (InstanceSummary) GoString

func (s InstanceSummary) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InstanceSummary) SetDeploymentId

func (s *InstanceSummary) SetDeploymentId(v string) *InstanceSummary

SetDeploymentId sets the DeploymentId field's value.

func (*InstanceSummary) SetInstanceId

func (s *InstanceSummary) SetInstanceId(v string) *InstanceSummary

SetInstanceId sets the InstanceId field's value.

func (*InstanceSummary) SetInstanceType

func (s *InstanceSummary) SetInstanceType(v string) *InstanceSummary

SetInstanceType sets the InstanceType field's value.

func (*InstanceSummary) SetLastUpdatedAt

func (s *InstanceSummary) SetLastUpdatedAt(v time.Time) *InstanceSummary

SetLastUpdatedAt sets the LastUpdatedAt field's value.

func (*InstanceSummary) SetLifecycleEvents

func (s *InstanceSummary) SetLifecycleEvents(v []*LifecycleEvent) *InstanceSummary

SetLifecycleEvents sets the LifecycleEvents field's value.

func (*InstanceSummary) SetStatus

func (s *InstanceSummary) SetStatus(v string) *InstanceSummary

SetStatus sets the Status field's value.

func (InstanceSummary) String

func (s InstanceSummary) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InstanceTarget

type InstanceTarget struct {

    // The unique ID of a deployment.
    DeploymentId *string `locationName:"deploymentId" type:"string"`

    // A label that identifies whether the instance is an original target (BLUE)
    // or a replacement target (GREEN).
    InstanceLabel *string `locationName:"instanceLabel" type:"string" enum:"TargetLabel"`

    // The date and time when the target instance was updated by a deployment.
    LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"`

    // The lifecycle events of the deployment to this target instance.
    LifecycleEvents []*LifecycleEvent `locationName:"lifecycleEvents" type:"list"`

    // The status an EC2/On-premises deployment's target instance.
    Status *string `locationName:"status" type:"string" enum:"TargetStatus"`

    // The Amazon Resource Name (ARN) of the target.
    TargetArn *string `locationName:"targetArn" type:"string"`

    // The unique ID of a deployment target that has a type of instanceTarget.
    TargetId *string `locationName:"targetId" type:"string"`
    // contains filtered or unexported fields
}

A target Amazon EC2 or on-premises instance during a deployment that uses the EC2/On-premises compute platform.

func (InstanceTarget) GoString

func (s InstanceTarget) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InstanceTarget) SetDeploymentId

func (s *InstanceTarget) SetDeploymentId(v string) *InstanceTarget

SetDeploymentId sets the DeploymentId field's value.

func (*InstanceTarget) SetInstanceLabel

func (s *InstanceTarget) SetInstanceLabel(v string) *InstanceTarget

SetInstanceLabel sets the InstanceLabel field's value.

func (*InstanceTarget) SetLastUpdatedAt

func (s *InstanceTarget) SetLastUpdatedAt(v time.Time) *InstanceTarget

SetLastUpdatedAt sets the LastUpdatedAt field's value.

func (*InstanceTarget) SetLifecycleEvents

func (s *InstanceTarget) SetLifecycleEvents(v []*LifecycleEvent) *InstanceTarget

SetLifecycleEvents sets the LifecycleEvents field's value.

func (*InstanceTarget) SetStatus

func (s *InstanceTarget) SetStatus(v string) *InstanceTarget

SetStatus sets the Status field's value.

func (*InstanceTarget) SetTargetArn

func (s *InstanceTarget) SetTargetArn(v string) *InstanceTarget

SetTargetArn sets the TargetArn field's value.

func (*InstanceTarget) SetTargetId

func (s *InstanceTarget) SetTargetId(v string) *InstanceTarget

SetTargetId sets the TargetId field's value.

func (InstanceTarget) String

func (s InstanceTarget) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidAlarmConfigException

type InvalidAlarmConfigException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The format of the alarm configuration is invalid. Possible causes include:

  • The alarm list is null.

  • The alarm object is null.

  • The alarm name is empty or null or exceeds the limit of 255 characters.

  • Two alarms with the same name have been specified.

  • The alarm configuration is enabled, but the alarm list is empty.

func (*InvalidAlarmConfigException) Code

func (s *InvalidAlarmConfigException) Code() string

Code returns the exception type name.

func (*InvalidAlarmConfigException) Error

func (s *InvalidAlarmConfigException) Error() string

func (InvalidAlarmConfigException) GoString

func (s InvalidAlarmConfigException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidAlarmConfigException) Message

func (s *InvalidAlarmConfigException) Message() string

Message returns the exception's message.

func (*InvalidAlarmConfigException) OrigErr

func (s *InvalidAlarmConfigException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidAlarmConfigException) RequestID

func (s *InvalidAlarmConfigException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidAlarmConfigException) StatusCode

func (s *InvalidAlarmConfigException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidAlarmConfigException) String

func (s InvalidAlarmConfigException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidApplicationNameException

type InvalidApplicationNameException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The application name was specified in an invalid format.

func (*InvalidApplicationNameException) Code

func (s *InvalidApplicationNameException) Code() string

Code returns the exception type name.

func (*InvalidApplicationNameException) Error

func (s *InvalidApplicationNameException) Error() string

func (InvalidApplicationNameException) GoString

func (s InvalidApplicationNameException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidApplicationNameException) Message

func (s *InvalidApplicationNameException) Message() string

Message returns the exception's message.

func (*InvalidApplicationNameException) OrigErr

func (s *InvalidApplicationNameException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidApplicationNameException) RequestID

func (s *InvalidApplicationNameException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidApplicationNameException) StatusCode

func (s *InvalidApplicationNameException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidApplicationNameException) String

func (s InvalidApplicationNameException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidArnException

type InvalidArnException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified ARN is not in a valid format.

func (*InvalidArnException) Code

func (s *InvalidArnException) Code() string

Code returns the exception type name.

func (*InvalidArnException) Error

func (s *InvalidArnException) Error() string

func (InvalidArnException) GoString

func (s InvalidArnException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidArnException) Message

func (s *InvalidArnException) Message() string

Message returns the exception's message.

func (*InvalidArnException) OrigErr

func (s *InvalidArnException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidArnException) RequestID

func (s *InvalidArnException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidArnException) StatusCode

func (s *InvalidArnException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidArnException) String

func (s InvalidArnException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidAutoRollbackConfigException

type InvalidAutoRollbackConfigException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The automatic rollback configuration was specified in an invalid format. For example, automatic rollback is enabled, but an invalid triggering event type or no event types were listed.

func (*InvalidAutoRollbackConfigException) Code

func (s *InvalidAutoRollbackConfigException) Code() string

Code returns the exception type name.

func (*InvalidAutoRollbackConfigException) Error

func (s *InvalidAutoRollbackConfigException) Error() string

func (InvalidAutoRollbackConfigException) GoString

func (s InvalidAutoRollbackConfigException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidAutoRollbackConfigException) Message

func (s *InvalidAutoRollbackConfigException) Message() string

Message returns the exception's message.

func (*InvalidAutoRollbackConfigException) OrigErr

func (s *InvalidAutoRollbackConfigException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidAutoRollbackConfigException) RequestID

func (s *InvalidAutoRollbackConfigException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidAutoRollbackConfigException) StatusCode

func (s *InvalidAutoRollbackConfigException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidAutoRollbackConfigException) String

func (s InvalidAutoRollbackConfigException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidAutoScalingGroupException

type InvalidAutoScalingGroupException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The Auto Scaling group was specified in an invalid format or does not exist.

func (*InvalidAutoScalingGroupException) Code

func (s *InvalidAutoScalingGroupException) Code() string

Code returns the exception type name.

func (*InvalidAutoScalingGroupException) Error

func (s *InvalidAutoScalingGroupException) Error() string

func (InvalidAutoScalingGroupException) GoString

func (s InvalidAutoScalingGroupException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidAutoScalingGroupException) Message

func (s *InvalidAutoScalingGroupException) Message() string

Message returns the exception's message.

func (*InvalidAutoScalingGroupException) OrigErr

func (s *InvalidAutoScalingGroupException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidAutoScalingGroupException) RequestID

func (s *InvalidAutoScalingGroupException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidAutoScalingGroupException) StatusCode

func (s *InvalidAutoScalingGroupException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidAutoScalingGroupException) String

func (s InvalidAutoScalingGroupException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidBlueGreenDeploymentConfigurationException

type InvalidBlueGreenDeploymentConfigurationException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The configuration for the blue/green deployment group was provided in an invalid format. For information about deployment configuration format, see CreateDeploymentConfig.

func (*InvalidBlueGreenDeploymentConfigurationException) Code

func (s *InvalidBlueGreenDeploymentConfigurationException) Code() string

Code returns the exception type name.

func (*InvalidBlueGreenDeploymentConfigurationException) Error

func (s *InvalidBlueGreenDeploymentConfigurationException) Error() string

func (InvalidBlueGreenDeploymentConfigurationException) GoString

func (s InvalidBlueGreenDeploymentConfigurationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidBlueGreenDeploymentConfigurationException) Message

func (s *InvalidBlueGreenDeploymentConfigurationException) Message() string

Message returns the exception's message.

func (*InvalidBlueGreenDeploymentConfigurationException) OrigErr

func (s *InvalidBlueGreenDeploymentConfigurationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidBlueGreenDeploymentConfigurationException) RequestID

func (s *InvalidBlueGreenDeploymentConfigurationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidBlueGreenDeploymentConfigurationException) StatusCode

func (s *InvalidBlueGreenDeploymentConfigurationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidBlueGreenDeploymentConfigurationException) String

func (s InvalidBlueGreenDeploymentConfigurationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidBucketNameFilterException

type InvalidBucketNameFilterException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The bucket name either doesn't exist or was specified in an invalid format.

func (*InvalidBucketNameFilterException) Code

func (s *InvalidBucketNameFilterException) Code() string

Code returns the exception type name.

func (*InvalidBucketNameFilterException) Error

func (s *InvalidBucketNameFilterException) Error() string

func (InvalidBucketNameFilterException) GoString

func (s InvalidBucketNameFilterException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidBucketNameFilterException) Message

func (s *InvalidBucketNameFilterException) Message() string

Message returns the exception's message.

func (*InvalidBucketNameFilterException) OrigErr

func (s *InvalidBucketNameFilterException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidBucketNameFilterException) RequestID

func (s *InvalidBucketNameFilterException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidBucketNameFilterException) StatusCode

func (s *InvalidBucketNameFilterException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidBucketNameFilterException) String

func (s InvalidBucketNameFilterException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidComputePlatformException

type InvalidComputePlatformException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The computePlatform is invalid. The computePlatform should be Lambda, Server, or ECS.

func (*InvalidComputePlatformException) Code

func (s *InvalidComputePlatformException) Code() string

Code returns the exception type name.

func (*InvalidComputePlatformException) Error

func (s *InvalidComputePlatformException) Error() string

func (InvalidComputePlatformException) GoString

func (s InvalidComputePlatformException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidComputePlatformException) Message

func (s *InvalidComputePlatformException) Message() string

Message returns the exception's message.

func (*InvalidComputePlatformException) OrigErr

func (s *InvalidComputePlatformException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidComputePlatformException) RequestID

func (s *InvalidComputePlatformException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidComputePlatformException) StatusCode

func (s *InvalidComputePlatformException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidComputePlatformException) String

func (s InvalidComputePlatformException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidDeployedStateFilterException

type InvalidDeployedStateFilterException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The deployed state filter was specified in an invalid format.

func (*InvalidDeployedStateFilterException) Code

func (s *InvalidDeployedStateFilterException) Code() string

Code returns the exception type name.

func (*InvalidDeployedStateFilterException) Error

func (s *InvalidDeployedStateFilterException) Error() string

func (InvalidDeployedStateFilterException) GoString

func (s InvalidDeployedStateFilterException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidDeployedStateFilterException) Message

func (s *InvalidDeployedStateFilterException) Message() string

Message returns the exception's message.

func (*InvalidDeployedStateFilterException) OrigErr

func (s *InvalidDeployedStateFilterException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidDeployedStateFilterException) RequestID

func (s *InvalidDeployedStateFilterException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidDeployedStateFilterException) StatusCode

func (s *InvalidDeployedStateFilterException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidDeployedStateFilterException) String

func (s InvalidDeployedStateFilterException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidDeploymentConfigNameException

type InvalidDeploymentConfigNameException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The deployment configuration name was specified in an invalid format.

func (*InvalidDeploymentConfigNameException) Code

func (s *InvalidDeploymentConfigNameException) Code() string

Code returns the exception type name.

func (*InvalidDeploymentConfigNameException) Error

func (s *InvalidDeploymentConfigNameException) Error() string

func (InvalidDeploymentConfigNameException) GoString

func (s InvalidDeploymentConfigNameException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidDeploymentConfigNameException) Message

func (s *InvalidDeploymentConfigNameException) Message() string

Message returns the exception's message.

func (*InvalidDeploymentConfigNameException) OrigErr

func (s *InvalidDeploymentConfigNameException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidDeploymentConfigNameException) RequestID

func (s *InvalidDeploymentConfigNameException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidDeploymentConfigNameException) StatusCode

func (s *InvalidDeploymentConfigNameException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidDeploymentConfigNameException) String

func (s InvalidDeploymentConfigNameException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidDeploymentGroupNameException

type InvalidDeploymentGroupNameException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The deployment group name was specified in an invalid format.

func (*InvalidDeploymentGroupNameException) Code

func (s *InvalidDeploymentGroupNameException) Code() string

Code returns the exception type name.

func (*InvalidDeploymentGroupNameException) Error

func (s *InvalidDeploymentGroupNameException) Error() string

func (InvalidDeploymentGroupNameException) GoString

func (s InvalidDeploymentGroupNameException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidDeploymentGroupNameException) Message

func (s *InvalidDeploymentGroupNameException) Message() string

Message returns the exception's message.

func (*InvalidDeploymentGroupNameException) OrigErr

func (s *InvalidDeploymentGroupNameException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidDeploymentGroupNameException) RequestID

func (s *InvalidDeploymentGroupNameException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidDeploymentGroupNameException) StatusCode

func (s *InvalidDeploymentGroupNameException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidDeploymentGroupNameException) String

func (s InvalidDeploymentGroupNameException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidDeploymentIdException

type InvalidDeploymentIdException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

At least one of the deployment IDs was specified in an invalid format.

func (*InvalidDeploymentIdException) Code

func (s *InvalidDeploymentIdException) Code() string

Code returns the exception type name.

func (*InvalidDeploymentIdException) Error

func (s *InvalidDeploymentIdException) Error() string

func (InvalidDeploymentIdException) GoString

func (s InvalidDeploymentIdException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidDeploymentIdException) Message

func (s *InvalidDeploymentIdException) Message() string

Message returns the exception's message.

func (*InvalidDeploymentIdException) OrigErr

func (s *InvalidDeploymentIdException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidDeploymentIdException) RequestID

func (s *InvalidDeploymentIdException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidDeploymentIdException) StatusCode

func (s *InvalidDeploymentIdException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidDeploymentIdException) String

func (s InvalidDeploymentIdException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidDeploymentInstanceTypeException

type InvalidDeploymentInstanceTypeException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

An instance type was specified for an in-place deployment. Instance types are supported for blue/green deployments only.

func (*InvalidDeploymentInstanceTypeException) Code

func (s *InvalidDeploymentInstanceTypeException) Code() string

Code returns the exception type name.

func (*InvalidDeploymentInstanceTypeException) Error

func (s *InvalidDeploymentInstanceTypeException) Error() string

func (InvalidDeploymentInstanceTypeException) GoString

func (s InvalidDeploymentInstanceTypeException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidDeploymentInstanceTypeException) Message

func (s *InvalidDeploymentInstanceTypeException) Message() string

Message returns the exception's message.

func (*InvalidDeploymentInstanceTypeException) OrigErr

func (s *InvalidDeploymentInstanceTypeException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidDeploymentInstanceTypeException) RequestID

func (s *InvalidDeploymentInstanceTypeException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidDeploymentInstanceTypeException) StatusCode

func (s *InvalidDeploymentInstanceTypeException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidDeploymentInstanceTypeException) String

func (s InvalidDeploymentInstanceTypeException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidDeploymentStatusException

type InvalidDeploymentStatusException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified deployment status doesn't exist or cannot be determined.

func (*InvalidDeploymentStatusException) Code

func (s *InvalidDeploymentStatusException) Code() string

Code returns the exception type name.

func (*InvalidDeploymentStatusException) Error

func (s *InvalidDeploymentStatusException) Error() string

func (InvalidDeploymentStatusException) GoString

func (s InvalidDeploymentStatusException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidDeploymentStatusException) Message

func (s *InvalidDeploymentStatusException) Message() string

Message returns the exception's message.

func (*InvalidDeploymentStatusException) OrigErr

func (s *InvalidDeploymentStatusException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidDeploymentStatusException) RequestID

func (s *InvalidDeploymentStatusException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidDeploymentStatusException) StatusCode

func (s *InvalidDeploymentStatusException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidDeploymentStatusException) String

func (s InvalidDeploymentStatusException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidDeploymentStyleException

type InvalidDeploymentStyleException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

An invalid deployment style was specified. Valid deployment types include "IN_PLACE" and "BLUE_GREEN." Valid deployment options include "WITH_TRAFFIC_CONTROL" and "WITHOUT_TRAFFIC_CONTROL."

func (*InvalidDeploymentStyleException) Code

func (s *InvalidDeploymentStyleException) Code() string

Code returns the exception type name.

func (*InvalidDeploymentStyleException) Error

func (s *InvalidDeploymentStyleException) Error() string

func (InvalidDeploymentStyleException) GoString

func (s InvalidDeploymentStyleException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidDeploymentStyleException) Message

func (s *InvalidDeploymentStyleException) Message() string

Message returns the exception's message.

func (*InvalidDeploymentStyleException) OrigErr

func (s *InvalidDeploymentStyleException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidDeploymentStyleException) RequestID

func (s *InvalidDeploymentStyleException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidDeploymentStyleException) StatusCode

func (s *InvalidDeploymentStyleException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidDeploymentStyleException) String

func (s InvalidDeploymentStyleException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidDeploymentTargetIdException

type InvalidDeploymentTargetIdException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The target ID provided was not valid.

func (*InvalidDeploymentTargetIdException) Code

func (s *InvalidDeploymentTargetIdException) Code() string

Code returns the exception type name.

func (*InvalidDeploymentTargetIdException) Error

func (s *InvalidDeploymentTargetIdException) Error() string

func (InvalidDeploymentTargetIdException) GoString

func (s InvalidDeploymentTargetIdException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidDeploymentTargetIdException) Message

func (s *InvalidDeploymentTargetIdException) Message() string

Message returns the exception's message.

func (*InvalidDeploymentTargetIdException) OrigErr

func (s *InvalidDeploymentTargetIdException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidDeploymentTargetIdException) RequestID

func (s *InvalidDeploymentTargetIdException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidDeploymentTargetIdException) StatusCode

func (s *InvalidDeploymentTargetIdException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidDeploymentTargetIdException) String

func (s InvalidDeploymentTargetIdException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidDeploymentWaitTypeException

type InvalidDeploymentWaitTypeException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The wait type is invalid.

func (*InvalidDeploymentWaitTypeException) Code

func (s *InvalidDeploymentWaitTypeException) Code() string

Code returns the exception type name.

func (*InvalidDeploymentWaitTypeException) Error

func (s *InvalidDeploymentWaitTypeException) Error() string

func (InvalidDeploymentWaitTypeException) GoString

func (s InvalidDeploymentWaitTypeException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidDeploymentWaitTypeException) Message

func (s *InvalidDeploymentWaitTypeException) Message() string

Message returns the exception's message.

func (*InvalidDeploymentWaitTypeException) OrigErr

func (s *InvalidDeploymentWaitTypeException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidDeploymentWaitTypeException) RequestID

func (s *InvalidDeploymentWaitTypeException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidDeploymentWaitTypeException) StatusCode

func (s *InvalidDeploymentWaitTypeException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidDeploymentWaitTypeException) String

func (s InvalidDeploymentWaitTypeException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidEC2TagCombinationException

type InvalidEC2TagCombinationException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

A call was submitted that specified both Ec2TagFilters and Ec2TagSet, but only one of these data types can be used in a single call.

func (*InvalidEC2TagCombinationException) Code

func (s *InvalidEC2TagCombinationException) Code() string

Code returns the exception type name.

func (*InvalidEC2TagCombinationException) Error

func (s *InvalidEC2TagCombinationException) Error() string

func (InvalidEC2TagCombinationException) GoString

func (s InvalidEC2TagCombinationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidEC2TagCombinationException) Message

func (s *InvalidEC2TagCombinationException) Message() string

Message returns the exception's message.

func (*InvalidEC2TagCombinationException) OrigErr

func (s *InvalidEC2TagCombinationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidEC2TagCombinationException) RequestID

func (s *InvalidEC2TagCombinationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidEC2TagCombinationException) StatusCode

func (s *InvalidEC2TagCombinationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidEC2TagCombinationException) String

func (s InvalidEC2TagCombinationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidEC2TagException

type InvalidEC2TagException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The tag was specified in an invalid format.

func (*InvalidEC2TagException) Code

func (s *InvalidEC2TagException) Code() string

Code returns the exception type name.

func (*InvalidEC2TagException) Error

func (s *InvalidEC2TagException) Error() string

func (InvalidEC2TagException) GoString

func (s InvalidEC2TagException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidEC2TagException) Message

func (s *InvalidEC2TagException) Message() string

Message returns the exception's message.

func (*InvalidEC2TagException) OrigErr

func (s *InvalidEC2TagException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidEC2TagException) RequestID

func (s *InvalidEC2TagException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidEC2TagException) StatusCode

func (s *InvalidEC2TagException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidEC2TagException) String

func (s InvalidEC2TagException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidECSServiceException

type InvalidECSServiceException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The Amazon ECS service identifier is not valid.

func (*InvalidECSServiceException) Code

func (s *InvalidECSServiceException) Code() string

Code returns the exception type name.

func (*InvalidECSServiceException) Error

func (s *InvalidECSServiceException) Error() string

func (InvalidECSServiceException) GoString

func (s InvalidECSServiceException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidECSServiceException) Message

func (s *InvalidECSServiceException) Message() string

Message returns the exception's message.

func (*InvalidECSServiceException) OrigErr

func (s *InvalidECSServiceException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidECSServiceException) RequestID

func (s *InvalidECSServiceException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidECSServiceException) StatusCode

func (s *InvalidECSServiceException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidECSServiceException) String

func (s InvalidECSServiceException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidExternalIdException

type InvalidExternalIdException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The external ID was specified in an invalid format.

func (*InvalidExternalIdException) Code

func (s *InvalidExternalIdException) Code() string

Code returns the exception type name.

func (*InvalidExternalIdException) Error

func (s *InvalidExternalIdException) Error() string

func (InvalidExternalIdException) GoString

func (s InvalidExternalIdException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidExternalIdException) Message

func (s *InvalidExternalIdException) Message() string

Message returns the exception's message.

func (*InvalidExternalIdException) OrigErr

func (s *InvalidExternalIdException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidExternalIdException) RequestID

func (s *InvalidExternalIdException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidExternalIdException) StatusCode

func (s *InvalidExternalIdException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidExternalIdException) String

func (s InvalidExternalIdException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidFileExistsBehaviorException

type InvalidFileExistsBehaviorException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

An invalid fileExistsBehavior option was specified to determine how CodeDeploy handles files or directories that already exist in a deployment target location, but weren't part of the previous successful deployment. Valid values include "DISALLOW," "OVERWRITE," and "RETAIN."

func (*InvalidFileExistsBehaviorException) Code

func (s *InvalidFileExistsBehaviorException) Code() string

Code returns the exception type name.

func (*InvalidFileExistsBehaviorException) Error

func (s *InvalidFileExistsBehaviorException) Error() string

func (InvalidFileExistsBehaviorException) GoString

func (s InvalidFileExistsBehaviorException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidFileExistsBehaviorException) Message

func (s *InvalidFileExistsBehaviorException) Message() string

Message returns the exception's message.

func (*InvalidFileExistsBehaviorException) OrigErr

func (s *InvalidFileExistsBehaviorException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidFileExistsBehaviorException) RequestID

func (s *InvalidFileExistsBehaviorException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidFileExistsBehaviorException) StatusCode

func (s *InvalidFileExistsBehaviorException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidFileExistsBehaviorException) String

func (s InvalidFileExistsBehaviorException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidGitHubAccountTokenException

type InvalidGitHubAccountTokenException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The GitHub token is not valid.

func (*InvalidGitHubAccountTokenException) Code

func (s *InvalidGitHubAccountTokenException) Code() string

Code returns the exception type name.

func (*InvalidGitHubAccountTokenException) Error

func (s *InvalidGitHubAccountTokenException) Error() string

func (InvalidGitHubAccountTokenException) GoString

func (s InvalidGitHubAccountTokenException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidGitHubAccountTokenException) Message

func (s *InvalidGitHubAccountTokenException) Message() string

Message returns the exception's message.

func (*InvalidGitHubAccountTokenException) OrigErr

func (s *InvalidGitHubAccountTokenException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidGitHubAccountTokenException) RequestID

func (s *InvalidGitHubAccountTokenException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidGitHubAccountTokenException) StatusCode

func (s *InvalidGitHubAccountTokenException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidGitHubAccountTokenException) String

func (s InvalidGitHubAccountTokenException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidGitHubAccountTokenNameException

type InvalidGitHubAccountTokenNameException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The format of the specified GitHub account connection name is invalid.

func (*InvalidGitHubAccountTokenNameException) Code

func (s *InvalidGitHubAccountTokenNameException) Code() string

Code returns the exception type name.

func (*InvalidGitHubAccountTokenNameException) Error

func (s *InvalidGitHubAccountTokenNameException) Error() string

func (InvalidGitHubAccountTokenNameException) GoString

func (s InvalidGitHubAccountTokenNameException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidGitHubAccountTokenNameException) Message

func (s *InvalidGitHubAccountTokenNameException) Message() string

Message returns the exception's message.

func (*InvalidGitHubAccountTokenNameException) OrigErr

func (s *InvalidGitHubAccountTokenNameException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidGitHubAccountTokenNameException) RequestID

func (s *InvalidGitHubAccountTokenNameException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidGitHubAccountTokenNameException) StatusCode

func (s *InvalidGitHubAccountTokenNameException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidGitHubAccountTokenNameException) String

func (s InvalidGitHubAccountTokenNameException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidIamSessionArnException

type InvalidIamSessionArnException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The IAM session ARN was specified in an invalid format.

func (*InvalidIamSessionArnException) Code

func (s *InvalidIamSessionArnException) Code() string

Code returns the exception type name.

func (*InvalidIamSessionArnException) Error

func (s *InvalidIamSessionArnException) Error() string

func (InvalidIamSessionArnException) GoString

func (s InvalidIamSessionArnException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidIamSessionArnException) Message

func (s *InvalidIamSessionArnException) Message() string

Message returns the exception's message.

func (*InvalidIamSessionArnException) OrigErr

func (s *InvalidIamSessionArnException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidIamSessionArnException) RequestID

func (s *InvalidIamSessionArnException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidIamSessionArnException) StatusCode

func (s *InvalidIamSessionArnException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidIamSessionArnException) String

func (s InvalidIamSessionArnException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidIamUserArnException

type InvalidIamUserArnException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The user ARN was specified in an invalid format.

func (*InvalidIamUserArnException) Code

func (s *InvalidIamUserArnException) Code() string

Code returns the exception type name.

func (*InvalidIamUserArnException) Error

func (s *InvalidIamUserArnException) Error() string

func (InvalidIamUserArnException) GoString

func (s InvalidIamUserArnException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidIamUserArnException) Message

func (s *InvalidIamUserArnException) Message() string

Message returns the exception's message.

func (*InvalidIamUserArnException) OrigErr

func (s *InvalidIamUserArnException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidIamUserArnException) RequestID

func (s *InvalidIamUserArnException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidIamUserArnException) StatusCode

func (s *InvalidIamUserArnException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidIamUserArnException) String

func (s InvalidIamUserArnException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidIgnoreApplicationStopFailuresValueException

type InvalidIgnoreApplicationStopFailuresValueException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The IgnoreApplicationStopFailures value is invalid. For Lambda deployments, false is expected. For EC2/On-premises deployments, true or false is expected.

func (*InvalidIgnoreApplicationStopFailuresValueException) Code

func (s *InvalidIgnoreApplicationStopFailuresValueException) Code() string

Code returns the exception type name.

func (*InvalidIgnoreApplicationStopFailuresValueException) Error

func (s *InvalidIgnoreApplicationStopFailuresValueException) Error() string

func (InvalidIgnoreApplicationStopFailuresValueException) GoString

func (s InvalidIgnoreApplicationStopFailuresValueException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidIgnoreApplicationStopFailuresValueException) Message

func (s *InvalidIgnoreApplicationStopFailuresValueException) Message() string

Message returns the exception's message.

func (*InvalidIgnoreApplicationStopFailuresValueException) OrigErr

func (s *InvalidIgnoreApplicationStopFailuresValueException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidIgnoreApplicationStopFailuresValueException) RequestID

func (s *InvalidIgnoreApplicationStopFailuresValueException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidIgnoreApplicationStopFailuresValueException) StatusCode

func (s *InvalidIgnoreApplicationStopFailuresValueException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidIgnoreApplicationStopFailuresValueException) String

func (s InvalidIgnoreApplicationStopFailuresValueException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidInputException

type InvalidInputException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The input was specified in an invalid format.

func (*InvalidInputException) Code

func (s *InvalidInputException) Code() string

Code returns the exception type name.

func (*InvalidInputException) Error

func (s *InvalidInputException) Error() string

func (InvalidInputException) GoString

func (s InvalidInputException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidInputException) Message

func (s *InvalidInputException) Message() string

Message returns the exception's message.

func (*InvalidInputException) OrigErr

func (s *InvalidInputException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidInputException) RequestID

func (s *InvalidInputException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidInputException) StatusCode

func (s *InvalidInputException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidInputException) String

func (s InvalidInputException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidInstanceNameException

type InvalidInstanceNameException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The on-premises instance name was specified in an invalid format.

func (*InvalidInstanceNameException) Code

func (s *InvalidInstanceNameException) Code() string

Code returns the exception type name.

func (*InvalidInstanceNameException) Error

func (s *InvalidInstanceNameException) Error() string

func (InvalidInstanceNameException) GoString

func (s InvalidInstanceNameException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidInstanceNameException) Message

func (s *InvalidInstanceNameException) Message() string

Message returns the exception's message.

func (*InvalidInstanceNameException) OrigErr

func (s *InvalidInstanceNameException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidInstanceNameException) RequestID

func (s *InvalidInstanceNameException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidInstanceNameException) StatusCode

func (s *InvalidInstanceNameException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidInstanceNameException) String

func (s InvalidInstanceNameException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidInstanceStatusException

type InvalidInstanceStatusException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified instance status does not exist.

func (*InvalidInstanceStatusException) Code

func (s *InvalidInstanceStatusException) Code() string

Code returns the exception type name.

func (*InvalidInstanceStatusException) Error

func (s *InvalidInstanceStatusException) Error() string

func (InvalidInstanceStatusException) GoString

func (s InvalidInstanceStatusException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidInstanceStatusException) Message

func (s *InvalidInstanceStatusException) Message() string

Message returns the exception's message.

func (*InvalidInstanceStatusException) OrigErr

func (s *InvalidInstanceStatusException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidInstanceStatusException) RequestID

func (s *InvalidInstanceStatusException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidInstanceStatusException) StatusCode

func (s *InvalidInstanceStatusException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidInstanceStatusException) String

func (s InvalidInstanceStatusException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidInstanceTypeException

type InvalidInstanceTypeException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

An invalid instance type was specified for instances in a blue/green deployment. Valid values include "Blue" for an original environment and "Green" for a replacement environment.

func (*InvalidInstanceTypeException) Code

func (s *InvalidInstanceTypeException) Code() string

Code returns the exception type name.

func (*InvalidInstanceTypeException) Error

func (s *InvalidInstanceTypeException) Error() string

func (InvalidInstanceTypeException) GoString

func (s InvalidInstanceTypeException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidInstanceTypeException) Message

func (s *InvalidInstanceTypeException) Message() string

Message returns the exception's message.

func (*InvalidInstanceTypeException) OrigErr

func (s *InvalidInstanceTypeException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidInstanceTypeException) RequestID

func (s *InvalidInstanceTypeException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidInstanceTypeException) StatusCode

func (s *InvalidInstanceTypeException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidInstanceTypeException) String

func (s InvalidInstanceTypeException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidKeyPrefixFilterException

type InvalidKeyPrefixFilterException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified key prefix filter was specified in an invalid format.

func (*InvalidKeyPrefixFilterException) Code

func (s *InvalidKeyPrefixFilterException) Code() string

Code returns the exception type name.

func (*InvalidKeyPrefixFilterException) Error

func (s *InvalidKeyPrefixFilterException) Error() string

func (InvalidKeyPrefixFilterException) GoString

func (s InvalidKeyPrefixFilterException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidKeyPrefixFilterException) Message

func (s *InvalidKeyPrefixFilterException) Message() string

Message returns the exception's message.

func (*InvalidKeyPrefixFilterException) OrigErr

func (s *InvalidKeyPrefixFilterException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidKeyPrefixFilterException) RequestID

func (s *InvalidKeyPrefixFilterException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidKeyPrefixFilterException) StatusCode

func (s *InvalidKeyPrefixFilterException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidKeyPrefixFilterException) String

func (s InvalidKeyPrefixFilterException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidLifecycleEventHookExecutionIdException

type InvalidLifecycleEventHookExecutionIdException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

A lifecycle event hook is invalid. Review the hooks section in your AppSpec file to ensure the lifecycle events and hooks functions are valid.

func (*InvalidLifecycleEventHookExecutionIdException) Code

func (s *InvalidLifecycleEventHookExecutionIdException) Code() string

Code returns the exception type name.

func (*InvalidLifecycleEventHookExecutionIdException) Error

func (s *InvalidLifecycleEventHookExecutionIdException) Error() string

func (InvalidLifecycleEventHookExecutionIdException) GoString

func (s InvalidLifecycleEventHookExecutionIdException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidLifecycleEventHookExecutionIdException) Message

func (s *InvalidLifecycleEventHookExecutionIdException) Message() string

Message returns the exception's message.

func (*InvalidLifecycleEventHookExecutionIdException) OrigErr

func (s *InvalidLifecycleEventHookExecutionIdException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidLifecycleEventHookExecutionIdException) RequestID

func (s *InvalidLifecycleEventHookExecutionIdException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidLifecycleEventHookExecutionIdException) StatusCode

func (s *InvalidLifecycleEventHookExecutionIdException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidLifecycleEventHookExecutionIdException) String

func (s InvalidLifecycleEventHookExecutionIdException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidLifecycleEventHookExecutionStatusException

type InvalidLifecycleEventHookExecutionStatusException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The result of a Lambda validation function that verifies a lifecycle event is invalid. It should return Succeeded or Failed.

func (*InvalidLifecycleEventHookExecutionStatusException) Code

func (s *InvalidLifecycleEventHookExecutionStatusException) Code() string

Code returns the exception type name.

func (*InvalidLifecycleEventHookExecutionStatusException) Error

func (s *InvalidLifecycleEventHookExecutionStatusException) Error() string

func (InvalidLifecycleEventHookExecutionStatusException) GoString

func (s InvalidLifecycleEventHookExecutionStatusException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidLifecycleEventHookExecutionStatusException) Message

func (s *InvalidLifecycleEventHookExecutionStatusException) Message() string

Message returns the exception's message.

func (*InvalidLifecycleEventHookExecutionStatusException) OrigErr

func (s *InvalidLifecycleEventHookExecutionStatusException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidLifecycleEventHookExecutionStatusException) RequestID

func (s *InvalidLifecycleEventHookExecutionStatusException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidLifecycleEventHookExecutionStatusException) StatusCode

func (s *InvalidLifecycleEventHookExecutionStatusException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidLifecycleEventHookExecutionStatusException) String

func (s InvalidLifecycleEventHookExecutionStatusException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidLoadBalancerInfoException

type InvalidLoadBalancerInfoException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

An invalid load balancer name, or no load balancer name, was specified.

func (*InvalidLoadBalancerInfoException) Code

func (s *InvalidLoadBalancerInfoException) Code() string

Code returns the exception type name.

func (*InvalidLoadBalancerInfoException) Error

func (s *InvalidLoadBalancerInfoException) Error() string

func (InvalidLoadBalancerInfoException) GoString

func (s InvalidLoadBalancerInfoException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidLoadBalancerInfoException) Message

func (s *InvalidLoadBalancerInfoException) Message() string

Message returns the exception's message.

func (*InvalidLoadBalancerInfoException) OrigErr

func (s *InvalidLoadBalancerInfoException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidLoadBalancerInfoException) RequestID

func (s *InvalidLoadBalancerInfoException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidLoadBalancerInfoException) StatusCode

func (s *InvalidLoadBalancerInfoException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidLoadBalancerInfoException) String

func (s InvalidLoadBalancerInfoException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidMinimumHealthyHostValueException

type InvalidMinimumHealthyHostValueException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The minimum healthy instance value was specified in an invalid format.

func (*InvalidMinimumHealthyHostValueException) Code

func (s *InvalidMinimumHealthyHostValueException) Code() string

Code returns the exception type name.

func (*InvalidMinimumHealthyHostValueException) Error

func (s *InvalidMinimumHealthyHostValueException) Error() string

func (InvalidMinimumHealthyHostValueException) GoString

func (s InvalidMinimumHealthyHostValueException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidMinimumHealthyHostValueException) Message

func (s *InvalidMinimumHealthyHostValueException) Message() string

Message returns the exception's message.

func (*InvalidMinimumHealthyHostValueException) OrigErr

func (s *InvalidMinimumHealthyHostValueException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidMinimumHealthyHostValueException) RequestID

func (s *InvalidMinimumHealthyHostValueException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidMinimumHealthyHostValueException) StatusCode

func (s *InvalidMinimumHealthyHostValueException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidMinimumHealthyHostValueException) String

func (s InvalidMinimumHealthyHostValueException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidNextTokenException

type InvalidNextTokenException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The next token was specified in an invalid format.

func (*InvalidNextTokenException) Code

func (s *InvalidNextTokenException) Code() string

Code returns the exception type name.

func (*InvalidNextTokenException) Error

func (s *InvalidNextTokenException) Error() string

func (InvalidNextTokenException) GoString

func (s InvalidNextTokenException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidNextTokenException) Message

func (s *InvalidNextTokenException) Message() string

Message returns the exception's message.

func (*InvalidNextTokenException) OrigErr

func (s *InvalidNextTokenException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidNextTokenException) RequestID

func (s *InvalidNextTokenException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidNextTokenException) StatusCode

func (s *InvalidNextTokenException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidNextTokenException) String

func (s InvalidNextTokenException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidOnPremisesTagCombinationException

type InvalidOnPremisesTagCombinationException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

A call was submitted that specified both OnPremisesTagFilters and OnPremisesTagSet, but only one of these data types can be used in a single call.

func (*InvalidOnPremisesTagCombinationException) Code

func (s *InvalidOnPremisesTagCombinationException) Code() string

Code returns the exception type name.

func (*InvalidOnPremisesTagCombinationException) Error

func (s *InvalidOnPremisesTagCombinationException) Error() string

func (InvalidOnPremisesTagCombinationException) GoString

func (s InvalidOnPremisesTagCombinationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidOnPremisesTagCombinationException) Message

func (s *InvalidOnPremisesTagCombinationException) Message() string

Message returns the exception's message.

func (*InvalidOnPremisesTagCombinationException) OrigErr

func (s *InvalidOnPremisesTagCombinationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidOnPremisesTagCombinationException) RequestID

func (s *InvalidOnPremisesTagCombinationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidOnPremisesTagCombinationException) StatusCode

func (s *InvalidOnPremisesTagCombinationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidOnPremisesTagCombinationException) String

func (s InvalidOnPremisesTagCombinationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidOperationException

type InvalidOperationException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

An invalid operation was detected.

func (*InvalidOperationException) Code

func (s *InvalidOperationException) Code() string

Code returns the exception type name.

func (*InvalidOperationException) Error

func (s *InvalidOperationException) Error() string

func (InvalidOperationException) GoString

func (s InvalidOperationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidOperationException) Message

func (s *InvalidOperationException) Message() string

Message returns the exception's message.

func (*InvalidOperationException) OrigErr

func (s *InvalidOperationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidOperationException) RequestID

func (s *InvalidOperationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidOperationException) StatusCode

func (s *InvalidOperationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidOperationException) String

func (s InvalidOperationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidRegistrationStatusException

type InvalidRegistrationStatusException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The registration status was specified in an invalid format.

func (*InvalidRegistrationStatusException) Code

func (s *InvalidRegistrationStatusException) Code() string

Code returns the exception type name.

func (*InvalidRegistrationStatusException) Error

func (s *InvalidRegistrationStatusException) Error() string

func (InvalidRegistrationStatusException) GoString

func (s InvalidRegistrationStatusException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidRegistrationStatusException) Message

func (s *InvalidRegistrationStatusException) Message() string

Message returns the exception's message.

func (*InvalidRegistrationStatusException) OrigErr

func (s *InvalidRegistrationStatusException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidRegistrationStatusException) RequestID

func (s *InvalidRegistrationStatusException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidRegistrationStatusException) StatusCode

func (s *InvalidRegistrationStatusException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidRegistrationStatusException) String

func (s InvalidRegistrationStatusException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidRevisionException

type InvalidRevisionException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The revision was specified in an invalid format.

func (*InvalidRevisionException) Code

func (s *InvalidRevisionException) Code() string

Code returns the exception type name.

func (*InvalidRevisionException) Error

func (s *InvalidRevisionException) Error() string

func (InvalidRevisionException) GoString

func (s InvalidRevisionException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidRevisionException) Message

func (s *InvalidRevisionException) Message() string

Message returns the exception's message.

func (*InvalidRevisionException) OrigErr

func (s *InvalidRevisionException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidRevisionException) RequestID

func (s *InvalidRevisionException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidRevisionException) StatusCode

func (s *InvalidRevisionException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidRevisionException) String

func (s InvalidRevisionException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidRoleException

type InvalidRoleException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The service role ARN was specified in an invalid format. Or, if an Auto Scaling group was specified, the specified service role does not grant the appropriate permissions to Amazon EC2 Auto Scaling.

func (*InvalidRoleException) Code

func (s *InvalidRoleException) Code() string

Code returns the exception type name.

func (*InvalidRoleException) Error

func (s *InvalidRoleException) Error() string

func (InvalidRoleException) GoString

func (s InvalidRoleException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidRoleException) Message

func (s *InvalidRoleException) Message() string

Message returns the exception's message.

func (*InvalidRoleException) OrigErr

func (s *InvalidRoleException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidRoleException) RequestID

func (s *InvalidRoleException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidRoleException) StatusCode

func (s *InvalidRoleException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidRoleException) String

func (s InvalidRoleException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidSortByException

type InvalidSortByException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The column name to sort by is either not present or was specified in an invalid format.

func (*InvalidSortByException) Code

func (s *InvalidSortByException) Code() string

Code returns the exception type name.

func (*InvalidSortByException) Error

func (s *InvalidSortByException) Error() string

func (InvalidSortByException) GoString

func (s InvalidSortByException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidSortByException) Message

func (s *InvalidSortByException) Message() string

Message returns the exception's message.

func (*InvalidSortByException) OrigErr

func (s *InvalidSortByException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidSortByException) RequestID

func (s *InvalidSortByException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidSortByException) StatusCode

func (s *InvalidSortByException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidSortByException) String

func (s InvalidSortByException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidSortOrderException

type InvalidSortOrderException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The sort order was specified in an invalid format.

func (*InvalidSortOrderException) Code

func (s *InvalidSortOrderException) Code() string

Code returns the exception type name.

func (*InvalidSortOrderException) Error

func (s *InvalidSortOrderException) Error() string

func (InvalidSortOrderException) GoString

func (s InvalidSortOrderException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidSortOrderException) Message

func (s *InvalidSortOrderException) Message() string

Message returns the exception's message.

func (*InvalidSortOrderException) OrigErr

func (s *InvalidSortOrderException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidSortOrderException) RequestID

func (s *InvalidSortOrderException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidSortOrderException) StatusCode

func (s *InvalidSortOrderException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidSortOrderException) String

func (s InvalidSortOrderException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidTagException

type InvalidTagException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The tag was specified in an invalid format.

func (*InvalidTagException) Code

func (s *InvalidTagException) Code() string

Code returns the exception type name.

func (*InvalidTagException) Error

func (s *InvalidTagException) Error() string

func (InvalidTagException) GoString

func (s InvalidTagException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidTagException) Message

func (s *InvalidTagException) Message() string

Message returns the exception's message.

func (*InvalidTagException) OrigErr

func (s *InvalidTagException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidTagException) RequestID

func (s *InvalidTagException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidTagException) StatusCode

func (s *InvalidTagException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidTagException) String

func (s InvalidTagException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidTagFilterException

type InvalidTagFilterException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The tag filter was specified in an invalid format.

func (*InvalidTagFilterException) Code

func (s *InvalidTagFilterException) Code() string

Code returns the exception type name.

func (*InvalidTagFilterException) Error

func (s *InvalidTagFilterException) Error() string

func (InvalidTagFilterException) GoString

func (s InvalidTagFilterException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidTagFilterException) Message

func (s *InvalidTagFilterException) Message() string

Message returns the exception's message.

func (*InvalidTagFilterException) OrigErr

func (s *InvalidTagFilterException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidTagFilterException) RequestID

func (s *InvalidTagFilterException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidTagFilterException) StatusCode

func (s *InvalidTagFilterException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidTagFilterException) String

func (s InvalidTagFilterException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidTagsToAddException

type InvalidTagsToAddException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified tags are not valid.

func (*InvalidTagsToAddException) Code

func (s *InvalidTagsToAddException) Code() string

Code returns the exception type name.

func (*InvalidTagsToAddException) Error

func (s *InvalidTagsToAddException) Error() string

func (InvalidTagsToAddException) GoString

func (s InvalidTagsToAddException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidTagsToAddException) Message

func (s *InvalidTagsToAddException) Message() string

Message returns the exception's message.

func (*InvalidTagsToAddException) OrigErr

func (s *InvalidTagsToAddException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidTagsToAddException) RequestID

func (s *InvalidTagsToAddException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidTagsToAddException) StatusCode

func (s *InvalidTagsToAddException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidTagsToAddException) String

func (s InvalidTagsToAddException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidTargetFilterNameException

type InvalidTargetFilterNameException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The target filter name is invalid.

func (*InvalidTargetFilterNameException) Code

func (s *InvalidTargetFilterNameException) Code() string

Code returns the exception type name.

func (*InvalidTargetFilterNameException) Error

func (s *InvalidTargetFilterNameException) Error() string

func (InvalidTargetFilterNameException) GoString

func (s InvalidTargetFilterNameException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidTargetFilterNameException) Message

func (s *InvalidTargetFilterNameException) Message() string

Message returns the exception's message.

func (*InvalidTargetFilterNameException) OrigErr

func (s *InvalidTargetFilterNameException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidTargetFilterNameException) RequestID

func (s *InvalidTargetFilterNameException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidTargetFilterNameException) StatusCode

func (s *InvalidTargetFilterNameException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidTargetFilterNameException) String

func (s InvalidTargetFilterNameException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidTargetGroupPairException

type InvalidTargetGroupPairException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

A target group pair associated with this deployment is not valid.

func (*InvalidTargetGroupPairException) Code

func (s *InvalidTargetGroupPairException) Code() string

Code returns the exception type name.

func (*InvalidTargetGroupPairException) Error

func (s *InvalidTargetGroupPairException) Error() string

func (InvalidTargetGroupPairException) GoString

func (s InvalidTargetGroupPairException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidTargetGroupPairException) Message

func (s *InvalidTargetGroupPairException) Message() string

Message returns the exception's message.

func (*InvalidTargetGroupPairException) OrigErr

func (s *InvalidTargetGroupPairException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidTargetGroupPairException) RequestID

func (s *InvalidTargetGroupPairException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidTargetGroupPairException) StatusCode

func (s *InvalidTargetGroupPairException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidTargetGroupPairException) String

func (s InvalidTargetGroupPairException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidTargetInstancesException

type InvalidTargetInstancesException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The target instance configuration is invalid. Possible causes include:

  • Configuration data for target instances was entered for an in-place deployment.

  • The limit of 10 tags for a tag type was exceeded.

  • The combined length of the tag names exceeded the limit.

  • A specified tag is not currently applied to any instances.

func (*InvalidTargetInstancesException) Code

func (s *InvalidTargetInstancesException) Code() string

Code returns the exception type name.

func (*InvalidTargetInstancesException) Error

func (s *InvalidTargetInstancesException) Error() string

func (InvalidTargetInstancesException) GoString

func (s InvalidTargetInstancesException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidTargetInstancesException) Message

func (s *InvalidTargetInstancesException) Message() string

Message returns the exception's message.

func (*InvalidTargetInstancesException) OrigErr

func (s *InvalidTargetInstancesException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidTargetInstancesException) RequestID

func (s *InvalidTargetInstancesException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidTargetInstancesException) StatusCode

func (s *InvalidTargetInstancesException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidTargetInstancesException) String

func (s InvalidTargetInstancesException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidTimeRangeException

type InvalidTimeRangeException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified time range was specified in an invalid format.

func (*InvalidTimeRangeException) Code

func (s *InvalidTimeRangeException) Code() string

Code returns the exception type name.

func (*InvalidTimeRangeException) Error

func (s *InvalidTimeRangeException) Error() string

func (InvalidTimeRangeException) GoString

func (s InvalidTimeRangeException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidTimeRangeException) Message

func (s *InvalidTimeRangeException) Message() string

Message returns the exception's message.

func (*InvalidTimeRangeException) OrigErr

func (s *InvalidTimeRangeException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidTimeRangeException) RequestID

func (s *InvalidTimeRangeException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidTimeRangeException) StatusCode

func (s *InvalidTimeRangeException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidTimeRangeException) String

func (s InvalidTimeRangeException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidTrafficRoutingConfigurationException

type InvalidTrafficRoutingConfigurationException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The configuration that specifies how traffic is routed during a deployment is invalid.

func (*InvalidTrafficRoutingConfigurationException) Code

func (s *InvalidTrafficRoutingConfigurationException) Code() string

Code returns the exception type name.

func (*InvalidTrafficRoutingConfigurationException) Error

func (s *InvalidTrafficRoutingConfigurationException) Error() string

func (InvalidTrafficRoutingConfigurationException) GoString

func (s InvalidTrafficRoutingConfigurationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidTrafficRoutingConfigurationException) Message

func (s *InvalidTrafficRoutingConfigurationException) Message() string

Message returns the exception's message.

func (*InvalidTrafficRoutingConfigurationException) OrigErr

func (s *InvalidTrafficRoutingConfigurationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidTrafficRoutingConfigurationException) RequestID

func (s *InvalidTrafficRoutingConfigurationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidTrafficRoutingConfigurationException) StatusCode

func (s *InvalidTrafficRoutingConfigurationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidTrafficRoutingConfigurationException) String

func (s InvalidTrafficRoutingConfigurationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidTriggerConfigException

type InvalidTriggerConfigException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The trigger was specified in an invalid format.

func (*InvalidTriggerConfigException) Code

func (s *InvalidTriggerConfigException) Code() string

Code returns the exception type name.

func (*InvalidTriggerConfigException) Error

func (s *InvalidTriggerConfigException) Error() string

func (InvalidTriggerConfigException) GoString

func (s InvalidTriggerConfigException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidTriggerConfigException) Message

func (s *InvalidTriggerConfigException) Message() string

Message returns the exception's message.

func (*InvalidTriggerConfigException) OrigErr

func (s *InvalidTriggerConfigException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidTriggerConfigException) RequestID

func (s *InvalidTriggerConfigException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidTriggerConfigException) StatusCode

func (s *InvalidTriggerConfigException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidTriggerConfigException) String

func (s InvalidTriggerConfigException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidUpdateOutdatedInstancesOnlyValueException

type InvalidUpdateOutdatedInstancesOnlyValueException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The UpdateOutdatedInstancesOnly value is invalid. For Lambda deployments, false is expected. For EC2/On-premises deployments, true or false is expected.

func (*InvalidUpdateOutdatedInstancesOnlyValueException) Code

func (s *InvalidUpdateOutdatedInstancesOnlyValueException) Code() string

Code returns the exception type name.

func (*InvalidUpdateOutdatedInstancesOnlyValueException) Error

func (s *InvalidUpdateOutdatedInstancesOnlyValueException) Error() string

func (InvalidUpdateOutdatedInstancesOnlyValueException) GoString

func (s InvalidUpdateOutdatedInstancesOnlyValueException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidUpdateOutdatedInstancesOnlyValueException) Message

func (s *InvalidUpdateOutdatedInstancesOnlyValueException) Message() string

Message returns the exception's message.

func (*InvalidUpdateOutdatedInstancesOnlyValueException) OrigErr

func (s *InvalidUpdateOutdatedInstancesOnlyValueException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidUpdateOutdatedInstancesOnlyValueException) RequestID

func (s *InvalidUpdateOutdatedInstancesOnlyValueException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidUpdateOutdatedInstancesOnlyValueException) StatusCode

func (s *InvalidUpdateOutdatedInstancesOnlyValueException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidUpdateOutdatedInstancesOnlyValueException) String

func (s InvalidUpdateOutdatedInstancesOnlyValueException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidZonalDeploymentConfigurationException

type InvalidZonalDeploymentConfigurationException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The ZonalConfig object is not valid.

func (*InvalidZonalDeploymentConfigurationException) Code

func (s *InvalidZonalDeploymentConfigurationException) Code() string

Code returns the exception type name.

func (*InvalidZonalDeploymentConfigurationException) Error

func (s *InvalidZonalDeploymentConfigurationException) Error() string

func (InvalidZonalDeploymentConfigurationException) GoString

func (s InvalidZonalDeploymentConfigurationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidZonalDeploymentConfigurationException) Message

func (s *InvalidZonalDeploymentConfigurationException) Message() string

Message returns the exception's message.

func (*InvalidZonalDeploymentConfigurationException) OrigErr

func (s *InvalidZonalDeploymentConfigurationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidZonalDeploymentConfigurationException) RequestID

func (s *InvalidZonalDeploymentConfigurationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidZonalDeploymentConfigurationException) StatusCode

func (s *InvalidZonalDeploymentConfigurationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidZonalDeploymentConfigurationException) String

func (s InvalidZonalDeploymentConfigurationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type LambdaFunctionInfo

type LambdaFunctionInfo struct {

    // The version of a Lambda function that production traffic points to.
    CurrentVersion *string `locationName:"currentVersion" type:"string"`

    // The alias of a Lambda function. For more information, see Lambda Function
    // Aliases (https://docs.aws.amazon.com/lambda/latest/dg/aliases-intro.html)
    // in the Lambda Developer Guide.
    FunctionAlias *string `locationName:"functionAlias" type:"string"`

    // The name of a Lambda function.
    FunctionName *string `locationName:"functionName" type:"string"`

    // The version of a Lambda function that production traffic points to after
    // the Lambda function is deployed.
    TargetVersion *string `locationName:"targetVersion" type:"string"`

    // The percentage of production traffic that the target version of a Lambda
    // function receives.
    TargetVersionWeight *float64 `locationName:"targetVersionWeight" type:"double"`
    // contains filtered or unexported fields
}

Information about a Lambda function specified in a deployment.

func (LambdaFunctionInfo) GoString

func (s LambdaFunctionInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LambdaFunctionInfo) SetCurrentVersion

func (s *LambdaFunctionInfo) SetCurrentVersion(v string) *LambdaFunctionInfo

SetCurrentVersion sets the CurrentVersion field's value.

func (*LambdaFunctionInfo) SetFunctionAlias

func (s *LambdaFunctionInfo) SetFunctionAlias(v string) *LambdaFunctionInfo

SetFunctionAlias sets the FunctionAlias field's value.

func (*LambdaFunctionInfo) SetFunctionName

func (s *LambdaFunctionInfo) SetFunctionName(v string) *LambdaFunctionInfo

SetFunctionName sets the FunctionName field's value.

func (*LambdaFunctionInfo) SetTargetVersion

func (s *LambdaFunctionInfo) SetTargetVersion(v string) *LambdaFunctionInfo

SetTargetVersion sets the TargetVersion field's value.

func (*LambdaFunctionInfo) SetTargetVersionWeight

func (s *LambdaFunctionInfo) SetTargetVersionWeight(v float64) *LambdaFunctionInfo

SetTargetVersionWeight sets the TargetVersionWeight field's value.

func (LambdaFunctionInfo) String

func (s LambdaFunctionInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type LambdaTarget

type LambdaTarget struct {

    // The unique ID of a deployment.
    DeploymentId *string `locationName:"deploymentId" type:"string"`

    // A LambdaFunctionInfo object that describes a target Lambda function.
    LambdaFunctionInfo *LambdaFunctionInfo `locationName:"lambdaFunctionInfo" type:"structure"`

    // The date and time when the target Lambda function was updated by a deployment.
    LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"`

    // The lifecycle events of the deployment to this target Lambda function.
    LifecycleEvents []*LifecycleEvent `locationName:"lifecycleEvents" type:"list"`

    // The status an Lambda deployment's target Lambda function.
    Status *string `locationName:"status" type:"string" enum:"TargetStatus"`

    // The Amazon Resource Name (ARN) of the target.
    TargetArn *string `locationName:"targetArn" type:"string"`

    // The unique ID of a deployment target that has a type of lambdaTarget.
    TargetId *string `locationName:"targetId" type:"string"`
    // contains filtered or unexported fields
}

Information about the target Lambda function during an Lambda deployment.

func (LambdaTarget) GoString

func (s LambdaTarget) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LambdaTarget) SetDeploymentId

func (s *LambdaTarget) SetDeploymentId(v string) *LambdaTarget

SetDeploymentId sets the DeploymentId field's value.

func (*LambdaTarget) SetLambdaFunctionInfo

func (s *LambdaTarget) SetLambdaFunctionInfo(v *LambdaFunctionInfo) *LambdaTarget

SetLambdaFunctionInfo sets the LambdaFunctionInfo field's value.

func (*LambdaTarget) SetLastUpdatedAt

func (s *LambdaTarget) SetLastUpdatedAt(v time.Time) *LambdaTarget

SetLastUpdatedAt sets the LastUpdatedAt field's value.

func (*LambdaTarget) SetLifecycleEvents

func (s *LambdaTarget) SetLifecycleEvents(v []*LifecycleEvent) *LambdaTarget

SetLifecycleEvents sets the LifecycleEvents field's value.

func (*LambdaTarget) SetStatus

func (s *LambdaTarget) SetStatus(v string) *LambdaTarget

SetStatus sets the Status field's value.

func (*LambdaTarget) SetTargetArn

func (s *LambdaTarget) SetTargetArn(v string) *LambdaTarget

SetTargetArn sets the TargetArn field's value.

func (*LambdaTarget) SetTargetId

func (s *LambdaTarget) SetTargetId(v string) *LambdaTarget

SetTargetId sets the TargetId field's value.

func (LambdaTarget) String

func (s LambdaTarget) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type LastDeploymentInfo

type LastDeploymentInfo struct {

    // A timestamp that indicates when the most recent deployment to the deployment
    // group started.
    CreateTime *time.Time `locationName:"createTime" type:"timestamp"`

    // The unique ID of a deployment.
    DeploymentId *string `locationName:"deploymentId" type:"string"`

    // A timestamp that indicates when the most recent deployment to the deployment
    // group was complete.
    EndTime *time.Time `locationName:"endTime" type:"timestamp"`

    // The status of the most recent deployment.
    Status *string `locationName:"status" type:"string" enum:"DeploymentStatus"`
    // contains filtered or unexported fields
}

Information about the most recent attempted or successful deployment to a deployment group.

func (LastDeploymentInfo) GoString

func (s LastDeploymentInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LastDeploymentInfo) SetCreateTime

func (s *LastDeploymentInfo) SetCreateTime(v time.Time) *LastDeploymentInfo

SetCreateTime sets the CreateTime field's value.

func (*LastDeploymentInfo) SetDeploymentId

func (s *LastDeploymentInfo) SetDeploymentId(v string) *LastDeploymentInfo

SetDeploymentId sets the DeploymentId field's value.

func (*LastDeploymentInfo) SetEndTime

func (s *LastDeploymentInfo) SetEndTime(v time.Time) *LastDeploymentInfo

SetEndTime sets the EndTime field's value.

func (*LastDeploymentInfo) SetStatus

func (s *LastDeploymentInfo) SetStatus(v string) *LastDeploymentInfo

SetStatus sets the Status field's value.

func (LastDeploymentInfo) String

func (s LastDeploymentInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type LifecycleEvent

type LifecycleEvent struct {

    // Diagnostic information about the deployment lifecycle event.
    Diagnostics *Diagnostics `locationName:"diagnostics" type:"structure"`

    // A timestamp that indicates when the deployment lifecycle event ended.
    EndTime *time.Time `locationName:"endTime" type:"timestamp"`

    // The deployment lifecycle event name, such as ApplicationStop, BeforeInstall,
    // AfterInstall, ApplicationStart, or ValidateService.
    LifecycleEventName *string `locationName:"lifecycleEventName" type:"string"`

    // A timestamp that indicates when the deployment lifecycle event started.
    StartTime *time.Time `locationName:"startTime" type:"timestamp"`

    // The deployment lifecycle event status:
    //
    //    * Pending: The deployment lifecycle event is pending.
    //
    //    * InProgress: The deployment lifecycle event is in progress.
    //
    //    * Succeeded: The deployment lifecycle event ran successfully.
    //
    //    * Failed: The deployment lifecycle event has failed.
    //
    //    * Skipped: The deployment lifecycle event has been skipped.
    //
    //    * Unknown: The deployment lifecycle event is unknown.
    Status *string `locationName:"status" type:"string" enum:"LifecycleEventStatus"`
    // contains filtered or unexported fields
}

Information about a deployment lifecycle event.

func (LifecycleEvent) GoString

func (s LifecycleEvent) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LifecycleEvent) SetDiagnostics

func (s *LifecycleEvent) SetDiagnostics(v *Diagnostics) *LifecycleEvent

SetDiagnostics sets the Diagnostics field's value.

func (*LifecycleEvent) SetEndTime

func (s *LifecycleEvent) SetEndTime(v time.Time) *LifecycleEvent

SetEndTime sets the EndTime field's value.

func (*LifecycleEvent) SetLifecycleEventName

func (s *LifecycleEvent) SetLifecycleEventName(v string) *LifecycleEvent

SetLifecycleEventName sets the LifecycleEventName field's value.

func (*LifecycleEvent) SetStartTime

func (s *LifecycleEvent) SetStartTime(v time.Time) *LifecycleEvent

SetStartTime sets the StartTime field's value.

func (*LifecycleEvent) SetStatus

func (s *LifecycleEvent) SetStatus(v string) *LifecycleEvent

SetStatus sets the Status field's value.

func (LifecycleEvent) String

func (s LifecycleEvent) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type LifecycleEventAlreadyCompletedException

type LifecycleEventAlreadyCompletedException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

An attempt to return the status of an already completed lifecycle event occurred.

func (*LifecycleEventAlreadyCompletedException) Code

func (s *LifecycleEventAlreadyCompletedException) Code() string

Code returns the exception type name.

func (*LifecycleEventAlreadyCompletedException) Error

func (s *LifecycleEventAlreadyCompletedException) Error() string

func (LifecycleEventAlreadyCompletedException) GoString

func (s LifecycleEventAlreadyCompletedException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LifecycleEventAlreadyCompletedException) Message

func (s *LifecycleEventAlreadyCompletedException) Message() string

Message returns the exception's message.

func (*LifecycleEventAlreadyCompletedException) OrigErr

func (s *LifecycleEventAlreadyCompletedException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*LifecycleEventAlreadyCompletedException) RequestID

func (s *LifecycleEventAlreadyCompletedException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*LifecycleEventAlreadyCompletedException) StatusCode

func (s *LifecycleEventAlreadyCompletedException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (LifecycleEventAlreadyCompletedException) String

func (s LifecycleEventAlreadyCompletedException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type LifecycleHookLimitExceededException

type LifecycleHookLimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The limit for lifecycle hooks was exceeded.

func (*LifecycleHookLimitExceededException) Code

func (s *LifecycleHookLimitExceededException) Code() string

Code returns the exception type name.

func (*LifecycleHookLimitExceededException) Error

func (s *LifecycleHookLimitExceededException) Error() string

func (LifecycleHookLimitExceededException) GoString

func (s LifecycleHookLimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LifecycleHookLimitExceededException) Message

func (s *LifecycleHookLimitExceededException) Message() string

Message returns the exception's message.

func (*LifecycleHookLimitExceededException) OrigErr

func (s *LifecycleHookLimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*LifecycleHookLimitExceededException) RequestID

func (s *LifecycleHookLimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*LifecycleHookLimitExceededException) StatusCode

func (s *LifecycleHookLimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (LifecycleHookLimitExceededException) String

func (s LifecycleHookLimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListApplicationRevisionsInput

type ListApplicationRevisionsInput struct {

    // The name of an CodeDeploy application associated with the user or Amazon
    // Web Services account.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`

    // Whether to list revisions based on whether the revision is the target revision
    // of a deployment group:
    //
    //    * include: List revisions that are target revisions of a deployment group.
    //
    //    * exclude: Do not list revisions that are target revisions of a deployment
    //    group.
    //
    //    * ignore: List all revisions.
    Deployed *string `locationName:"deployed" type:"string" enum:"ListStateFilterAction"`

    // An identifier returned from the previous ListApplicationRevisions call. It
    // can be used to return the next set of applications in the list.
    NextToken *string `locationName:"nextToken" type:"string"`

    // An Amazon S3 bucket name to limit the search for revisions.
    //
    // If set to null, all of the user's buckets are searched.
    S3Bucket *string `locationName:"s3Bucket" type:"string"`

    // A key prefix for the set of Amazon S3 objects to limit the search for revisions.
    S3KeyPrefix *string `locationName:"s3KeyPrefix" type:"string"`

    // The column name to use to sort the list results:
    //
    //    * registerTime: Sort by the time the revisions were registered with CodeDeploy.
    //
    //    * firstUsedTime: Sort by the time the revisions were first used in a deployment.
    //
    //    * lastUsedTime: Sort by the time the revisions were last used in a deployment.
    //
    // If not specified or set to null, the results are returned in an arbitrary
    // order.
    SortBy *string `locationName:"sortBy" type:"string" enum:"ApplicationRevisionSortBy"`

    // The order in which to sort the list results:
    //
    //    * ascending: ascending order.
    //
    //    * descending: descending order.
    //
    // If not specified, the results are sorted in ascending order.
    //
    // If set to null, the results are sorted in an arbitrary order.
    SortOrder *string `locationName:"sortOrder" type:"string" enum:"SortOrder"`
    // contains filtered or unexported fields
}

Represents the input of a ListApplicationRevisions operation.

func (ListApplicationRevisionsInput) GoString

func (s ListApplicationRevisionsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListApplicationRevisionsInput) SetApplicationName

func (s *ListApplicationRevisionsInput) SetApplicationName(v string) *ListApplicationRevisionsInput

SetApplicationName sets the ApplicationName field's value.

func (*ListApplicationRevisionsInput) SetDeployed

func (s *ListApplicationRevisionsInput) SetDeployed(v string) *ListApplicationRevisionsInput

SetDeployed sets the Deployed field's value.

func (*ListApplicationRevisionsInput) SetNextToken

func (s *ListApplicationRevisionsInput) SetNextToken(v string) *ListApplicationRevisionsInput

SetNextToken sets the NextToken field's value.

func (*ListApplicationRevisionsInput) SetS3Bucket

func (s *ListApplicationRevisionsInput) SetS3Bucket(v string) *ListApplicationRevisionsInput

SetS3Bucket sets the S3Bucket field's value.

func (*ListApplicationRevisionsInput) SetS3KeyPrefix

func (s *ListApplicationRevisionsInput) SetS3KeyPrefix(v string) *ListApplicationRevisionsInput

SetS3KeyPrefix sets the S3KeyPrefix field's value.

func (*ListApplicationRevisionsInput) SetSortBy

func (s *ListApplicationRevisionsInput) SetSortBy(v string) *ListApplicationRevisionsInput

SetSortBy sets the SortBy field's value.

func (*ListApplicationRevisionsInput) SetSortOrder

func (s *ListApplicationRevisionsInput) SetSortOrder(v string) *ListApplicationRevisionsInput

SetSortOrder sets the SortOrder field's value.

func (ListApplicationRevisionsInput) String

func (s ListApplicationRevisionsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListApplicationRevisionsInput) Validate

func (s *ListApplicationRevisionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListApplicationRevisionsOutput

type ListApplicationRevisionsOutput struct {

    // If a large amount of information is returned, an identifier is also returned.
    // It can be used in a subsequent list application revisions call to return
    // the next set of application revisions in the list.
    NextToken *string `locationName:"nextToken" type:"string"`

    // A list of locations that contain the matching revisions.
    Revisions []*RevisionLocation `locationName:"revisions" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a ListApplicationRevisions operation.

func (ListApplicationRevisionsOutput) GoString

func (s ListApplicationRevisionsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListApplicationRevisionsOutput) SetNextToken

func (s *ListApplicationRevisionsOutput) SetNextToken(v string) *ListApplicationRevisionsOutput

SetNextToken sets the NextToken field's value.

func (*ListApplicationRevisionsOutput) SetRevisions

func (s *ListApplicationRevisionsOutput) SetRevisions(v []*RevisionLocation) *ListApplicationRevisionsOutput

SetRevisions sets the Revisions field's value.

func (ListApplicationRevisionsOutput) String

func (s ListApplicationRevisionsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListApplicationsInput

type ListApplicationsInput struct {

    // An identifier returned from the previous list applications call. It can be
    // used to return the next set of applications in the list.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

Represents the input of a ListApplications operation.

func (ListApplicationsInput) GoString

func (s ListApplicationsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListApplicationsInput) SetNextToken

func (s *ListApplicationsInput) SetNextToken(v string) *ListApplicationsInput

SetNextToken sets the NextToken field's value.

func (ListApplicationsInput) String

func (s ListApplicationsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListApplicationsOutput

type ListApplicationsOutput struct {

    // A list of application names.
    Applications []*string `locationName:"applications" type:"list"`

    // If a large amount of information is returned, an identifier is also returned.
    // It can be used in a subsequent list applications call to return the next
    // set of applications in the list.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a ListApplications operation.

func (ListApplicationsOutput) GoString

func (s ListApplicationsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListApplicationsOutput) SetApplications

func (s *ListApplicationsOutput) SetApplications(v []*string) *ListApplicationsOutput

SetApplications sets the Applications field's value.

func (*ListApplicationsOutput) SetNextToken

func (s *ListApplicationsOutput) SetNextToken(v string) *ListApplicationsOutput

SetNextToken sets the NextToken field's value.

func (ListApplicationsOutput) String

func (s ListApplicationsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListDeploymentConfigsInput

type ListDeploymentConfigsInput struct {

    // An identifier returned from the previous ListDeploymentConfigs call. It can
    // be used to return the next set of deployment configurations in the list.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

Represents the input of a ListDeploymentConfigs operation.

func (ListDeploymentConfigsInput) GoString

func (s ListDeploymentConfigsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentConfigsInput) SetNextToken

func (s *ListDeploymentConfigsInput) SetNextToken(v string) *ListDeploymentConfigsInput

SetNextToken sets the NextToken field's value.

func (ListDeploymentConfigsInput) String

func (s ListDeploymentConfigsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListDeploymentConfigsOutput

type ListDeploymentConfigsOutput struct {

    // A list of deployment configurations, including built-in configurations such
    // as CodeDeployDefault.OneAtATime.
    DeploymentConfigsList []*string `locationName:"deploymentConfigsList" type:"list"`

    // If a large amount of information is returned, an identifier is also returned.
    // It can be used in a subsequent list deployment configurations call to return
    // the next set of deployment configurations in the list.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a ListDeploymentConfigs operation.

func (ListDeploymentConfigsOutput) GoString

func (s ListDeploymentConfigsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentConfigsOutput) SetDeploymentConfigsList

func (s *ListDeploymentConfigsOutput) SetDeploymentConfigsList(v []*string) *ListDeploymentConfigsOutput

SetDeploymentConfigsList sets the DeploymentConfigsList field's value.

func (*ListDeploymentConfigsOutput) SetNextToken

func (s *ListDeploymentConfigsOutput) SetNextToken(v string) *ListDeploymentConfigsOutput

SetNextToken sets the NextToken field's value.

func (ListDeploymentConfigsOutput) String

func (s ListDeploymentConfigsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListDeploymentGroupsInput

type ListDeploymentGroupsInput struct {

    // The name of an CodeDeploy application associated with the user or Amazon
    // Web Services account.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`

    // An identifier returned from the previous list deployment groups call. It
    // can be used to return the next set of deployment groups in the list.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

Represents the input of a ListDeploymentGroups operation.

func (ListDeploymentGroupsInput) GoString

func (s ListDeploymentGroupsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentGroupsInput) SetApplicationName

func (s *ListDeploymentGroupsInput) SetApplicationName(v string) *ListDeploymentGroupsInput

SetApplicationName sets the ApplicationName field's value.

func (*ListDeploymentGroupsInput) SetNextToken

func (s *ListDeploymentGroupsInput) SetNextToken(v string) *ListDeploymentGroupsInput

SetNextToken sets the NextToken field's value.

func (ListDeploymentGroupsInput) String

func (s ListDeploymentGroupsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentGroupsInput) Validate

func (s *ListDeploymentGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListDeploymentGroupsOutput

type ListDeploymentGroupsOutput struct {

    // The application name.
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string"`

    // A list of deployment group names.
    DeploymentGroups []*string `locationName:"deploymentGroups" type:"list"`

    // If a large amount of information is returned, an identifier is also returned.
    // It can be used in a subsequent list deployment groups call to return the
    // next set of deployment groups in the list.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a ListDeploymentGroups operation.

func (ListDeploymentGroupsOutput) GoString

func (s ListDeploymentGroupsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentGroupsOutput) SetApplicationName

func (s *ListDeploymentGroupsOutput) SetApplicationName(v string) *ListDeploymentGroupsOutput

SetApplicationName sets the ApplicationName field's value.

func (*ListDeploymentGroupsOutput) SetDeploymentGroups

func (s *ListDeploymentGroupsOutput) SetDeploymentGroups(v []*string) *ListDeploymentGroupsOutput

SetDeploymentGroups sets the DeploymentGroups field's value.

func (*ListDeploymentGroupsOutput) SetNextToken

func (s *ListDeploymentGroupsOutput) SetNextToken(v string) *ListDeploymentGroupsOutput

SetNextToken sets the NextToken field's value.

func (ListDeploymentGroupsOutput) String

func (s ListDeploymentGroupsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListDeploymentInstancesInput

type ListDeploymentInstancesInput struct {

    // The unique ID of a deployment.
    //
    // DeploymentId is a required field
    DeploymentId *string `locationName:"deploymentId" type:"string" required:"true"`

    // A subset of instances to list by status:
    //
    //    * Pending: Include those instances with pending deployments.
    //
    //    * InProgress: Include those instances where deployments are still in progress.
    //
    //    * Succeeded: Include those instances with successful deployments.
    //
    //    * Failed: Include those instances with failed deployments.
    //
    //    * Skipped: Include those instances with skipped deployments.
    //
    //    * Unknown: Include those instances with deployments in an unknown state.
    InstanceStatusFilter []*string `locationName:"instanceStatusFilter" type:"list" enum:"InstanceStatus"`

    // The set of instances in a blue/green deployment, either those in the original
    // environment ("BLUE") or those in the replacement environment ("GREEN"), for
    // which you want to view instance information.
    InstanceTypeFilter []*string `locationName:"instanceTypeFilter" type:"list" enum:"InstanceType"`

    // An identifier returned from the previous list deployment instances call.
    // It can be used to return the next set of deployment instances in the list.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

Represents the input of a ListDeploymentInstances operation.

func (ListDeploymentInstancesInput) GoString

func (s ListDeploymentInstancesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentInstancesInput) SetDeploymentId

func (s *ListDeploymentInstancesInput) SetDeploymentId(v string) *ListDeploymentInstancesInput

SetDeploymentId sets the DeploymentId field's value.

func (*ListDeploymentInstancesInput) SetInstanceStatusFilter

func (s *ListDeploymentInstancesInput) SetInstanceStatusFilter(v []*string) *ListDeploymentInstancesInput

SetInstanceStatusFilter sets the InstanceStatusFilter field's value.

func (*ListDeploymentInstancesInput) SetInstanceTypeFilter

func (s *ListDeploymentInstancesInput) SetInstanceTypeFilter(v []*string) *ListDeploymentInstancesInput

SetInstanceTypeFilter sets the InstanceTypeFilter field's value.

func (*ListDeploymentInstancesInput) SetNextToken

func (s *ListDeploymentInstancesInput) SetNextToken(v string) *ListDeploymentInstancesInput

SetNextToken sets the NextToken field's value.

func (ListDeploymentInstancesInput) String

func (s ListDeploymentInstancesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentInstancesInput) Validate

func (s *ListDeploymentInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListDeploymentInstancesOutput

type ListDeploymentInstancesOutput struct {

    // A list of instance IDs.
    InstancesList []*string `locationName:"instancesList" type:"list"`

    // If a large amount of information is returned, an identifier is also returned.
    // It can be used in a subsequent list deployment instances call to return the
    // next set of deployment instances in the list.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a ListDeploymentInstances operation.

func (ListDeploymentInstancesOutput) GoString

func (s ListDeploymentInstancesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentInstancesOutput) SetInstancesList

func (s *ListDeploymentInstancesOutput) SetInstancesList(v []*string) *ListDeploymentInstancesOutput

SetInstancesList sets the InstancesList field's value.

func (*ListDeploymentInstancesOutput) SetNextToken

func (s *ListDeploymentInstancesOutput) SetNextToken(v string) *ListDeploymentInstancesOutput

SetNextToken sets the NextToken field's value.

func (ListDeploymentInstancesOutput) String

func (s ListDeploymentInstancesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListDeploymentTargetsInput

type ListDeploymentTargetsInput struct {

    // The unique ID of a deployment.
    //
    // DeploymentId is a required field
    DeploymentId *string `locationName:"deploymentId" type:"string" required:"true"`

    // A token identifier returned from the previous ListDeploymentTargets call.
    // It can be used to return the next set of deployment targets in the list.
    NextToken *string `locationName:"nextToken" type:"string"`

    // A key used to filter the returned targets. The two valid values are:
    //
    //    * TargetStatus - A TargetStatus filter string can be Failed, InProgress,
    //    Pending, Ready, Skipped, Succeeded, or Unknown.
    //
    //    * ServerInstanceLabel - A ServerInstanceLabel filter string can be Blue
    //    or Green.
    TargetFilters map[string][]*string `locationName:"targetFilters" type:"map"`
    // contains filtered or unexported fields
}

func (ListDeploymentTargetsInput) GoString

func (s ListDeploymentTargetsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentTargetsInput) SetDeploymentId

func (s *ListDeploymentTargetsInput) SetDeploymentId(v string) *ListDeploymentTargetsInput

SetDeploymentId sets the DeploymentId field's value.

func (*ListDeploymentTargetsInput) SetNextToken

func (s *ListDeploymentTargetsInput) SetNextToken(v string) *ListDeploymentTargetsInput

SetNextToken sets the NextToken field's value.

func (*ListDeploymentTargetsInput) SetTargetFilters

func (s *ListDeploymentTargetsInput) SetTargetFilters(v map[string][]*string) *ListDeploymentTargetsInput

SetTargetFilters sets the TargetFilters field's value.

func (ListDeploymentTargetsInput) String

func (s ListDeploymentTargetsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentTargetsInput) Validate

func (s *ListDeploymentTargetsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListDeploymentTargetsOutput

type ListDeploymentTargetsOutput struct {

    // If a large amount of information is returned, a token identifier is also
    // returned. It can be used in a subsequent ListDeploymentTargets call to return
    // the next set of deployment targets in the list.
    NextToken *string `locationName:"nextToken" type:"string"`

    // The unique IDs of deployment targets.
    TargetIds []*string `locationName:"targetIds" type:"list"`
    // contains filtered or unexported fields
}

func (ListDeploymentTargetsOutput) GoString

func (s ListDeploymentTargetsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentTargetsOutput) SetNextToken

func (s *ListDeploymentTargetsOutput) SetNextToken(v string) *ListDeploymentTargetsOutput

SetNextToken sets the NextToken field's value.

func (*ListDeploymentTargetsOutput) SetTargetIds

func (s *ListDeploymentTargetsOutput) SetTargetIds(v []*string) *ListDeploymentTargetsOutput

SetTargetIds sets the TargetIds field's value.

func (ListDeploymentTargetsOutput) String

func (s ListDeploymentTargetsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListDeploymentsInput

type ListDeploymentsInput struct {

    // The name of an CodeDeploy application associated with the user or Amazon
    // Web Services account.
    //
    // If applicationName is specified, then deploymentGroupName must be specified.
    // If it is not specified, then deploymentGroupName must not be specified.
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string"`

    // A time range (start and end) for returning a subset of the list of deployments.
    CreateTimeRange *TimeRange `locationName:"createTimeRange" type:"structure"`

    // The name of a deployment group for the specified application.
    //
    // If deploymentGroupName is specified, then applicationName must be specified.
    // If it is not specified, then applicationName must not be specified.
    DeploymentGroupName *string `locationName:"deploymentGroupName" min:"1" type:"string"`

    // The unique ID of an external resource for returning deployments linked to
    // the external resource.
    ExternalId *string `locationName:"externalId" type:"string"`

    // A subset of deployments to list by status:
    //
    //    * Created: Include created deployments in the resulting list.
    //
    //    * Queued: Include queued deployments in the resulting list.
    //
    //    * In Progress: Include in-progress deployments in the resulting list.
    //
    //    * Succeeded: Include successful deployments in the resulting list.
    //
    //    * Failed: Include failed deployments in the resulting list.
    //
    //    * Stopped: Include stopped deployments in the resulting list.
    IncludeOnlyStatuses []*string `locationName:"includeOnlyStatuses" type:"list" enum:"DeploymentStatus"`

    // An identifier returned from the previous list deployments call. It can be
    // used to return the next set of deployments in the list.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

Represents the input of a ListDeployments operation.

func (ListDeploymentsInput) GoString

func (s ListDeploymentsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentsInput) SetApplicationName

func (s *ListDeploymentsInput) SetApplicationName(v string) *ListDeploymentsInput

SetApplicationName sets the ApplicationName field's value.

func (*ListDeploymentsInput) SetCreateTimeRange

func (s *ListDeploymentsInput) SetCreateTimeRange(v *TimeRange) *ListDeploymentsInput

SetCreateTimeRange sets the CreateTimeRange field's value.

func (*ListDeploymentsInput) SetDeploymentGroupName

func (s *ListDeploymentsInput) SetDeploymentGroupName(v string) *ListDeploymentsInput

SetDeploymentGroupName sets the DeploymentGroupName field's value.

func (*ListDeploymentsInput) SetExternalId

func (s *ListDeploymentsInput) SetExternalId(v string) *ListDeploymentsInput

SetExternalId sets the ExternalId field's value.

func (*ListDeploymentsInput) SetIncludeOnlyStatuses

func (s *ListDeploymentsInput) SetIncludeOnlyStatuses(v []*string) *ListDeploymentsInput

SetIncludeOnlyStatuses sets the IncludeOnlyStatuses field's value.

func (*ListDeploymentsInput) SetNextToken

func (s *ListDeploymentsInput) SetNextToken(v string) *ListDeploymentsInput

SetNextToken sets the NextToken field's value.

func (ListDeploymentsInput) String

func (s ListDeploymentsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentsInput) Validate

func (s *ListDeploymentsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListDeploymentsOutput

type ListDeploymentsOutput struct {

    // A list of deployment IDs.
    Deployments []*string `locationName:"deployments" type:"list"`

    // If a large amount of information is returned, an identifier is also returned.
    // It can be used in a subsequent list deployments call to return the next set
    // of deployments in the list.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a ListDeployments operation.

func (ListDeploymentsOutput) GoString

func (s ListDeploymentsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDeploymentsOutput) SetDeployments

func (s *ListDeploymentsOutput) SetDeployments(v []*string) *ListDeploymentsOutput

SetDeployments sets the Deployments field's value.

func (*ListDeploymentsOutput) SetNextToken

func (s *ListDeploymentsOutput) SetNextToken(v string) *ListDeploymentsOutput

SetNextToken sets the NextToken field's value.

func (ListDeploymentsOutput) String

func (s ListDeploymentsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListGitHubAccountTokenNamesInput

type ListGitHubAccountTokenNamesInput struct {

    // An identifier returned from the previous ListGitHubAccountTokenNames call.
    // It can be used to return the next set of names in the list.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

Represents the input of a ListGitHubAccountTokenNames operation.

func (ListGitHubAccountTokenNamesInput) GoString

func (s ListGitHubAccountTokenNamesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListGitHubAccountTokenNamesInput) SetNextToken

func (s *ListGitHubAccountTokenNamesInput) SetNextToken(v string) *ListGitHubAccountTokenNamesInput

SetNextToken sets the NextToken field's value.

func (ListGitHubAccountTokenNamesInput) String

func (s ListGitHubAccountTokenNamesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListGitHubAccountTokenNamesOutput

type ListGitHubAccountTokenNamesOutput struct {

    // If a large amount of information is returned, an identifier is also returned.
    // It can be used in a subsequent ListGitHubAccountTokenNames call to return
    // the next set of names in the list.
    NextToken *string `locationName:"nextToken" type:"string"`

    // A list of names of connections to GitHub accounts.
    TokenNameList []*string `locationName:"tokenNameList" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a ListGitHubAccountTokenNames operation.

func (ListGitHubAccountTokenNamesOutput) GoString

func (s ListGitHubAccountTokenNamesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListGitHubAccountTokenNamesOutput) SetNextToken

func (s *ListGitHubAccountTokenNamesOutput) SetNextToken(v string) *ListGitHubAccountTokenNamesOutput

SetNextToken sets the NextToken field's value.

func (*ListGitHubAccountTokenNamesOutput) SetTokenNameList

func (s *ListGitHubAccountTokenNamesOutput) SetTokenNameList(v []*string) *ListGitHubAccountTokenNamesOutput

SetTokenNameList sets the TokenNameList field's value.

func (ListGitHubAccountTokenNamesOutput) String

func (s ListGitHubAccountTokenNamesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListOnPremisesInstancesInput

type ListOnPremisesInstancesInput struct {

    // An identifier returned from the previous list on-premises instances call.
    // It can be used to return the next set of on-premises instances in the list.
    NextToken *string `locationName:"nextToken" type:"string"`

    // The registration status of the on-premises instances:
    //
    //    * Deregistered: Include deregistered on-premises instances in the resulting
    //    list.
    //
    //    * Registered: Include registered on-premises instances in the resulting
    //    list.
    RegistrationStatus *string `locationName:"registrationStatus" type:"string" enum:"RegistrationStatus"`

    // The on-premises instance tags that are used to restrict the on-premises instance
    // names returned.
    TagFilters []*TagFilter `locationName:"tagFilters" type:"list"`
    // contains filtered or unexported fields
}

Represents the input of a ListOnPremisesInstances operation.

func (ListOnPremisesInstancesInput) GoString

func (s ListOnPremisesInstancesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListOnPremisesInstancesInput) SetNextToken

func (s *ListOnPremisesInstancesInput) SetNextToken(v string) *ListOnPremisesInstancesInput

SetNextToken sets the NextToken field's value.

func (*ListOnPremisesInstancesInput) SetRegistrationStatus

func (s *ListOnPremisesInstancesInput) SetRegistrationStatus(v string) *ListOnPremisesInstancesInput

SetRegistrationStatus sets the RegistrationStatus field's value.

func (*ListOnPremisesInstancesInput) SetTagFilters

func (s *ListOnPremisesInstancesInput) SetTagFilters(v []*TagFilter) *ListOnPremisesInstancesInput

SetTagFilters sets the TagFilters field's value.

func (ListOnPremisesInstancesInput) String

func (s ListOnPremisesInstancesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListOnPremisesInstancesOutput

type ListOnPremisesInstancesOutput struct {

    // The list of matching on-premises instance names.
    InstanceNames []*string `locationName:"instanceNames" type:"list"`

    // If a large amount of information is returned, an identifier is also returned.
    // It can be used in a subsequent list on-premises instances call to return
    // the next set of on-premises instances in the list.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of the list on-premises instances operation.

func (ListOnPremisesInstancesOutput) GoString

func (s ListOnPremisesInstancesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListOnPremisesInstancesOutput) SetInstanceNames

func (s *ListOnPremisesInstancesOutput) SetInstanceNames(v []*string) *ListOnPremisesInstancesOutput

SetInstanceNames sets the InstanceNames field's value.

func (*ListOnPremisesInstancesOutput) SetNextToken

func (s *ListOnPremisesInstancesOutput) SetNextToken(v string) *ListOnPremisesInstancesOutput

SetNextToken sets the NextToken field's value.

func (ListOnPremisesInstancesOutput) String

func (s ListOnPremisesInstancesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListTagsForResourceInput

type ListTagsForResourceInput struct {

    // An identifier returned from the previous ListTagsForResource call. It can
    // be used to return the next set of applications in the list.
    NextToken *string `type:"string"`

    // The ARN of a CodeDeploy resource. ListTagsForResource returns all the tags
    // associated with the resource that is identified by the ResourceArn.
    //
    // ResourceArn is a required field
    ResourceArn *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ListTagsForResourceInput) GoString

func (s ListTagsForResourceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListTagsForResourceInput) SetNextToken

func (s *ListTagsForResourceInput) SetNextToken(v string) *ListTagsForResourceInput

SetNextToken sets the NextToken field's value.

func (*ListTagsForResourceInput) SetResourceArn

func (s *ListTagsForResourceInput) SetResourceArn(v string) *ListTagsForResourceInput

SetResourceArn sets the ResourceArn field's value.

func (ListTagsForResourceInput) String

func (s ListTagsForResourceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListTagsForResourceInput) Validate

func (s *ListTagsForResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListTagsForResourceOutput

type ListTagsForResourceOutput struct {

    // If a large amount of information is returned, an identifier is also returned.
    // It can be used in a subsequent list application revisions call to return
    // the next set of application revisions in the list.
    NextToken *string `type:"string"`

    // A list of tags returned by ListTagsForResource. The tags are associated with
    // the resource identified by the input ResourceArn parameter.
    Tags []*Tag `type:"list"`
    // contains filtered or unexported fields
}

func (ListTagsForResourceOutput) GoString

func (s ListTagsForResourceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListTagsForResourceOutput) SetNextToken

func (s *ListTagsForResourceOutput) SetNextToken(v string) *ListTagsForResourceOutput

SetNextToken sets the NextToken field's value.

func (*ListTagsForResourceOutput) SetTags

func (s *ListTagsForResourceOutput) SetTags(v []*Tag) *ListTagsForResourceOutput

SetTags sets the Tags field's value.

func (ListTagsForResourceOutput) String

func (s ListTagsForResourceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type LoadBalancerInfo

type LoadBalancerInfo struct {

    // An array that contains information about the load balancers to use for load
    // balancing in a deployment. If you're using Classic Load Balancers, specify
    // those load balancers in this array.
    //
    // You can add up to 10 load balancers to the array.
    //
    // If you're using Application Load Balancers or Network Load Balancers, use
    // the targetGroupInfoList array instead of this one.
    ElbInfoList []*ELBInfo `locationName:"elbInfoList" type:"list"`

    // An array that contains information about the target groups to use for load
    // balancing in a deployment. If you're using Application Load Balancers and
    // Network Load Balancers, specify their associated target groups in this array.
    //
    // You can add up to 10 target groups to the array.
    //
    // If you're using Classic Load Balancers, use the elbInfoList array instead
    // of this one.
    TargetGroupInfoList []*TargetGroupInfo `locationName:"targetGroupInfoList" type:"list"`

    // The target group pair information. This is an array of TargeGroupPairInfo
    // objects with a maximum size of one.
    TargetGroupPairInfoList []*TargetGroupPairInfo `locationName:"targetGroupPairInfoList" type:"list"`
    // contains filtered or unexported fields
}

Information about the Elastic Load Balancing load balancer or target group used in a deployment.

You can use load balancers and target groups in combination. For example, if you have two Classic Load Balancers, and five target groups tied to an Application Load Balancer, you can specify the two Classic Load Balancers in elbInfoList, and the five target groups in targetGroupInfoList.

func (LoadBalancerInfo) GoString

func (s LoadBalancerInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LoadBalancerInfo) SetElbInfoList

func (s *LoadBalancerInfo) SetElbInfoList(v []*ELBInfo) *LoadBalancerInfo

SetElbInfoList sets the ElbInfoList field's value.

func (*LoadBalancerInfo) SetTargetGroupInfoList

func (s *LoadBalancerInfo) SetTargetGroupInfoList(v []*TargetGroupInfo) *LoadBalancerInfo

SetTargetGroupInfoList sets the TargetGroupInfoList field's value.

func (*LoadBalancerInfo) SetTargetGroupPairInfoList

func (s *LoadBalancerInfo) SetTargetGroupPairInfoList(v []*TargetGroupPairInfo) *LoadBalancerInfo

SetTargetGroupPairInfoList sets the TargetGroupPairInfoList field's value.

func (LoadBalancerInfo) String

func (s LoadBalancerInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MinimumHealthyHosts

type MinimumHealthyHosts struct {

    // The minimum healthy instance type:
    //
    //    * HOST_COUNT: The minimum number of healthy instances as an absolute value.
    //
    //    * FLEET_PERCENT: The minimum number of healthy instances as a percentage
    //    of the total number of instances in the deployment.
    //
    // In an example of nine instances, if a HOST_COUNT of six is specified, deploy
    // to up to three instances at a time. The deployment is successful if six or
    // more instances are deployed to successfully. Otherwise, the deployment fails.
    // If a FLEET_PERCENT of 40 is specified, deploy to up to five instances at
    // a time. The deployment is successful if four or more instances are deployed
    // to successfully. Otherwise, the deployment fails.
    //
    // In a call to the GetDeploymentConfig, CodeDeployDefault.OneAtATime returns
    // a minimum healthy instance type of MOST_CONCURRENCY and a value of 1. This
    // means a deployment to only one instance at a time. (You cannot set the type
    // to MOST_CONCURRENCY, only to HOST_COUNT or FLEET_PERCENT.) In addition, with
    // CodeDeployDefault.OneAtATime, CodeDeploy attempts to ensure that all instances
    // but one are kept in a healthy state during the deployment. Although this
    // allows one instance at a time to be taken offline for a new deployment, it
    // also means that if the deployment to the last instance fails, the overall
    // deployment is still successful.
    //
    // For more information, see CodeDeploy Instance Health (https://docs.aws.amazon.com/codedeploy/latest/userguide/instances-health.html)
    // in the CodeDeploy User Guide.
    Type *string `locationName:"type" type:"string" enum:"MinimumHealthyHostsType"`

    // The minimum healthy instance value.
    Value *int64 `locationName:"value" type:"integer"`
    // contains filtered or unexported fields
}

Information about the minimum number of healthy instances.

func (MinimumHealthyHosts) GoString

func (s MinimumHealthyHosts) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MinimumHealthyHosts) SetType

func (s *MinimumHealthyHosts) SetType(v string) *MinimumHealthyHosts

SetType sets the Type field's value.

func (*MinimumHealthyHosts) SetValue

func (s *MinimumHealthyHosts) SetValue(v int64) *MinimumHealthyHosts

SetValue sets the Value field's value.

func (MinimumHealthyHosts) String

func (s MinimumHealthyHosts) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MinimumHealthyHostsPerZone

type MinimumHealthyHostsPerZone struct {

    // The type associated with the MinimumHealthyHostsPerZone option.
    Type *string `locationName:"type" type:"string" enum:"MinimumHealthyHostsPerZoneType"`

    // The value associated with the MinimumHealthyHostsPerZone option.
    Value *int64 `locationName:"value" type:"integer"`
    // contains filtered or unexported fields
}

Information about the minimum number of healthy instances per Availability Zone.

func (MinimumHealthyHostsPerZone) GoString

func (s MinimumHealthyHostsPerZone) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MinimumHealthyHostsPerZone) SetType

func (s *MinimumHealthyHostsPerZone) SetType(v string) *MinimumHealthyHostsPerZone

SetType sets the Type field's value.

func (*MinimumHealthyHostsPerZone) SetValue

func (s *MinimumHealthyHostsPerZone) SetValue(v int64) *MinimumHealthyHostsPerZone

SetValue sets the Value field's value.

func (MinimumHealthyHostsPerZone) String

func (s MinimumHealthyHostsPerZone) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MultipleIamArnsProvidedException

type MultipleIamArnsProvidedException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

Both an user ARN and an IAM session ARN were included in the request. Use only one ARN type.

func (*MultipleIamArnsProvidedException) Code

func (s *MultipleIamArnsProvidedException) Code() string

Code returns the exception type name.

func (*MultipleIamArnsProvidedException) Error

func (s *MultipleIamArnsProvidedException) Error() string

func (MultipleIamArnsProvidedException) GoString

func (s MultipleIamArnsProvidedException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MultipleIamArnsProvidedException) Message

func (s *MultipleIamArnsProvidedException) Message() string

Message returns the exception's message.

func (*MultipleIamArnsProvidedException) OrigErr

func (s *MultipleIamArnsProvidedException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*MultipleIamArnsProvidedException) RequestID

func (s *MultipleIamArnsProvidedException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*MultipleIamArnsProvidedException) StatusCode

func (s *MultipleIamArnsProvidedException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (MultipleIamArnsProvidedException) String

func (s MultipleIamArnsProvidedException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OnPremisesTagSet

type OnPremisesTagSet struct {

    // A list that contains other lists of on-premises instance tag groups. For
    // an instance to be included in the deployment group, it must be identified
    // by all of the tag groups in the list.
    OnPremisesTagSetList [][]*TagFilter `locationName:"onPremisesTagSetList" type:"list"`
    // contains filtered or unexported fields
}

Information about groups of on-premises instance tags.

func (OnPremisesTagSet) GoString

func (s OnPremisesTagSet) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OnPremisesTagSet) SetOnPremisesTagSetList

func (s *OnPremisesTagSet) SetOnPremisesTagSetList(v [][]*TagFilter) *OnPremisesTagSet

SetOnPremisesTagSetList sets the OnPremisesTagSetList field's value.

func (OnPremisesTagSet) String

func (s OnPremisesTagSet) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OperationNotSupportedException

type OperationNotSupportedException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The API used does not support the deployment.

func (*OperationNotSupportedException) Code

func (s *OperationNotSupportedException) Code() string

Code returns the exception type name.

func (*OperationNotSupportedException) Error

func (s *OperationNotSupportedException) Error() string

func (OperationNotSupportedException) GoString

func (s OperationNotSupportedException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OperationNotSupportedException) Message

func (s *OperationNotSupportedException) Message() string

Message returns the exception's message.

func (*OperationNotSupportedException) OrigErr

func (s *OperationNotSupportedException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*OperationNotSupportedException) RequestID

func (s *OperationNotSupportedException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*OperationNotSupportedException) StatusCode

func (s *OperationNotSupportedException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (OperationNotSupportedException) String

func (s OperationNotSupportedException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutLifecycleEventHookExecutionStatusInput

type PutLifecycleEventHookExecutionStatusInput struct {

    // The unique ID of a deployment. Pass this ID to a Lambda function that validates
    // a deployment lifecycle event.
    DeploymentId *string `locationName:"deploymentId" type:"string"`

    // The execution ID of a deployment's lifecycle hook. A deployment lifecycle
    // hook is specified in the hooks section of the AppSpec file.
    LifecycleEventHookExecutionId *string `locationName:"lifecycleEventHookExecutionId" type:"string"`

    // The result of a Lambda function that validates a deployment lifecycle event.
    // The values listed in Valid Values are valid for lifecycle statuses in general;
    // however, only Succeeded and Failed can be passed successfully in your API
    // call.
    Status *string `locationName:"status" type:"string" enum:"LifecycleEventStatus"`
    // contains filtered or unexported fields
}

func (PutLifecycleEventHookExecutionStatusInput) GoString

func (s PutLifecycleEventHookExecutionStatusInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutLifecycleEventHookExecutionStatusInput) SetDeploymentId

func (s *PutLifecycleEventHookExecutionStatusInput) SetDeploymentId(v string) *PutLifecycleEventHookExecutionStatusInput

SetDeploymentId sets the DeploymentId field's value.

func (*PutLifecycleEventHookExecutionStatusInput) SetLifecycleEventHookExecutionId

func (s *PutLifecycleEventHookExecutionStatusInput) SetLifecycleEventHookExecutionId(v string) *PutLifecycleEventHookExecutionStatusInput

SetLifecycleEventHookExecutionId sets the LifecycleEventHookExecutionId field's value.

func (*PutLifecycleEventHookExecutionStatusInput) SetStatus

func (s *PutLifecycleEventHookExecutionStatusInput) SetStatus(v string) *PutLifecycleEventHookExecutionStatusInput

SetStatus sets the Status field's value.

func (PutLifecycleEventHookExecutionStatusInput) String

func (s PutLifecycleEventHookExecutionStatusInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutLifecycleEventHookExecutionStatusOutput

type PutLifecycleEventHookExecutionStatusOutput struct {

    // The execution ID of the lifecycle event hook. A hook is specified in the
    // hooks section of the deployment's AppSpec file.
    LifecycleEventHookExecutionId *string `locationName:"lifecycleEventHookExecutionId" type:"string"`
    // contains filtered or unexported fields
}

func (PutLifecycleEventHookExecutionStatusOutput) GoString

func (s PutLifecycleEventHookExecutionStatusOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutLifecycleEventHookExecutionStatusOutput) SetLifecycleEventHookExecutionId

func (s *PutLifecycleEventHookExecutionStatusOutput) SetLifecycleEventHookExecutionId(v string) *PutLifecycleEventHookExecutionStatusOutput

SetLifecycleEventHookExecutionId sets the LifecycleEventHookExecutionId field's value.

func (PutLifecycleEventHookExecutionStatusOutput) String

func (s PutLifecycleEventHookExecutionStatusOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RawString

type RawString struct {

    // The YAML-formatted or JSON-formatted revision string. It includes information
    // about which Lambda function to update and optional Lambda functions that
    // validate deployment lifecycle events.
    Content *string `locationName:"content" type:"string"`

    // The SHA256 hash value of the revision content.
    Sha256 *string `locationName:"sha256" type:"string"`
    // contains filtered or unexported fields
}

A revision for an Lambda deployment that is a YAML-formatted or JSON-formatted string. For Lambda deployments, the revision is the same as the AppSpec file.

Deprecated: RawString and String revision type are deprecated, use AppSpecContent type instead.

func (RawString) GoString

func (s RawString) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RawString) SetContent

func (s *RawString) SetContent(v string) *RawString

SetContent sets the Content field's value.

func (*RawString) SetSha256

func (s *RawString) SetSha256(v string) *RawString

SetSha256 sets the Sha256 field's value.

func (RawString) String

func (s RawString) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RegisterApplicationRevisionInput

type RegisterApplicationRevisionInput struct {

    // The name of an CodeDeploy application associated with the user or Amazon
    // Web Services account.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`

    // A comment about the revision.
    Description *string `locationName:"description" type:"string"`

    // Information about the application revision to register, including type and
    // location.
    //
    // Revision is a required field
    Revision *RevisionLocation `locationName:"revision" type:"structure" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a RegisterApplicationRevision operation.

func (RegisterApplicationRevisionInput) GoString

func (s RegisterApplicationRevisionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RegisterApplicationRevisionInput) SetApplicationName

func (s *RegisterApplicationRevisionInput) SetApplicationName(v string) *RegisterApplicationRevisionInput

SetApplicationName sets the ApplicationName field's value.

func (*RegisterApplicationRevisionInput) SetDescription

func (s *RegisterApplicationRevisionInput) SetDescription(v string) *RegisterApplicationRevisionInput

SetDescription sets the Description field's value.

func (*RegisterApplicationRevisionInput) SetRevision

func (s *RegisterApplicationRevisionInput) SetRevision(v *RevisionLocation) *RegisterApplicationRevisionInput

SetRevision sets the Revision field's value.

func (RegisterApplicationRevisionInput) String

func (s RegisterApplicationRevisionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RegisterApplicationRevisionInput) Validate

func (s *RegisterApplicationRevisionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RegisterApplicationRevisionOutput

type RegisterApplicationRevisionOutput struct {
    // contains filtered or unexported fields
}

func (RegisterApplicationRevisionOutput) GoString

func (s RegisterApplicationRevisionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (RegisterApplicationRevisionOutput) String

func (s RegisterApplicationRevisionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RegisterOnPremisesInstanceInput

type RegisterOnPremisesInstanceInput struct {

    // The ARN of the IAM session to associate with the on-premises instance.
    IamSessionArn *string `locationName:"iamSessionArn" type:"string"`

    // The ARN of the user to associate with the on-premises instance.
    IamUserArn *string `locationName:"iamUserArn" type:"string"`

    // The name of the on-premises instance to register.
    //
    // InstanceName is a required field
    InstanceName *string `locationName:"instanceName" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of the register on-premises instance operation.

func (RegisterOnPremisesInstanceInput) GoString

func (s RegisterOnPremisesInstanceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RegisterOnPremisesInstanceInput) SetIamSessionArn

func (s *RegisterOnPremisesInstanceInput) SetIamSessionArn(v string) *RegisterOnPremisesInstanceInput

SetIamSessionArn sets the IamSessionArn field's value.

func (*RegisterOnPremisesInstanceInput) SetIamUserArn

func (s *RegisterOnPremisesInstanceInput) SetIamUserArn(v string) *RegisterOnPremisesInstanceInput

SetIamUserArn sets the IamUserArn field's value.

func (*RegisterOnPremisesInstanceInput) SetInstanceName

func (s *RegisterOnPremisesInstanceInput) SetInstanceName(v string) *RegisterOnPremisesInstanceInput

SetInstanceName sets the InstanceName field's value.

func (RegisterOnPremisesInstanceInput) String

func (s RegisterOnPremisesInstanceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RegisterOnPremisesInstanceInput) Validate

func (s *RegisterOnPremisesInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RegisterOnPremisesInstanceOutput

type RegisterOnPremisesInstanceOutput struct {
    // contains filtered or unexported fields
}

func (RegisterOnPremisesInstanceOutput) GoString

func (s RegisterOnPremisesInstanceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (RegisterOnPremisesInstanceOutput) String

func (s RegisterOnPremisesInstanceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RelatedDeployments

type RelatedDeployments struct {

    // The deployment IDs of 'auto-update outdated instances' deployments triggered
    // by this deployment.
    AutoUpdateOutdatedInstancesDeploymentIds []*string `locationName:"autoUpdateOutdatedInstancesDeploymentIds" type:"list"`

    // The deployment ID of the root deployment that triggered this deployment.
    AutoUpdateOutdatedInstancesRootDeploymentId *string `locationName:"autoUpdateOutdatedInstancesRootDeploymentId" type:"string"`
    // contains filtered or unexported fields
}

Information about deployments related to the specified deployment.

func (RelatedDeployments) GoString

func (s RelatedDeployments) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RelatedDeployments) SetAutoUpdateOutdatedInstancesDeploymentIds

func (s *RelatedDeployments) SetAutoUpdateOutdatedInstancesDeploymentIds(v []*string) *RelatedDeployments

SetAutoUpdateOutdatedInstancesDeploymentIds sets the AutoUpdateOutdatedInstancesDeploymentIds field's value.

func (*RelatedDeployments) SetAutoUpdateOutdatedInstancesRootDeploymentId

func (s *RelatedDeployments) SetAutoUpdateOutdatedInstancesRootDeploymentId(v string) *RelatedDeployments

SetAutoUpdateOutdatedInstancesRootDeploymentId sets the AutoUpdateOutdatedInstancesRootDeploymentId field's value.

func (RelatedDeployments) String

func (s RelatedDeployments) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RemoveTagsFromOnPremisesInstancesInput

type RemoveTagsFromOnPremisesInstancesInput struct {

    // The names of the on-premises instances from which to remove tags.
    //
    // InstanceNames is a required field
    InstanceNames []*string `locationName:"instanceNames" type:"list" required:"true"`

    // The tag key-value pairs to remove from the on-premises instances.
    //
    // Tags is a required field
    Tags []*Tag `locationName:"tags" type:"list" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a RemoveTagsFromOnPremisesInstances operation.

func (RemoveTagsFromOnPremisesInstancesInput) GoString

func (s RemoveTagsFromOnPremisesInstancesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemoveTagsFromOnPremisesInstancesInput) SetInstanceNames

func (s *RemoveTagsFromOnPremisesInstancesInput) SetInstanceNames(v []*string) *RemoveTagsFromOnPremisesInstancesInput

SetInstanceNames sets the InstanceNames field's value.

func (*RemoveTagsFromOnPremisesInstancesInput) SetTags

func (s *RemoveTagsFromOnPremisesInstancesInput) SetTags(v []*Tag) *RemoveTagsFromOnPremisesInstancesInput

SetTags sets the Tags field's value.

func (RemoveTagsFromOnPremisesInstancesInput) String

func (s RemoveTagsFromOnPremisesInstancesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemoveTagsFromOnPremisesInstancesInput) Validate

func (s *RemoveTagsFromOnPremisesInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RemoveTagsFromOnPremisesInstancesOutput

type RemoveTagsFromOnPremisesInstancesOutput struct {
    // contains filtered or unexported fields
}

func (RemoveTagsFromOnPremisesInstancesOutput) GoString

func (s RemoveTagsFromOnPremisesInstancesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (RemoveTagsFromOnPremisesInstancesOutput) String

func (s RemoveTagsFromOnPremisesInstancesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ResourceArnRequiredException

type ResourceArnRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The ARN of a resource is required, but was not found.

func (*ResourceArnRequiredException) Code

func (s *ResourceArnRequiredException) Code() string

Code returns the exception type name.

func (*ResourceArnRequiredException) Error

func (s *ResourceArnRequiredException) Error() string

func (ResourceArnRequiredException) GoString

func (s ResourceArnRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceArnRequiredException) Message

func (s *ResourceArnRequiredException) Message() string

Message returns the exception's message.

func (*ResourceArnRequiredException) OrigErr

func (s *ResourceArnRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ResourceArnRequiredException) RequestID

func (s *ResourceArnRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ResourceArnRequiredException) StatusCode

func (s *ResourceArnRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ResourceArnRequiredException) String

func (s ResourceArnRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ResourceValidationException

type ResourceValidationException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified resource could not be validated.

func (*ResourceValidationException) Code

func (s *ResourceValidationException) Code() string

Code returns the exception type name.

func (*ResourceValidationException) Error

func (s *ResourceValidationException) Error() string

func (ResourceValidationException) GoString

func (s ResourceValidationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceValidationException) Message

func (s *ResourceValidationException) Message() string

Message returns the exception's message.

func (*ResourceValidationException) OrigErr

func (s *ResourceValidationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ResourceValidationException) RequestID

func (s *ResourceValidationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ResourceValidationException) StatusCode

func (s *ResourceValidationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ResourceValidationException) String

func (s ResourceValidationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RevisionDoesNotExistException

type RevisionDoesNotExistException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The named revision does not exist with the user or Amazon Web Services account.

func (*RevisionDoesNotExistException) Code

func (s *RevisionDoesNotExistException) Code() string

Code returns the exception type name.

func (*RevisionDoesNotExistException) Error

func (s *RevisionDoesNotExistException) Error() string

func (RevisionDoesNotExistException) GoString

func (s RevisionDoesNotExistException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RevisionDoesNotExistException) Message

func (s *RevisionDoesNotExistException) Message() string

Message returns the exception's message.

func (*RevisionDoesNotExistException) OrigErr

func (s *RevisionDoesNotExistException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*RevisionDoesNotExistException) RequestID

func (s *RevisionDoesNotExistException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*RevisionDoesNotExistException) StatusCode

func (s *RevisionDoesNotExistException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (RevisionDoesNotExistException) String

func (s RevisionDoesNotExistException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RevisionInfo

type RevisionInfo struct {

    // Information about an application revision, including usage details and associated
    // deployment groups.
    GenericRevisionInfo *GenericRevisionInfo `locationName:"genericRevisionInfo" type:"structure"`

    // Information about the location and type of an application revision.
    RevisionLocation *RevisionLocation `locationName:"revisionLocation" type:"structure"`
    // contains filtered or unexported fields
}

Information about an application revision.

func (RevisionInfo) GoString

func (s RevisionInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RevisionInfo) SetGenericRevisionInfo

func (s *RevisionInfo) SetGenericRevisionInfo(v *GenericRevisionInfo) *RevisionInfo

SetGenericRevisionInfo sets the GenericRevisionInfo field's value.

func (*RevisionInfo) SetRevisionLocation

func (s *RevisionInfo) SetRevisionLocation(v *RevisionLocation) *RevisionInfo

SetRevisionLocation sets the RevisionLocation field's value.

func (RevisionInfo) String

func (s RevisionInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RevisionLocation

type RevisionLocation struct {

    // The content of an AppSpec file for an Lambda or Amazon ECS deployment. The
    // content is formatted as JSON or YAML and stored as a RawString.
    AppSpecContent *AppSpecContent `locationName:"appSpecContent" type:"structure"`

    // Information about the location of application artifacts stored in GitHub.
    GitHubLocation *GitHubLocation `locationName:"gitHubLocation" type:"structure"`

    // The type of application revision:
    //
    //    * S3: An application revision stored in Amazon S3.
    //
    //    * GitHub: An application revision stored in GitHub (EC2/On-premises deployments
    //    only).
    //
    //    * String: A YAML-formatted or JSON-formatted string (Lambda deployments
    //    only).
    //
    //    * AppSpecContent: An AppSpecContent object that contains the contents
    //    of an AppSpec file for an Lambda or Amazon ECS deployment. The content
    //    is formatted as JSON or YAML stored as a RawString.
    RevisionType *string `locationName:"revisionType" type:"string" enum:"RevisionLocationType"`

    // Information about the location of a revision stored in Amazon S3.
    S3Location *S3Location `locationName:"s3Location" type:"structure"`

    // Information about the location of an Lambda deployment revision stored as
    // a RawString.
    String_ *RawString `locationName:"string" deprecated:"true" type:"structure"`
    // contains filtered or unexported fields
}

Information about the location of an application revision.

func (RevisionLocation) GoString

func (s RevisionLocation) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RevisionLocation) SetAppSpecContent

func (s *RevisionLocation) SetAppSpecContent(v *AppSpecContent) *RevisionLocation

SetAppSpecContent sets the AppSpecContent field's value.

func (*RevisionLocation) SetGitHubLocation

func (s *RevisionLocation) SetGitHubLocation(v *GitHubLocation) *RevisionLocation

SetGitHubLocation sets the GitHubLocation field's value.

func (*RevisionLocation) SetRevisionType

func (s *RevisionLocation) SetRevisionType(v string) *RevisionLocation

SetRevisionType sets the RevisionType field's value.

func (*RevisionLocation) SetS3Location

func (s *RevisionLocation) SetS3Location(v *S3Location) *RevisionLocation

SetS3Location sets the S3Location field's value.

func (*RevisionLocation) SetString_

func (s *RevisionLocation) SetString_(v *RawString) *RevisionLocation

SetString_ sets the String_ field's value.

func (RevisionLocation) String

func (s RevisionLocation) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RevisionRequiredException

type RevisionRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The revision ID was not specified.

func (*RevisionRequiredException) Code

func (s *RevisionRequiredException) Code() string

Code returns the exception type name.

func (*RevisionRequiredException) Error

func (s *RevisionRequiredException) Error() string

func (RevisionRequiredException) GoString

func (s RevisionRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RevisionRequiredException) Message

func (s *RevisionRequiredException) Message() string

Message returns the exception's message.

func (*RevisionRequiredException) OrigErr

func (s *RevisionRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*RevisionRequiredException) RequestID

func (s *RevisionRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*RevisionRequiredException) StatusCode

func (s *RevisionRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (RevisionRequiredException) String

func (s RevisionRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RoleRequiredException

type RoleRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The role ID was not specified.

func (*RoleRequiredException) Code

func (s *RoleRequiredException) Code() string

Code returns the exception type name.

func (*RoleRequiredException) Error

func (s *RoleRequiredException) Error() string

func (RoleRequiredException) GoString

func (s RoleRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RoleRequiredException) Message

func (s *RoleRequiredException) Message() string

Message returns the exception's message.

func (*RoleRequiredException) OrigErr

func (s *RoleRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*RoleRequiredException) RequestID

func (s *RoleRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*RoleRequiredException) StatusCode

func (s *RoleRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (RoleRequiredException) String

func (s RoleRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RollbackInfo

type RollbackInfo struct {

    // The ID of the deployment rollback.
    RollbackDeploymentId *string `locationName:"rollbackDeploymentId" type:"string"`

    // Information that describes the status of a deployment rollback (for example,
    // whether the deployment can't be rolled back, is in progress, failed, or succeeded).
    RollbackMessage *string `locationName:"rollbackMessage" type:"string"`

    // The deployment ID of the deployment that was underway and triggered a rollback
    // deployment because it failed or was stopped.
    RollbackTriggeringDeploymentId *string `locationName:"rollbackTriggeringDeploymentId" type:"string"`
    // contains filtered or unexported fields
}

Information about a deployment rollback.

func (RollbackInfo) GoString

func (s RollbackInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RollbackInfo) SetRollbackDeploymentId

func (s *RollbackInfo) SetRollbackDeploymentId(v string) *RollbackInfo

SetRollbackDeploymentId sets the RollbackDeploymentId field's value.

func (*RollbackInfo) SetRollbackMessage

func (s *RollbackInfo) SetRollbackMessage(v string) *RollbackInfo

SetRollbackMessage sets the RollbackMessage field's value.

func (*RollbackInfo) SetRollbackTriggeringDeploymentId

func (s *RollbackInfo) SetRollbackTriggeringDeploymentId(v string) *RollbackInfo

SetRollbackTriggeringDeploymentId sets the RollbackTriggeringDeploymentId field's value.

func (RollbackInfo) String

func (s RollbackInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type S3Location

type S3Location struct {

    // The name of the Amazon S3 bucket where the application revision is stored.
    Bucket *string `locationName:"bucket" type:"string"`

    // The file type of the application revision. Must be one of the following:
    //
    //    * tar: A tar archive file.
    //
    //    * tgz: A compressed tar archive file.
    //
    //    * zip: A zip archive file.
    //
    //    * YAML: A YAML-formatted file.
    //
    //    * JSON: A JSON-formatted file.
    BundleType *string `locationName:"bundleType" type:"string" enum:"BundleType"`

    // The ETag of the Amazon S3 object that represents the bundled artifacts for
    // the application revision.
    //
    // If the ETag is not specified as an input parameter, ETag validation of the
    // object is skipped.
    ETag *string `locationName:"eTag" type:"string"`

    // The name of the Amazon S3 object that represents the bundled artifacts for
    // the application revision.
    Key *string `locationName:"key" type:"string"`

    // A specific version of the Amazon S3 object that represents the bundled artifacts
    // for the application revision.
    //
    // If the version is not specified, the system uses the most recent version
    // by default.
    Version *string `locationName:"version" type:"string"`
    // contains filtered or unexported fields
}

Information about the location of application artifacts stored in Amazon S3.

func (S3Location) GoString

func (s S3Location) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*S3Location) SetBucket

func (s *S3Location) SetBucket(v string) *S3Location

SetBucket sets the Bucket field's value.

func (*S3Location) SetBundleType

func (s *S3Location) SetBundleType(v string) *S3Location

SetBundleType sets the BundleType field's value.

func (*S3Location) SetETag

func (s *S3Location) SetETag(v string) *S3Location

SetETag sets the ETag field's value.

func (*S3Location) SetKey

func (s *S3Location) SetKey(v string) *S3Location

SetKey sets the Key field's value.

func (*S3Location) SetVersion

func (s *S3Location) SetVersion(v string) *S3Location

SetVersion sets the Version field's value.

func (S3Location) String

func (s S3Location) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type SkipWaitTimeForInstanceTerminationInput

type SkipWaitTimeForInstanceTerminationInput struct {

    // The unique ID of a blue/green deployment for which you want to skip the instance
    // termination wait time.
    DeploymentId *string `locationName:"deploymentId" type:"string"`
    // contains filtered or unexported fields
}

func (SkipWaitTimeForInstanceTerminationInput) GoString

func (s SkipWaitTimeForInstanceTerminationInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SkipWaitTimeForInstanceTerminationInput) SetDeploymentId

func (s *SkipWaitTimeForInstanceTerminationInput) SetDeploymentId(v string) *SkipWaitTimeForInstanceTerminationInput

SetDeploymentId sets the DeploymentId field's value.

func (SkipWaitTimeForInstanceTerminationInput) String

func (s SkipWaitTimeForInstanceTerminationInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type SkipWaitTimeForInstanceTerminationOutput

type SkipWaitTimeForInstanceTerminationOutput struct {
    // contains filtered or unexported fields
}

func (SkipWaitTimeForInstanceTerminationOutput) GoString

func (s SkipWaitTimeForInstanceTerminationOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (SkipWaitTimeForInstanceTerminationOutput) String

func (s SkipWaitTimeForInstanceTerminationOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StopDeploymentInput

type StopDeploymentInput struct {

    // Indicates, when a deployment is stopped, whether instances that have been
    // updated should be rolled back to the previous version of the application
    // revision.
    AutoRollbackEnabled *bool `locationName:"autoRollbackEnabled" type:"boolean"`

    // The unique ID of a deployment.
    //
    // DeploymentId is a required field
    DeploymentId *string `locationName:"deploymentId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a StopDeployment operation.

func (StopDeploymentInput) GoString

func (s StopDeploymentInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopDeploymentInput) SetAutoRollbackEnabled

func (s *StopDeploymentInput) SetAutoRollbackEnabled(v bool) *StopDeploymentInput

SetAutoRollbackEnabled sets the AutoRollbackEnabled field's value.

func (*StopDeploymentInput) SetDeploymentId

func (s *StopDeploymentInput) SetDeploymentId(v string) *StopDeploymentInput

SetDeploymentId sets the DeploymentId field's value.

func (StopDeploymentInput) String

func (s StopDeploymentInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopDeploymentInput) Validate

func (s *StopDeploymentInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StopDeploymentOutput

type StopDeploymentOutput struct {

    // The status of the stop deployment operation:
    //
    //    * Pending: The stop operation is pending.
    //
    //    * Succeeded: The stop operation was successful.
    Status *string `locationName:"status" type:"string" enum:"StopStatus"`

    // An accompanying status message.
    StatusMessage *string `locationName:"statusMessage" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a StopDeployment operation.

func (StopDeploymentOutput) GoString

func (s StopDeploymentOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopDeploymentOutput) SetStatus

func (s *StopDeploymentOutput) SetStatus(v string) *StopDeploymentOutput

SetStatus sets the Status field's value.

func (*StopDeploymentOutput) SetStatusMessage

func (s *StopDeploymentOutput) SetStatusMessage(v string) *StopDeploymentOutput

SetStatusMessage sets the StatusMessage field's value.

func (StopDeploymentOutput) String

func (s StopDeploymentOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Tag

type Tag struct {

    // The tag's key.
    Key *string `type:"string"`

    // The tag's value.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

Information about a tag.

func (Tag) GoString

func (s Tag) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Tag) SetKey

func (s *Tag) SetKey(v string) *Tag

SetKey sets the Key field's value.

func (*Tag) SetValue

func (s *Tag) SetValue(v string) *Tag

SetValue sets the Value field's value.

func (Tag) String

func (s Tag) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TagFilter

type TagFilter struct {

    // The on-premises instance tag filter key.
    Key *string `type:"string"`

    // The on-premises instance tag filter type:
    //
    //    * KEY_ONLY: Key only.
    //
    //    * VALUE_ONLY: Value only.
    //
    //    * KEY_AND_VALUE: Key and value.
    Type *string `type:"string" enum:"TagFilterType"`

    // The on-premises instance tag filter value.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

Information about an on-premises instance tag filter.

func (TagFilter) GoString

func (s TagFilter) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TagFilter) SetKey

func (s *TagFilter) SetKey(v string) *TagFilter

SetKey sets the Key field's value.

func (*TagFilter) SetType

func (s *TagFilter) SetType(v string) *TagFilter

SetType sets the Type field's value.

func (*TagFilter) SetValue

func (s *TagFilter) SetValue(v string) *TagFilter

SetValue sets the Value field's value.

func (TagFilter) String

func (s TagFilter) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TagLimitExceededException

type TagLimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The maximum allowed number of tags was exceeded.

func (*TagLimitExceededException) Code

func (s *TagLimitExceededException) Code() string

Code returns the exception type name.

func (*TagLimitExceededException) Error

func (s *TagLimitExceededException) Error() string

func (TagLimitExceededException) GoString

func (s TagLimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TagLimitExceededException) Message

func (s *TagLimitExceededException) Message() string

Message returns the exception's message.

func (*TagLimitExceededException) OrigErr

func (s *TagLimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*TagLimitExceededException) RequestID

func (s *TagLimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*TagLimitExceededException) StatusCode

func (s *TagLimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (TagLimitExceededException) String

func (s TagLimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TagRequiredException

type TagRequiredException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

A tag was not specified.

func (*TagRequiredException) Code

func (s *TagRequiredException) Code() string

Code returns the exception type name.

func (*TagRequiredException) Error

func (s *TagRequiredException) Error() string

func (TagRequiredException) GoString

func (s TagRequiredException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TagRequiredException) Message

func (s *TagRequiredException) Message() string

Message returns the exception's message.

func (*TagRequiredException) OrigErr

func (s *TagRequiredException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*TagRequiredException) RequestID

func (s *TagRequiredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*TagRequiredException) StatusCode

func (s *TagRequiredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (TagRequiredException) String

func (s TagRequiredException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TagResourceInput

type TagResourceInput struct {

    // The ARN of a resource, such as a CodeDeploy application or deployment group.
    //
    // ResourceArn is a required field
    ResourceArn *string `min:"1" type:"string" required:"true"`

    // A list of tags that TagResource associates with a resource. The resource
    // is identified by the ResourceArn input parameter.
    //
    // Tags is a required field
    Tags []*Tag `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (TagResourceInput) GoString

func (s TagResourceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TagResourceInput) SetResourceArn

func (s *TagResourceInput) SetResourceArn(v string) *TagResourceInput

SetResourceArn sets the ResourceArn field's value.

func (*TagResourceInput) SetTags

func (s *TagResourceInput) SetTags(v []*Tag) *TagResourceInput

SetTags sets the Tags field's value.

func (TagResourceInput) String

func (s TagResourceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TagResourceInput) Validate

func (s *TagResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TagResourceOutput

type TagResourceOutput struct {
    // contains filtered or unexported fields
}

func (TagResourceOutput) GoString

func (s TagResourceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (TagResourceOutput) String

func (s TagResourceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TagSetListLimitExceededException

type TagSetListLimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The number of tag groups included in the tag set list exceeded the maximum allowed limit of 3.

func (*TagSetListLimitExceededException) Code

func (s *TagSetListLimitExceededException) Code() string

Code returns the exception type name.

func (*TagSetListLimitExceededException) Error

func (s *TagSetListLimitExceededException) Error() string

func (TagSetListLimitExceededException) GoString

func (s TagSetListLimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TagSetListLimitExceededException) Message

func (s *TagSetListLimitExceededException) Message() string

Message returns the exception's message.

func (*TagSetListLimitExceededException) OrigErr

func (s *TagSetListLimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*TagSetListLimitExceededException) RequestID

func (s *TagSetListLimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*TagSetListLimitExceededException) StatusCode

func (s *TagSetListLimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (TagSetListLimitExceededException) String

func (s TagSetListLimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TargetGroupInfo

type TargetGroupInfo struct {

    // For blue/green deployments, the name of the target group that instances in
    // the original environment are deregistered from, and instances in the replacement
    // environment are registered with. For in-place deployments, the name of the
    // target group that instances are deregistered from, so they are not serving
    // traffic during a deployment, and then re-registered with after the deployment
    // is complete.
    Name *string `locationName:"name" type:"string"`
    // contains filtered or unexported fields
}

Information about a target group in Elastic Load Balancing to use in a deployment. Instances are registered as targets in a target group, and traffic is routed to the target group.

func (TargetGroupInfo) GoString

func (s TargetGroupInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TargetGroupInfo) SetName

func (s *TargetGroupInfo) SetName(v string) *TargetGroupInfo

SetName sets the Name field's value.

func (TargetGroupInfo) String

func (s TargetGroupInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TargetGroupPairInfo

type TargetGroupPairInfo struct {

    // The path used by a load balancer to route production traffic when an Amazon
    // ECS deployment is complete.
    ProdTrafficRoute *TrafficRoute `locationName:"prodTrafficRoute" type:"structure"`

    // One pair of target groups. One is associated with the original task set.
    // The second is associated with the task set that serves traffic after the
    // deployment is complete.
    TargetGroups []*TargetGroupInfo `locationName:"targetGroups" type:"list"`

    // An optional path used by a load balancer to route test traffic after an Amazon
    // ECS deployment. Validation can occur while test traffic is served during
    // a deployment.
    TestTrafficRoute *TrafficRoute `locationName:"testTrafficRoute" type:"structure"`
    // contains filtered or unexported fields
}

Information about two target groups and how traffic is routed during an Amazon ECS deployment. An optional test traffic route can be specified.

func (TargetGroupPairInfo) GoString

func (s TargetGroupPairInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TargetGroupPairInfo) SetProdTrafficRoute

func (s *TargetGroupPairInfo) SetProdTrafficRoute(v *TrafficRoute) *TargetGroupPairInfo

SetProdTrafficRoute sets the ProdTrafficRoute field's value.

func (*TargetGroupPairInfo) SetTargetGroups

func (s *TargetGroupPairInfo) SetTargetGroups(v []*TargetGroupInfo) *TargetGroupPairInfo

SetTargetGroups sets the TargetGroups field's value.

func (*TargetGroupPairInfo) SetTestTrafficRoute

func (s *TargetGroupPairInfo) SetTestTrafficRoute(v *TrafficRoute) *TargetGroupPairInfo

SetTestTrafficRoute sets the TestTrafficRoute field's value.

func (TargetGroupPairInfo) String

func (s TargetGroupPairInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TargetInstances

type TargetInstances struct {

    // The names of one or more Auto Scaling groups to identify a replacement environment
    // for a blue/green deployment.
    AutoScalingGroups []*string `locationName:"autoScalingGroups" type:"list"`

    // Information about the groups of Amazon EC2 instance tags that an instance
    // must be identified by in order for it to be included in the replacement environment
    // for a blue/green deployment. Cannot be used in the same call as tagFilters.
    Ec2TagSet *EC2TagSet `locationName:"ec2TagSet" type:"structure"`

    // The tag filter key, type, and value used to identify Amazon EC2 instances
    // in a replacement environment for a blue/green deployment. Cannot be used
    // in the same call as ec2TagSet.
    TagFilters []*EC2TagFilter `locationName:"tagFilters" type:"list"`
    // contains filtered or unexported fields
}

Information about the instances to be used in the replacement environment in a blue/green deployment.

func (TargetInstances) GoString

func (s TargetInstances) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TargetInstances) SetAutoScalingGroups

func (s *TargetInstances) SetAutoScalingGroups(v []*string) *TargetInstances

SetAutoScalingGroups sets the AutoScalingGroups field's value.

func (*TargetInstances) SetEc2TagSet

func (s *TargetInstances) SetEc2TagSet(v *EC2TagSet) *TargetInstances

SetEc2TagSet sets the Ec2TagSet field's value.

func (*TargetInstances) SetTagFilters

func (s *TargetInstances) SetTagFilters(v []*EC2TagFilter) *TargetInstances

SetTagFilters sets the TagFilters field's value.

func (TargetInstances) String

func (s TargetInstances) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ThrottlingException

type ThrottlingException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

An API function was called too frequently.

func (*ThrottlingException) Code

func (s *ThrottlingException) Code() string

Code returns the exception type name.

func (*ThrottlingException) Error

func (s *ThrottlingException) Error() string

func (ThrottlingException) GoString

func (s ThrottlingException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ThrottlingException) Message

func (s *ThrottlingException) Message() string

Message returns the exception's message.

func (*ThrottlingException) OrigErr

func (s *ThrottlingException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ThrottlingException) RequestID

func (s *ThrottlingException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ThrottlingException) StatusCode

func (s *ThrottlingException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ThrottlingException) String

func (s ThrottlingException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TimeBasedCanary

type TimeBasedCanary struct {

    // The number of minutes between the first and second traffic shifts of a TimeBasedCanary
    // deployment.
    CanaryInterval *int64 `locationName:"canaryInterval" type:"integer"`

    // The percentage of traffic to shift in the first increment of a TimeBasedCanary
    // deployment.
    CanaryPercentage *int64 `locationName:"canaryPercentage" type:"integer"`
    // contains filtered or unexported fields
}

A configuration that shifts traffic from one version of a Lambda function or Amazon ECS task set to another in two increments. The original and target Lambda function versions or ECS task sets are specified in the deployment's AppSpec file.

func (TimeBasedCanary) GoString

func (s TimeBasedCanary) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TimeBasedCanary) SetCanaryInterval

func (s *TimeBasedCanary) SetCanaryInterval(v int64) *TimeBasedCanary

SetCanaryInterval sets the CanaryInterval field's value.

func (*TimeBasedCanary) SetCanaryPercentage

func (s *TimeBasedCanary) SetCanaryPercentage(v int64) *TimeBasedCanary

SetCanaryPercentage sets the CanaryPercentage field's value.

func (TimeBasedCanary) String

func (s TimeBasedCanary) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TimeBasedLinear

type TimeBasedLinear struct {

    // The number of minutes between each incremental traffic shift of a TimeBasedLinear
    // deployment.
    LinearInterval *int64 `locationName:"linearInterval" type:"integer"`

    // The percentage of traffic that is shifted at the start of each increment
    // of a TimeBasedLinear deployment.
    LinearPercentage *int64 `locationName:"linearPercentage" type:"integer"`
    // contains filtered or unexported fields
}

A configuration that shifts traffic from one version of a Lambda function or ECS task set to another in equal increments, with an equal number of minutes between each increment. The original and target Lambda function versions or ECS task sets are specified in the deployment's AppSpec file.

func (TimeBasedLinear) GoString

func (s TimeBasedLinear) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TimeBasedLinear) SetLinearInterval

func (s *TimeBasedLinear) SetLinearInterval(v int64) *TimeBasedLinear

SetLinearInterval sets the LinearInterval field's value.

func (*TimeBasedLinear) SetLinearPercentage

func (s *TimeBasedLinear) SetLinearPercentage(v int64) *TimeBasedLinear

SetLinearPercentage sets the LinearPercentage field's value.

func (TimeBasedLinear) String

func (s TimeBasedLinear) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TimeRange

type TimeRange struct {

    // The end time of the time range.
    //
    // Specify null to leave the end time open-ended.
    End *time.Time `locationName:"end" type:"timestamp"`

    // The start time of the time range.
    //
    // Specify null to leave the start time open-ended.
    Start *time.Time `locationName:"start" type:"timestamp"`
    // contains filtered or unexported fields
}

Information about a time range.

func (TimeRange) GoString

func (s TimeRange) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TimeRange) SetEnd

func (s *TimeRange) SetEnd(v time.Time) *TimeRange

SetEnd sets the End field's value.

func (*TimeRange) SetStart

func (s *TimeRange) SetStart(v time.Time) *TimeRange

SetStart sets the Start field's value.

func (TimeRange) String

func (s TimeRange) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TrafficRoute

type TrafficRoute struct {

    // The Amazon Resource Name (ARN) of one listener. The listener identifies the
    // route between a target group and a load balancer. This is an array of strings
    // with a maximum size of one.
    ListenerArns []*string `locationName:"listenerArns" type:"list"`
    // contains filtered or unexported fields
}

Information about a listener. The listener contains the path used to route traffic that is received from the load balancer to a target group.

func (TrafficRoute) GoString

func (s TrafficRoute) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TrafficRoute) SetListenerArns

func (s *TrafficRoute) SetListenerArns(v []*string) *TrafficRoute

SetListenerArns sets the ListenerArns field's value.

func (TrafficRoute) String

func (s TrafficRoute) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TrafficRoutingConfig

type TrafficRoutingConfig struct {

    // A configuration that shifts traffic from one version of a Lambda function
    // or ECS task set to another in two increments. The original and target Lambda
    // function versions or ECS task sets are specified in the deployment's AppSpec
    // file.
    TimeBasedCanary *TimeBasedCanary `locationName:"timeBasedCanary" type:"structure"`

    // A configuration that shifts traffic from one version of a Lambda function
    // or Amazon ECS task set to another in equal increments, with an equal number
    // of minutes between each increment. The original and target Lambda function
    // versions or Amazon ECS task sets are specified in the deployment's AppSpec
    // file.
    TimeBasedLinear *TimeBasedLinear `locationName:"timeBasedLinear" type:"structure"`

    // The type of traffic shifting (TimeBasedCanary or TimeBasedLinear) used by
    // a deployment configuration.
    Type *string `locationName:"type" type:"string" enum:"TrafficRoutingType"`
    // contains filtered or unexported fields
}

The configuration that specifies how traffic is shifted from one version of a Lambda function to another version during an Lambda deployment, or from one Amazon ECS task set to another during an Amazon ECS deployment.

func (TrafficRoutingConfig) GoString

func (s TrafficRoutingConfig) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TrafficRoutingConfig) SetTimeBasedCanary

func (s *TrafficRoutingConfig) SetTimeBasedCanary(v *TimeBasedCanary) *TrafficRoutingConfig

SetTimeBasedCanary sets the TimeBasedCanary field's value.

func (*TrafficRoutingConfig) SetTimeBasedLinear

func (s *TrafficRoutingConfig) SetTimeBasedLinear(v *TimeBasedLinear) *TrafficRoutingConfig

SetTimeBasedLinear sets the TimeBasedLinear field's value.

func (*TrafficRoutingConfig) SetType

func (s *TrafficRoutingConfig) SetType(v string) *TrafficRoutingConfig

SetType sets the Type field's value.

func (TrafficRoutingConfig) String

func (s TrafficRoutingConfig) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TriggerConfig

type TriggerConfig struct {

    // The event type or types for which notifications are triggered.
    TriggerEvents []*string `locationName:"triggerEvents" type:"list" enum:"TriggerEventType"`

    // The name of the notification trigger.
    TriggerName *string `locationName:"triggerName" type:"string"`

    // The Amazon Resource Name (ARN) of the Amazon Simple Notification Service
    // topic through which notifications about deployment or instance events are
    // sent.
    TriggerTargetArn *string `locationName:"triggerTargetArn" type:"string"`
    // contains filtered or unexported fields
}

Information about notification triggers for the deployment group.

func (TriggerConfig) GoString

func (s TriggerConfig) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TriggerConfig) SetTriggerEvents

func (s *TriggerConfig) SetTriggerEvents(v []*string) *TriggerConfig

SetTriggerEvents sets the TriggerEvents field's value.

func (*TriggerConfig) SetTriggerName

func (s *TriggerConfig) SetTriggerName(v string) *TriggerConfig

SetTriggerName sets the TriggerName field's value.

func (*TriggerConfig) SetTriggerTargetArn

func (s *TriggerConfig) SetTriggerTargetArn(v string) *TriggerConfig

SetTriggerTargetArn sets the TriggerTargetArn field's value.

func (TriggerConfig) String

func (s TriggerConfig) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TriggerTargetsLimitExceededException

type TriggerTargetsLimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The maximum allowed number of triggers was exceeded.

func (*TriggerTargetsLimitExceededException) Code

func (s *TriggerTargetsLimitExceededException) Code() string

Code returns the exception type name.

func (*TriggerTargetsLimitExceededException) Error

func (s *TriggerTargetsLimitExceededException) Error() string

func (TriggerTargetsLimitExceededException) GoString

func (s TriggerTargetsLimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TriggerTargetsLimitExceededException) Message

func (s *TriggerTargetsLimitExceededException) Message() string

Message returns the exception's message.

func (*TriggerTargetsLimitExceededException) OrigErr

func (s *TriggerTargetsLimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*TriggerTargetsLimitExceededException) RequestID

func (s *TriggerTargetsLimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*TriggerTargetsLimitExceededException) StatusCode

func (s *TriggerTargetsLimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (TriggerTargetsLimitExceededException) String

func (s TriggerTargetsLimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type UnsupportedActionForDeploymentTypeException

type UnsupportedActionForDeploymentTypeException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

A call was submitted that is not supported for the specified deployment type.

func (*UnsupportedActionForDeploymentTypeException) Code

func (s *UnsupportedActionForDeploymentTypeException) Code() string

Code returns the exception type name.

func (*UnsupportedActionForDeploymentTypeException) Error

func (s *UnsupportedActionForDeploymentTypeException) Error() string

func (UnsupportedActionForDeploymentTypeException) GoString

func (s UnsupportedActionForDeploymentTypeException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UnsupportedActionForDeploymentTypeException) Message

func (s *UnsupportedActionForDeploymentTypeException) Message() string

Message returns the exception's message.

func (*UnsupportedActionForDeploymentTypeException) OrigErr

func (s *UnsupportedActionForDeploymentTypeException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*UnsupportedActionForDeploymentTypeException) RequestID

func (s *UnsupportedActionForDeploymentTypeException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*UnsupportedActionForDeploymentTypeException) StatusCode

func (s *UnsupportedActionForDeploymentTypeException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (UnsupportedActionForDeploymentTypeException) String

func (s UnsupportedActionForDeploymentTypeException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type UntagResourceInput

type UntagResourceInput struct {

    // The Amazon Resource Name (ARN) that specifies from which resource to disassociate
    // the tags with the keys in the TagKeys input parameter.
    //
    // ResourceArn is a required field
    ResourceArn *string `min:"1" type:"string" required:"true"`

    // A list of keys of Tag objects. The Tag objects identified by the keys are
    // disassociated from the resource specified by the ResourceArn input parameter.
    //
    // TagKeys is a required field
    TagKeys []*string `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (UntagResourceInput) GoString

func (s UntagResourceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UntagResourceInput) SetResourceArn

func (s *UntagResourceInput) SetResourceArn(v string) *UntagResourceInput

SetResourceArn sets the ResourceArn field's value.

func (*UntagResourceInput) SetTagKeys

func (s *UntagResourceInput) SetTagKeys(v []*string) *UntagResourceInput

SetTagKeys sets the TagKeys field's value.

func (UntagResourceInput) String

func (s UntagResourceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UntagResourceInput) Validate

func (s *UntagResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UntagResourceOutput

type UntagResourceOutput struct {
    // contains filtered or unexported fields
}

func (UntagResourceOutput) GoString

func (s UntagResourceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (UntagResourceOutput) String

func (s UntagResourceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type UpdateApplicationInput

type UpdateApplicationInput struct {

    // The current name of the application you want to change.
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string"`

    // The new name to give the application.
    NewApplicationName *string `locationName:"newApplicationName" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Represents the input of an UpdateApplication operation.

func (UpdateApplicationInput) GoString

func (s UpdateApplicationInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UpdateApplicationInput) SetApplicationName

func (s *UpdateApplicationInput) SetApplicationName(v string) *UpdateApplicationInput

SetApplicationName sets the ApplicationName field's value.

func (*UpdateApplicationInput) SetNewApplicationName

func (s *UpdateApplicationInput) SetNewApplicationName(v string) *UpdateApplicationInput

SetNewApplicationName sets the NewApplicationName field's value.

func (UpdateApplicationInput) String

func (s UpdateApplicationInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UpdateApplicationInput) Validate

func (s *UpdateApplicationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateApplicationOutput

type UpdateApplicationOutput struct {
    // contains filtered or unexported fields
}

func (UpdateApplicationOutput) GoString

func (s UpdateApplicationOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (UpdateApplicationOutput) String

func (s UpdateApplicationOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type UpdateDeploymentGroupInput

type UpdateDeploymentGroupInput struct {

    // Information to add or change about Amazon CloudWatch alarms when the deployment
    // group is updated.
    AlarmConfiguration *AlarmConfiguration `locationName:"alarmConfiguration" type:"structure"`

    // The application name that corresponds to the deployment group to update.
    //
    // ApplicationName is a required field
    ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"`

    // Information for an automatic rollback configuration that is added or changed
    // when a deployment group is updated.
    AutoRollbackConfiguration *AutoRollbackConfiguration `locationName:"autoRollbackConfiguration" type:"structure"`

    // The replacement list of Auto Scaling groups to be included in the deployment
    // group, if you want to change them.
    //
    //    * To keep the Auto Scaling groups, enter their names or do not specify
    //    this parameter.
    //
    //    * To remove Auto Scaling groups, specify a non-null empty list of Auto
    //    Scaling group names to detach all CodeDeploy-managed Auto Scaling lifecycle
    //    hooks. For examples, see Amazon EC2 instances in an Amazon EC2 Auto Scaling
    //    group fail to launch and receive the error "Heartbeat Timeout" (https://docs.aws.amazon.com/codedeploy/latest/userguide/troubleshooting-auto-scaling.html#troubleshooting-auto-scaling-heartbeat)
    //    in the CodeDeploy User Guide.
    AutoScalingGroups []*string `locationName:"autoScalingGroups" type:"list"`

    // Information about blue/green deployment options for a deployment group.
    BlueGreenDeploymentConfiguration *BlueGreenDeploymentConfiguration `locationName:"blueGreenDeploymentConfiguration" type:"structure"`

    // The current name of the deployment group.
    //
    // CurrentDeploymentGroupName is a required field
    CurrentDeploymentGroupName *string `locationName:"currentDeploymentGroupName" min:"1" type:"string" required:"true"`

    // The replacement deployment configuration name to use, if you want to change
    // it.
    DeploymentConfigName *string `locationName:"deploymentConfigName" min:"1" type:"string"`

    // Information about the type of deployment, either in-place or blue/green,
    // you want to run and whether to route deployment traffic behind a load balancer.
    DeploymentStyle *DeploymentStyle `locationName:"deploymentStyle" type:"structure"`

    // The replacement set of Amazon EC2 tags on which to filter, if you want to
    // change them. To keep the existing tags, enter their names. To remove tags,
    // do not enter any tag names.
    Ec2TagFilters []*EC2TagFilter `locationName:"ec2TagFilters" type:"list"`

    // Information about groups of tags applied to on-premises instances. The deployment
    // group includes only Amazon EC2 instances identified by all the tag groups.
    Ec2TagSet *EC2TagSet `locationName:"ec2TagSet" type:"structure"`

    // The target Amazon ECS services in the deployment group. This applies only
    // to deployment groups that use the Amazon ECS compute platform. A target Amazon
    // ECS service is specified as an Amazon ECS cluster and service name pair using
    // the format <clustername>:<servicename>.
    EcsServices []*ECSService `locationName:"ecsServices" type:"list"`

    // Information about the load balancer used in a deployment.
    LoadBalancerInfo *LoadBalancerInfo `locationName:"loadBalancerInfo" type:"structure"`

    // The new name of the deployment group, if you want to change it.
    NewDeploymentGroupName *string `locationName:"newDeploymentGroupName" min:"1" type:"string"`

    // The replacement set of on-premises instance tags on which to filter, if you
    // want to change them. To keep the existing tags, enter their names. To remove
    // tags, do not enter any tag names.
    OnPremisesInstanceTagFilters []*TagFilter `locationName:"onPremisesInstanceTagFilters" type:"list"`

    // Information about an on-premises instance tag set. The deployment group includes
    // only on-premises instances identified by all the tag groups.
    OnPremisesTagSet *OnPremisesTagSet `locationName:"onPremisesTagSet" type:"structure"`

    // Indicates what happens when new Amazon EC2 instances are launched mid-deployment
    // and do not receive the deployed application revision.
    //
    // If this option is set to UPDATE or is unspecified, CodeDeploy initiates one
    // or more 'auto-update outdated instances' deployments to apply the deployed
    // application revision to the new Amazon EC2 instances.
    //
    // If this option is set to IGNORE, CodeDeploy does not initiate a deployment
    // to update the new Amazon EC2 instances. This may result in instances having
    // different revisions.
    OutdatedInstancesStrategy *string `locationName:"outdatedInstancesStrategy" type:"string" enum:"OutdatedInstancesStrategy"`

    // A replacement ARN for the service role, if you want to change it.
    ServiceRoleArn *string `locationName:"serviceRoleArn" type:"string"`

    // This parameter only applies if you are using CodeDeploy with Amazon EC2 Auto
    // Scaling. For more information, see Integrating CodeDeploy with Amazon EC2
    // Auto Scaling (https://docs.aws.amazon.com/codedeploy/latest/userguide/integrations-aws-auto-scaling.html)
    // in the CodeDeploy User Guide.
    //
    // Set terminationHookEnabled to true to have CodeDeploy install a termination
    // hook into your Auto Scaling group when you update a deployment group. When
    // this hook is installed, CodeDeploy will perform termination deployments.
    //
    // For information about termination deployments, see Enabling termination deployments
    // during Auto Scaling scale-in events (https://docs.aws.amazon.com/codedeploy/latest/userguide/integrations-aws-auto-scaling.html#integrations-aws-auto-scaling-behaviors-hook-enable)
    // in the CodeDeploy User Guide.
    //
    // For more information about Auto Scaling scale-in events, see the Scale in
    // (https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-lifecycle.html#as-lifecycle-scale-in)
    // topic in the Amazon EC2 Auto Scaling User Guide.
    TerminationHookEnabled *bool `locationName:"terminationHookEnabled" type:"boolean"`

    // Information about triggers to change when the deployment group is updated.
    // For examples, see Edit a Trigger in a CodeDeploy Deployment Group (https://docs.aws.amazon.com/codedeploy/latest/userguide/how-to-notify-edit.html)
    // in the CodeDeploy User Guide.
    TriggerConfigurations []*TriggerConfig `locationName:"triggerConfigurations" type:"list"`
    // contains filtered or unexported fields
}

Represents the input of an UpdateDeploymentGroup operation.

func (UpdateDeploymentGroupInput) GoString

func (s UpdateDeploymentGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UpdateDeploymentGroupInput) SetAlarmConfiguration

func (s *UpdateDeploymentGroupInput) SetAlarmConfiguration(v *AlarmConfiguration) *UpdateDeploymentGroupInput

SetAlarmConfiguration sets the AlarmConfiguration field's value.

func (*UpdateDeploymentGroupInput) SetApplicationName

func (s *UpdateDeploymentGroupInput) SetApplicationName(v string) *UpdateDeploymentGroupInput

SetApplicationName sets the ApplicationName field's value.

func (*UpdateDeploymentGroupInput) SetAutoRollbackConfiguration

func (s *UpdateDeploymentGroupInput) SetAutoRollbackConfiguration(v *AutoRollbackConfiguration) *UpdateDeploymentGroupInput

SetAutoRollbackConfiguration sets the AutoRollbackConfiguration field's value.

func (*UpdateDeploymentGroupInput) SetAutoScalingGroups

func (s *UpdateDeploymentGroupInput) SetAutoScalingGroups(v []*string) *UpdateDeploymentGroupInput

SetAutoScalingGroups sets the AutoScalingGroups field's value.

func (*UpdateDeploymentGroupInput) SetBlueGreenDeploymentConfiguration

func (s *UpdateDeploymentGroupInput) SetBlueGreenDeploymentConfiguration(v *BlueGreenDeploymentConfiguration) *UpdateDeploymentGroupInput

SetBlueGreenDeploymentConfiguration sets the BlueGreenDeploymentConfiguration field's value.

func (*UpdateDeploymentGroupInput) SetCurrentDeploymentGroupName

func (s *UpdateDeploymentGroupInput) SetCurrentDeploymentGroupName(v string) *UpdateDeploymentGroupInput

SetCurrentDeploymentGroupName sets the CurrentDeploymentGroupName field's value.

func (*UpdateDeploymentGroupInput) SetDeploymentConfigName

func (s *UpdateDeploymentGroupInput) SetDeploymentConfigName(v string) *UpdateDeploymentGroupInput

SetDeploymentConfigName sets the DeploymentConfigName field's value.

func (*UpdateDeploymentGroupInput) SetDeploymentStyle

func (s *UpdateDeploymentGroupInput) SetDeploymentStyle(v *DeploymentStyle) *UpdateDeploymentGroupInput

SetDeploymentStyle sets the DeploymentStyle field's value.

func (*UpdateDeploymentGroupInput) SetEc2TagFilters

func (s *UpdateDeploymentGroupInput) SetEc2TagFilters(v []*EC2TagFilter) *UpdateDeploymentGroupInput

SetEc2TagFilters sets the Ec2TagFilters field's value.

func (*UpdateDeploymentGroupInput) SetEc2TagSet

func (s *UpdateDeploymentGroupInput) SetEc2TagSet(v *EC2TagSet) *UpdateDeploymentGroupInput

SetEc2TagSet sets the Ec2TagSet field's value.

func (*UpdateDeploymentGroupInput) SetEcsServices

func (s *UpdateDeploymentGroupInput) SetEcsServices(v []*ECSService) *UpdateDeploymentGroupInput

SetEcsServices sets the EcsServices field's value.

func (*UpdateDeploymentGroupInput) SetLoadBalancerInfo

func (s *UpdateDeploymentGroupInput) SetLoadBalancerInfo(v *LoadBalancerInfo) *UpdateDeploymentGroupInput

SetLoadBalancerInfo sets the LoadBalancerInfo field's value.

func (*UpdateDeploymentGroupInput) SetNewDeploymentGroupName

func (s *UpdateDeploymentGroupInput) SetNewDeploymentGroupName(v string) *UpdateDeploymentGroupInput

SetNewDeploymentGroupName sets the NewDeploymentGroupName field's value.

func (*UpdateDeploymentGroupInput) SetOnPremisesInstanceTagFilters

func (s *UpdateDeploymentGroupInput) SetOnPremisesInstanceTagFilters(v []*TagFilter) *UpdateDeploymentGroupInput

SetOnPremisesInstanceTagFilters sets the OnPremisesInstanceTagFilters field's value.

func (*UpdateDeploymentGroupInput) SetOnPremisesTagSet

func (s *UpdateDeploymentGroupInput) SetOnPremisesTagSet(v *OnPremisesTagSet) *UpdateDeploymentGroupInput

SetOnPremisesTagSet sets the OnPremisesTagSet field's value.

func (*UpdateDeploymentGroupInput) SetOutdatedInstancesStrategy

func (s *UpdateDeploymentGroupInput) SetOutdatedInstancesStrategy(v string) *UpdateDeploymentGroupInput

SetOutdatedInstancesStrategy sets the OutdatedInstancesStrategy field's value.

func (*UpdateDeploymentGroupInput) SetServiceRoleArn

func (s *UpdateDeploymentGroupInput) SetServiceRoleArn(v string) *UpdateDeploymentGroupInput

SetServiceRoleArn sets the ServiceRoleArn field's value.

func (*UpdateDeploymentGroupInput) SetTerminationHookEnabled

func (s *UpdateDeploymentGroupInput) SetTerminationHookEnabled(v bool) *UpdateDeploymentGroupInput

SetTerminationHookEnabled sets the TerminationHookEnabled field's value.

func (*UpdateDeploymentGroupInput) SetTriggerConfigurations

func (s *UpdateDeploymentGroupInput) SetTriggerConfigurations(v []*TriggerConfig) *UpdateDeploymentGroupInput

SetTriggerConfigurations sets the TriggerConfigurations field's value.

func (UpdateDeploymentGroupInput) String

func (s UpdateDeploymentGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UpdateDeploymentGroupInput) Validate

func (s *UpdateDeploymentGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateDeploymentGroupOutput

type UpdateDeploymentGroupOutput struct {

    // If the output contains no data, and the corresponding deployment group contained
    // at least one Auto Scaling group, CodeDeploy successfully removed all corresponding
    // Auto Scaling lifecycle event hooks from the Amazon Web Services account.
    // If the output contains data, CodeDeploy could not remove some Auto Scaling
    // lifecycle event hooks from the Amazon Web Services account.
    HooksNotCleanedUp []*AutoScalingGroup `locationName:"hooksNotCleanedUp" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of an UpdateDeploymentGroup operation.

func (UpdateDeploymentGroupOutput) GoString

func (s UpdateDeploymentGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UpdateDeploymentGroupOutput) SetHooksNotCleanedUp

func (s *UpdateDeploymentGroupOutput) SetHooksNotCleanedUp(v []*AutoScalingGroup) *UpdateDeploymentGroupOutput

SetHooksNotCleanedUp sets the HooksNotCleanedUp field's value.

func (UpdateDeploymentGroupOutput) String

func (s UpdateDeploymentGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ZonalConfig

type ZonalConfig struct {

    // The period of time, in seconds, that CodeDeploy must wait after completing
    // a deployment to the first Availability Zone. CodeDeploy will wait this amount
    // of time before starting a deployment to the second Availability Zone. You
    // might set this option if you want to allow extra bake time for the first
    // Availability Zone. If you don't specify a value for firstZoneMonitorDurationInSeconds,
    // then CodeDeploy uses the monitorDurationInSeconds value for the first Availability
    // Zone.
    //
    // For more information about the zonal configuration feature, see zonal configuration
    // (https://docs.aws.amazon.com/codedeploy/latest/userguide/deployment-configurations-create.html#zonal-config)
    // in the CodeDeploy User Guide.
    FirstZoneMonitorDurationInSeconds *int64 `locationName:"firstZoneMonitorDurationInSeconds" type:"long"`

    // The number or percentage of instances that must remain available per Availability
    // Zone during a deployment. This option works in conjunction with the MinimumHealthyHosts
    // option. For more information, see About the minimum number of healthy hosts
    // per Availability Zone (https://docs.aws.amazon.com/codedeploy/latest/userguide/instances-health.html#minimum-healthy-hosts-az)
    // in the CodeDeploy User Guide.
    //
    // If you don't specify the minimumHealthyHostsPerZone option, then CodeDeploy
    // uses a default value of 0 percent.
    //
    // For more information about the zonal configuration feature, see zonal configuration
    // (https://docs.aws.amazon.com/codedeploy/latest/userguide/deployment-configurations-create.html#zonal-config)
    // in the CodeDeploy User Guide.
    MinimumHealthyHostsPerZone *MinimumHealthyHostsPerZone `locationName:"minimumHealthyHostsPerZone" type:"structure"`

    // The period of time, in seconds, that CodeDeploy must wait after completing
    // a deployment to an Availability Zone. CodeDeploy will wait this amount of
    // time before starting a deployment to the next Availability Zone. Consider
    // adding a monitor duration to give the deployment some time to prove itself
    // (or 'bake') in one Availability Zone before it is released in the next zone.
    // If you don't specify a monitorDurationInSeconds, CodeDeploy starts deploying
    // to the next Availability Zone immediately.
    //
    // For more information about the zonal configuration feature, see zonal configuration
    // (https://docs.aws.amazon.com/codedeploy/latest/userguide/deployment-configurations-create.html#zonal-config)
    // in the CodeDeploy User Guide.
    MonitorDurationInSeconds *int64 `locationName:"monitorDurationInSeconds" type:"long"`
    // contains filtered or unexported fields
}

Configure the ZonalConfig object if you want CodeDeploy to deploy your application to one Availability Zone (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-availability-zones) at a time, within an Amazon Web Services Region. By deploying to one Availability Zone at a time, you can expose your deployment to a progressively larger audience as confidence in the deployment's performance and viability grows. If you don't configure the ZonalConfig object, CodeDeploy deploys your application to a random selection of hosts across a Region.

For more information about the zonal configuration feature, see zonal configuration (https://docs.aws.amazon.com/codedeploy/latest/userguide/deployment-configurations-create.html#zonal-config) in the CodeDeploy User Guide.

func (ZonalConfig) GoString

func (s ZonalConfig) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ZonalConfig) SetFirstZoneMonitorDurationInSeconds

func (s *ZonalConfig) SetFirstZoneMonitorDurationInSeconds(v int64) *ZonalConfig

SetFirstZoneMonitorDurationInSeconds sets the FirstZoneMonitorDurationInSeconds field's value.

func (*ZonalConfig) SetMinimumHealthyHostsPerZone

func (s *ZonalConfig) SetMinimumHealthyHostsPerZone(v *MinimumHealthyHostsPerZone) *ZonalConfig

SetMinimumHealthyHostsPerZone sets the MinimumHealthyHostsPerZone field's value.

func (*ZonalConfig) SetMonitorDurationInSeconds

func (s *ZonalConfig) SetMonitorDurationInSeconds(v int64) *ZonalConfig

SetMonitorDurationInSeconds sets the MonitorDurationInSeconds field's value.

func (ZonalConfig) String

func (s ZonalConfig) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".