Method: Aws::SecurityHub::Types::ParameterValue#string
- Defined in:
- lib/aws-sdk-securityhub/types.rb
#string ⇒ String
A control parameter that is a string.
28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28550 28551 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 |
# File 'lib/aws-sdk-securityhub/types.rb', line 28539 class ParameterValue < Struct.new( :integer, :integer_list, :double, :string, :string_list, :boolean, :enum, :enum_list, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Integer < ParameterValue; end class IntegerList < ParameterValue; end class Double < ParameterValue; end class String < ParameterValue; end class StringList < ParameterValue; end class Boolean < ParameterValue; end class Enum < ParameterValue; end class EnumList < ParameterValue; end class Unknown < ParameterValue; end end |