Method: Aws::Batch::Types::ContainerProperties#runtime_platform

Defined in:
lib/aws-sdk-batch/types.rb

#runtime_platformTypes::RuntimePlatform

An object that represents the compute environment architecture for Batch jobs on Fargate.



2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
# File 'lib/aws-sdk-batch/types.rb', line 2261

class ContainerProperties < Struct.new(
  :image,
  :vcpus,
  :memory,
  :command,
  :job_role_arn,
  :execution_role_arn,
  :volumes,
  :environment,
  :mount_points,
  :readonly_root_filesystem,
  :privileged,
  :ulimits,
  :user,
  :instance_type,
  :resource_requirements,
  :linux_parameters,
  :log_configuration,
  :secrets,
  :network_configuration,
  :fargate_platform_configuration,
  :enable_execute_command,
  :ephemeral_storage,
  :runtime_platform,
  :repository_credentials)
  SENSITIVE = []
  include Aws::Structure
end