package awsglue // An execution property of a job. // // 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" // // executionPropertyProperty := &ExecutionPropertyProperty{ // MaxConcurrentRuns: jsii.Number(123), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html // type CfnJob_ExecutionPropertyProperty struct { // The maximum number of concurrent runs allowed for the job. // // The default is 1. An error is returned when this threshold is reached. The maximum value you can specify is controlled by a service limit. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns // MaxConcurrentRuns *float64 `field:"optional" json:"maxConcurrentRuns" yaml:"maxConcurrentRuns"` }