Class: Aws::Batch::Types::FargatePlatformConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::FargatePlatformConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-batch/types.rb
Overview
The platform configuration for jobs that are running on Fargate resources. Jobs that run on Amazon EC2 resources must not specify this parameter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#platform_version ⇒ String
The Fargate platform version where the jobs are running.
Instance Attribute Details
#platform_version ⇒ String
The 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 Fargate platform for compute resources. For more information, see [Fargate platform versions] in the *Amazon Elastic Container Service Developer Guide*.
[1]: docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
4642 4643 4644 4645 4646 |
# File 'lib/aws-sdk-batch/types.rb', line 4642 class FargatePlatformConfiguration < Struct.new( :platform_version) SENSITIVE = [] include Aws::Structure end |