interface FargatePlatformConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Batch.CfnJobDefinitionPropsMixin.FargatePlatformConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbatch#CfnJobDefinitionPropsMixin_FargatePlatformConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.batch.CfnJobDefinitionPropsMixin.FargatePlatformConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_batch.CfnJobDefinitionPropsMixin.FargatePlatformConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_batch » CfnJobDefinitionPropsMixin » FargatePlatformConfigurationProperty |
The platform configuration for jobs that are running on Fargate resources.
Jobs that run on Amazon EC2 resources must not specify this parameter.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_batch as batch } from '@aws-cdk/cfn-property-mixins';
const fargatePlatformConfigurationProperty: batch.CfnJobDefinitionPropsMixin.FargatePlatformConfigurationProperty = {
platformVersion: 'platformVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| platform | string | The AWS Fargate platform version where the jobs are running. |
platformVersion?
Type:
string
(optional)
The AWS Fargate platform version where the jobs are running.
A platform version is specified only for jobs that are running on Fargate resources. If one isn't specified, the LATEST platform version is used by default. This uses a recent, approved version of the AWS Fargate platform for compute resources. For more information, see AWS Fargate platform versions in the Amazon Elastic Container Service Developer Guide .

.NET
Go
Java
Python
TypeScript