package awslambda // (Amazon SQS only) The scaling configuration for the event source. // // To remove the configuration, pass an empty value. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // scalingConfigProperty := &ScalingConfigProperty{ // MaximumConcurrency: jsii.Number(123), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-scalingconfig.html // type CfnEventSourceMapping_ScalingConfigProperty struct { // Limits the number of concurrent instances that the Amazon SQS event source can invoke. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-scalingconfig.html#cfn-lambda-eventsourcemapping-scalingconfig-maximumconcurrency // MaximumConcurrency *float64 `field:"optional" json:"maximumConcurrency" yaml:"maximumConcurrency"` }