1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package codedeploy
4
5import (
6	"context"
7	awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
8	"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
9	"github.com/aws/aws-sdk-go-v2/service/codedeploy/types"
10	"github.com/aws/smithy-go/middleware"
11	smithyhttp "github.com/aws/smithy-go/transport/http"
12)
13
14// Creates a deployment configuration.
15func (c *Client) CreateDeploymentConfig(ctx context.Context, params *CreateDeploymentConfigInput, optFns ...func(*Options)) (*CreateDeploymentConfigOutput, error) {
16	if params == nil {
17		params = &CreateDeploymentConfigInput{}
18	}
19
20	result, metadata, err := c.invokeOperation(ctx, "CreateDeploymentConfig", params, optFns, addOperationCreateDeploymentConfigMiddlewares)
21	if err != nil {
22		return nil, err
23	}
24
25	out := result.(*CreateDeploymentConfigOutput)
26	out.ResultMetadata = metadata
27	return out, nil
28}
29
30// Represents the input of a CreateDeploymentConfig operation.
31type CreateDeploymentConfigInput struct {
32
33	// The name of the deployment configuration to create.
34	//
35	// This member is required.
36	DeploymentConfigName *string
37
38	// The destination platform type for the deployment (Lambda, Server, or ECS).
39	ComputePlatform types.ComputePlatform
40
41	// The minimum number of healthy instances that should be available at any time
42	// during the deployment. There are two parameters expected in the input: type and
43	// value. The type parameter takes either of the following values:
44	//
45	// * HOST_COUNT:
46	// The value parameter represents the minimum number of healthy instances as an
47	// absolute value.
48	//
49	// * FLEET_PERCENT: The value parameter represents the minimum
50	// number of healthy instances as a percentage of the total number of instances in
51	// the deployment. If you specify FLEET_PERCENT, at the start of the deployment,
52	// AWS CodeDeploy converts the percentage to the equivalent number of instances and
53	// rounds up fractional instances.
54	//
55	// The value parameter takes an integer. For
56	// example, to set a minimum of 95% healthy instance, specify a type of
57	// FLEET_PERCENT and a value of 95.
58	MinimumHealthyHosts *types.MinimumHealthyHosts
59
60	// The configuration that specifies how the deployment traffic is routed.
61	TrafficRoutingConfig *types.TrafficRoutingConfig
62}
63
64// Represents the output of a CreateDeploymentConfig operation.
65type CreateDeploymentConfigOutput struct {
66
67	// A unique deployment configuration ID.
68	DeploymentConfigId *string
69
70	// Metadata pertaining to the operation's result.
71	ResultMetadata middleware.Metadata
72}
73
74func addOperationCreateDeploymentConfigMiddlewares(stack *middleware.Stack, options Options) (err error) {
75	err = stack.Serialize.Add(&awsAwsjson11_serializeOpCreateDeploymentConfig{}, middleware.After)
76	if err != nil {
77		return err
78	}
79	err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpCreateDeploymentConfig{}, middleware.After)
80	if err != nil {
81		return err
82	}
83	if err = addSetLoggerMiddleware(stack, options); err != nil {
84		return err
85	}
86	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
87		return err
88	}
89	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
90		return err
91	}
92	if err = addResolveEndpointMiddleware(stack, options); err != nil {
93		return err
94	}
95	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
96		return err
97	}
98	if err = addRetryMiddlewares(stack, options); err != nil {
99		return err
100	}
101	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
102		return err
103	}
104	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
105		return err
106	}
107	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
108		return err
109	}
110	if err = addClientUserAgent(stack); err != nil {
111		return err
112	}
113	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
114		return err
115	}
116	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
117		return err
118	}
119	if err = addOpCreateDeploymentConfigValidationMiddleware(stack); err != nil {
120		return err
121	}
122	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opCreateDeploymentConfig(options.Region), middleware.Before); err != nil {
123		return err
124	}
125	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
126		return err
127	}
128	if err = addResponseErrorMiddleware(stack); err != nil {
129		return err
130	}
131	if err = addRequestResponseLogging(stack, options); err != nil {
132		return err
133	}
134	return nil
135}
136
137func newServiceMetadataMiddleware_opCreateDeploymentConfig(region string) *awsmiddleware.RegisterServiceMetadata {
138	return &awsmiddleware.RegisterServiceMetadata{
139		Region:        region,
140		ServiceID:     ServiceID,
141		SigningName:   "codedeploy",
142		OperationName: "CreateDeploymentConfig",
143	}
144}
145