package awsbatch // The `ulimit` settings to pass to the container. // // > This object isn't applicable to jobs that are running on Fargate resources. // // 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" // // ulimitProperty := &UlimitProperty{ // HardLimit: jsii.Number(123), // Name: jsii.String("name"), // SoftLimit: jsii.Number(123), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ulimit.html // type CfnJobDefinition_UlimitProperty struct { // The hard limit for the `ulimit` type. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ulimit.html#cfn-batch-jobdefinition-ulimit-hardlimit // HardLimit *float64 `field:"required" json:"hardLimit" yaml:"hardLimit"` // The `type` of the `ulimit` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ulimit.html#cfn-batch-jobdefinition-ulimit-name // Name *string `field:"required" json:"name" yaml:"name"` // The soft limit for the `ulimit` type. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ulimit.html#cfn-batch-jobdefinition-ulimit-softlimit // SoftLimit *float64 `field:"required" json:"softLimit" yaml:"softLimit"` }