Class: Aws::IoT::Types::UserProperty

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

Overview

Note:

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

{
  key: "UserPropertyKey", # required
  value: "UserPropertyValue", # required
}

A key-value pair that you define in the header. Both the key and the value are either literal strings or valid [substitution templates].

[1]: docs.aws.amazon.com/iot/latest/developerguide/iot-substitution-templates.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

A key to be specified in `UserProperty`.

Returns:

  • (String)


21212
21213
21214
21215
21216
21217
# File 'lib/aws-sdk-iot/types.rb', line 21212

class UserProperty < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

A value to be specified in `UserProperty`.

Returns:

  • (String)


21212
21213
21214
21215
21216
21217
# File 'lib/aws-sdk-iot/types.rb', line 21212

class UserProperty < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end