Method: Aws::Batch::Types::EcsTaskDetails#ipc_mode

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

#ipc_modeString

The IPC resource namespace to use for the containers in the task. The valid values are host, task, or none. For more information see ipcMode in [EcsTaskProperties].

[1]: docs.aws.amazon.com/batch/latest/APIReference/API_EcsTaskProperties.html

Returns:

  • (String)


3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
# File 'lib/aws-sdk-batch/types.rb', line 3934

class EcsTaskDetails < Struct.new(
  :containers,
  :container_instance_arn,
  :task_arn,
  :ephemeral_storage,
  :execution_role_arn,
  :platform_version,
  :ipc_mode,
  :task_role_arn,
  :pid_mode,
  :network_configuration,
  :runtime_platform,
  :volumes,
  :enable_execute_command)
  SENSITIVE = []
  include Aws::Structure
end