Class: Aws::SSM::Types::DocumentParameter

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ssm/types.rb

Overview

Parameters specified in a Systems Manager document that run on the server when the command is run.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#default_valueString

If specified, the default values for the parameters. Parameters without a default value are required. Parameters with a default value are optional.

Returns:

  • (String)


6896
6897
6898
6899
6900
6901
6902
6903
# File 'lib/aws-sdk-ssm/types.rb', line 6896

class DocumentParameter < Struct.new(
  :name,
  :type,
  :description,
  :default_value)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

A description of what the parameter does, how to use it, the default value, and whether or not the parameter is optional.

Returns:

  • (String)


6896
6897
6898
6899
6900
6901
6902
6903
# File 'lib/aws-sdk-ssm/types.rb', line 6896

class DocumentParameter < Struct.new(
  :name,
  :type,
  :description,
  :default_value)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the parameter.

Returns:

  • (String)


6896
6897
6898
6899
6900
6901
6902
6903
# File 'lib/aws-sdk-ssm/types.rb', line 6896

class DocumentParameter < Struct.new(
  :name,
  :type,
  :description,
  :default_value)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of parameter. The type can be either String or StringList.

Returns:

  • (String)


6896
6897
6898
6899
6900
6901
6902
6903
# File 'lib/aws-sdk-ssm/types.rb', line 6896

class DocumentParameter < Struct.new(
  :name,
  :type,
  :description,
  :default_value)
  SENSITIVE = []
  include Aws::Structure
end