1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package elasticbeanstalk
import (
"context"
"fmt"
awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
"github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk/types"
"github.com/aws/smithy-go/middleware"
smithyhttp "github.com/aws/smithy-go/transport/http"
"time"
)
// Terminates the specified environment.
func (c *Client) TerminateEnvironment(ctx context.Context, params *TerminateEnvironmentInput, optFns ...func(*Options)) (*TerminateEnvironmentOutput, error) {
if params == nil {
params = &TerminateEnvironmentInput{}
}
result, metadata, err := c.invokeOperation(ctx, "TerminateEnvironment", params, optFns, c.addOperationTerminateEnvironmentMiddlewares)
if err != nil {
return nil, err
}
out := result.(*TerminateEnvironmentOutput)
out.ResultMetadata = metadata
return out, nil
}
// Request to terminate an environment.
type TerminateEnvironmentInput struct {
// The ID of the environment to terminate. Condition: You must specify either this
// or an EnvironmentName, or both. If you do not specify either, AWS Elastic
// Beanstalk returns MissingRequiredParameter error.
EnvironmentId *string
// The name of the environment to terminate. Condition: You must specify either
// this or an EnvironmentId, or both. If you do not specify either, AWS Elastic
// Beanstalk returns MissingRequiredParameter error.
EnvironmentName *string
// Terminates the target environment even if another environment in the same group
// is dependent on it.
ForceTerminate *bool
// Indicates whether the associated AWS resources should shut down when the
// environment is terminated:
// - true : The specified environment as well as the associated AWS resources,
// such as Auto Scaling group and LoadBalancer, are terminated.
// - false : AWS Elastic Beanstalk resource management is removed from the
// environment, but the AWS resources continue to operate.
// For more information, see the AWS Elastic Beanstalk User Guide. (https://docs.aws.amazon.com/elasticbeanstalk/latest/ug/)
// Default: true Valid Values: true | false
TerminateResources *bool
noSmithyDocumentSerde
}
// Describes the properties of an environment.
type TerminateEnvironmentOutput struct {
// Indicates if there is an in-progress environment configuration update or
// application version deployment that you can cancel. true: There is an update in
// progress. false: There are no updates currently in progress.
AbortableOperationInProgress *bool
// The name of the application associated with this environment.
ApplicationName *string
// The URL to the CNAME for this environment.
CNAME *string
// The creation date for this environment.
DateCreated *time.Time
// The last modified date for this environment.
DateUpdated *time.Time
// Describes this environment.
Description *string
// For load-balanced, autoscaling environments, the URL to the LoadBalancer. For
// single-instance environments, the IP address of the instance.
EndpointURL *string
// The environment's Amazon Resource Name (ARN), which can be used in other API
// requests that require an ARN.
EnvironmentArn *string
// The ID of this environment.
EnvironmentId *string
// A list of links to other environments in the same group.
EnvironmentLinks []types.EnvironmentLink
// The name of this environment.
EnvironmentName *string
// Describes the health status of the environment. AWS Elastic Beanstalk indicates
// the failure levels for a running environment:
// - Red : Indicates the environment is not responsive. Occurs when three or more
// consecutive failures occur for an environment.
// - Yellow : Indicates that something is wrong. Occurs when two consecutive
// failures occur for an environment.
// - Green : Indicates the environment is healthy and fully functional.
// - Grey : Default health for a new environment. The environment is not fully
// launched and health checks have not started or health checks are suspended
// during an UpdateEnvironment or RestartEnvironment request.
// Default: Grey
Health types.EnvironmentHealth
// Returns the health status of the application running in your environment. For
// more information, see Health Colors and Statuses (https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html)
// .
HealthStatus types.EnvironmentHealthStatus
// The Amazon Resource Name (ARN) of the environment's operations role. For more
// information, see Operations roles (https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/iam-operationsrole.html)
// in the AWS Elastic Beanstalk Developer Guide.
OperationsRole *string
// The ARN of the platform version.
PlatformArn *string
// The description of the AWS resources used by this environment.
Resources *types.EnvironmentResourcesDescription
// The name of the SolutionStack deployed with this environment.
SolutionStackName *string
// The current operational status of the environment:
// - Launching : Environment is in the process of initial deployment.
// - Updating : Environment is in the process of updating its configuration
// settings or application version.
// - Ready : Environment is available to have an action performed on it, such as
// update or terminate.
// - Terminating : Environment is in the shut-down process.
// - Terminated : Environment is not running.
Status types.EnvironmentStatus
// The name of the configuration template used to originally launch this
// environment.
TemplateName *string
// Describes the current tier of this environment.
Tier *types.EnvironmentTier
// The application version deployed in this environment.
VersionLabel *string
// Metadata pertaining to the operation's result.
ResultMetadata middleware.Metadata
noSmithyDocumentSerde
}
func (c *Client) addOperationTerminateEnvironmentMiddlewares(stack *middleware.Stack, options Options) (err error) {
if err := stack.Serialize.Add(&setOperationInputMiddleware{}, middleware.After); err != nil {
return err
}
err = stack.Serialize.Add(&awsAwsquery_serializeOpTerminateEnvironment{}, middleware.After)
if err != nil {
return err
}
err = stack.Deserialize.Add(&awsAwsquery_deserializeOpTerminateEnvironment{}, middleware.After)
if err != nil {
return err
}
if err := addProtocolFinalizerMiddlewares(stack, options, "TerminateEnvironment"); err != nil {
return fmt.Errorf("add protocol finalizers: %v", err)
}
if err = addlegacyEndpointContextSetter(stack, options); err != nil {
return err
}
if err = addSetLoggerMiddleware(stack, options); err != nil {
return err
}
if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
return err
}
if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
return err
}
if err = addResolveEndpointMiddleware(stack, options); err != nil {
return err
}
if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
return err
}
if err = addRetryMiddlewares(stack, options); err != nil {
return err
}
if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
return err
}
if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
return err
}
if err = addClientUserAgent(stack, options); err != nil {
return err
}
if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = addSetLegacyContextSigningOptionsMiddleware(stack); err != nil {
return err
}
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opTerminateEnvironment(options.Region), middleware.Before); err != nil {
return err
}
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err
}
if err = addResponseErrorMiddleware(stack); err != nil {
return err
}
if err = addRequestResponseLogging(stack, options); err != nil {
return err
}
if err = addDisableHTTPSMiddleware(stack, options); err != nil {
return err
}
return nil
}
func newServiceMetadataMiddleware_opTerminateEnvironment(region string) *awsmiddleware.RegisterServiceMetadata {
return &awsmiddleware.RegisterServiceMetadata{
Region: region,
ServiceID: ServiceID,
OperationName: "TerminateEnvironment",
}
}
|