Class: Aws::SSM::Types::GetParameterRequest

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

Overview

Note:

When making an API call, you may pass GetParameterRequest data as a hash:

{
  name: "PSParameterName", # required
  with_decryption: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the parameter you want to query.

Returns:

  • (String)


6766
6767
6768
6769
6770
# File 'lib/aws-sdk-ssm/types.rb', line 6766

class GetParameterRequest < Struct.new(
  :name,
  :with_decryption)
  include Aws::Structure
end

#with_decryptionBoolean

Return decrypted values for secure string parameters. This flag is ignored for String and StringList parameter types.

Returns:

  • (Boolean)


6766
6767
6768
6769
6770
# File 'lib/aws-sdk-ssm/types.rb', line 6766

class GetParameterRequest < Struct.new(
  :name,
  :with_decryption)
  include Aws::Structure
end