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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package apprunner
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/apprunner/types"
"github.com/aws/smithy-go/middleware"
smithyhttp "github.com/aws/smithy-go/transport/http"
)
// Create an App Runner automatic scaling configuration resource. App Runner
// requires this resource when you create or update App Runner services and you
// require non-default auto scaling settings. You can share an auto scaling
// configuration across multiple services. Create multiple revisions of a
// configuration by calling this action multiple times using the same
// AutoScalingConfigurationName . The call returns incremental
// AutoScalingConfigurationRevision values. When you create a service and configure
// an auto scaling configuration resource, the service uses the latest active
// revision of the auto scaling configuration by default. You can optionally
// configure the service to use a specific revision. Configure a higher MinSize to
// increase the spread of your App Runner service over more Availability Zones in
// the Amazon Web Services Region. The tradeoff is a higher minimal cost. Configure
// a lower MaxSize to control your cost. The tradeoff is lower responsiveness
// during peak demand.
func (c *Client) CreateAutoScalingConfiguration(ctx context.Context, params *CreateAutoScalingConfigurationInput, optFns ...func(*Options)) (*CreateAutoScalingConfigurationOutput, error) {
if params == nil {
params = &CreateAutoScalingConfigurationInput{}
}
result, metadata, err := c.invokeOperation(ctx, "CreateAutoScalingConfiguration", params, optFns, c.addOperationCreateAutoScalingConfigurationMiddlewares)
if err != nil {
return nil, err
}
out := result.(*CreateAutoScalingConfigurationOutput)
out.ResultMetadata = metadata
return out, nil
}
type CreateAutoScalingConfigurationInput struct {
// A name for the auto scaling configuration. When you use it for the first time
// in an Amazon Web Services Region, App Runner creates revision number 1 of this
// name. When you use the same name in subsequent calls, App Runner creates
// incremental revisions of the configuration. Prior to the release of Auto scale
// configuration enhancements (https://docs.aws.amazon.com/apprunner/latest/relnotes/release-2023-09-22-auto-scale-config.html)
// , the name DefaultConfiguration was reserved. This restriction is no longer in
// place. You can now manage DefaultConfiguration the same way you manage your
// custom auto scaling configurations. This means you can do the following with the
// DefaultConfiguration that App Runner provides:
// - Create new revisions of the DefaultConfiguration .
// - Delete the revisions of the DefaultConfiguration .
// - Delete the auto scaling configuration for which the App Runner
// DefaultConfiguration was created.
// - If you delete the auto scaling configuration you can create another custom
// auto scaling configuration with the same DefaultConfiguration name. The
// original DefaultConfiguration resource provided by App Runner remains in your
// account unless you make changes to it.
//
// This member is required.
AutoScalingConfigurationName *string
// The maximum number of concurrent requests that you want an instance to process.
// If the number of concurrent requests exceeds this limit, App Runner scales up
// your service. Default: 100
MaxConcurrency *int32
// The maximum number of instances that your service scales up to. At most MaxSize
// instances actively serve traffic for your service. Default: 25
MaxSize *int32
// The minimum number of instances that App Runner provisions for your service.
// The service always has at least MinSize provisioned instances. Some of them
// actively serve traffic. The rest of them (provisioned and inactive instances)
// are a cost-effective compute capacity reserve and are ready to be quickly
// activated. You pay for memory usage of all the provisioned instances. You pay
// for CPU usage of only the active subset. App Runner temporarily doubles the
// number of provisioned instances during deployments, to maintain the same
// capacity for both old and new code. Default: 1
MinSize *int32
// A list of metadata items that you can associate with your auto scaling
// configuration resource. A tag is a key-value pair.
Tags []types.Tag
noSmithyDocumentSerde
}
type CreateAutoScalingConfigurationOutput struct {
// A description of the App Runner auto scaling configuration that's created by
// this request.
//
// This member is required.
AutoScalingConfiguration *types.AutoScalingConfiguration
// Metadata pertaining to the operation's result.
ResultMetadata middleware.Metadata
noSmithyDocumentSerde
}
func (c *Client) addOperationCreateAutoScalingConfigurationMiddlewares(stack *middleware.Stack, options Options) (err error) {
if err := stack.Serialize.Add(&setOperationInputMiddleware{}, middleware.After); err != nil {
return err
}
err = stack.Serialize.Add(&awsAwsjson10_serializeOpCreateAutoScalingConfiguration{}, middleware.After)
if err != nil {
return err
}
err = stack.Deserialize.Add(&awsAwsjson10_deserializeOpCreateAutoScalingConfiguration{}, middleware.After)
if err != nil {
return err
}
if err := addProtocolFinalizerMiddlewares(stack, options, "CreateAutoScalingConfiguration"); 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 = addOpCreateAutoScalingConfigurationValidationMiddleware(stack); err != nil {
return err
}
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opCreateAutoScalingConfiguration(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_opCreateAutoScalingConfiguration(region string) *awsmiddleware.RegisterServiceMetadata {
return &awsmiddleware.RegisterServiceMetadata{
Region: region,
ServiceID: ServiceID,
OperationName: "CreateAutoScalingConfiguration",
}
}
|