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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package apprunner
import (
"context"
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. The name DefaultConfiguration is
// reserved (it's the configuration that App Runner uses if you don't provide a
// custome one). You can't use it to create a new auto scaling configuration, and
// you can't create a revision of it. When you want to use your own auto scaling
// configuration for your App Runner service, create a configuration with a
// different name, and then provide it when you create or update your service.
//
// 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) {
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 = 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 = addHTTPSignerV4Middleware(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); err != nil {
return err
}
if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = smithyhttp.AddCloseResponseBodyMiddleware(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 = addRequestIDRetrieverMiddleware(stack); err != nil {
return err
}
if err = addResponseErrorMiddleware(stack); err != nil {
return err
}
if err = addRequestResponseLogging(stack, options); err != nil {
return err
}
return nil
}
func newServiceMetadataMiddleware_opCreateAutoScalingConfiguration(region string) *awsmiddleware.RegisterServiceMetadata {
return &awsmiddleware.RegisterServiceMetadata{
Region: region,
ServiceID: ServiceID,
SigningName: "apprunner",
OperationName: "CreateAutoScalingConfiguration",
}
}
|