Class: Aws::Batch::Types::FargatePlatformConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::FargatePlatformConfiguration
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
Note:
When making an API call, you may pass FargatePlatformConfiguration data as a hash:
{
platform_version: "String",
}
The platform configuration for jobs running on Fargate resources. Jobs running on EC2 resources must not specify this parameter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#platform_version ⇒ String
The AWS Fargate platform version on which the jobs are running.
Instance Attribute Details
#platform_version ⇒ String
The AWS Fargate platform version on which the jobs are running. A
platform version is specified only for jobs running on Fargate
resources. If one isn't specified, the LATEST
platform version is
used by default. This will use 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.
2451 2452 2453 2454 2455 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 2451 class FargatePlatformConfiguration < Struct.new( :platform_version) SENSITIVE = [] include Aws::Structure end |