Show / Hide Table of Contents

Class CfnJobDefinition.FargatePlatformConfigurationProperty

The platform configuration for jobs that are running on Fargate resources.

Inheritance
object
CfnJobDefinition.FargatePlatformConfigurationProperty
Implements
CfnJobDefinition.IFargatePlatformConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnJobDefinition.FargatePlatformConfigurationProperty : CfnJobDefinition.IFargatePlatformConfigurationProperty
Syntax (vb)
Public Class CfnJobDefinition.FargatePlatformConfigurationProperty Implements CfnJobDefinition.IFargatePlatformConfigurationProperty
Remarks

Jobs that run on Amazon EC2 resources must not specify this parameter.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-fargateplatformconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Batch;

             var fargatePlatformConfigurationProperty = new FargatePlatformConfigurationProperty {
                 PlatformVersion = "platformVersion"
             };

Synopsis

Constructors

FargatePlatformConfigurationProperty()

The platform configuration for jobs that are running on Fargate resources.

Properties

PlatformVersion

The AWS Fargate platform version where the jobs are running.

Constructors

FargatePlatformConfigurationProperty()

The platform configuration for jobs that are running on Fargate resources.

public FargatePlatformConfigurationProperty()
Remarks

Jobs that run on Amazon EC2 resources must not specify this parameter.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-fargateplatformconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Batch;

             var fargatePlatformConfigurationProperty = new FargatePlatformConfigurationProperty {
                 PlatformVersion = "platformVersion"
             };

Properties

PlatformVersion

The AWS Fargate platform version where the jobs are running.

public string? PlatformVersion { get; set; }
Property Value

string

Remarks

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-fargateplatformconfiguration.html#cfn-batch-jobdefinition-fargateplatformconfiguration-platformversion

Implements

CfnJobDefinition.IFargatePlatformConfigurationProperty
Back to top Generated by DocFX