Method: Aws::Batch::Types::TaskContainerProperties#name

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

#nameString

The name of a container. The name can be used as a unique identifier to target your dependsOn and Overrides objects.

Returns:

  • (String)


9968
9969
9970
9971
9972
9973
9974
9975
9976
9977
9978
9979
9980
9981
9982
9983
9984
9985
9986
9987
9988
# File 'lib/aws-sdk-batch/types.rb', line 9968

class TaskContainerProperties < Struct.new(
  :command,
  :depends_on,
  :environment,
  :essential,
  :firelens_configuration,
  :image,
  :linux_parameters,
  :log_configuration,
  :mount_points,
  :name,
  :privileged,
  :readonly_root_filesystem,
  :repository_credentials,
  :resource_requirements,
  :secrets,
  :ulimits,
  :user)
  SENSITIVE = []
  include Aws::Structure
end