Class: Aws::IoT::Types::ProvisioningHook

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

Overview

Structure that contains payloadVersion and targetArn.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#payload_versionString

The payload that was sent to the target function.

Note: Only Lambda functions are currently supported.

Returns:

  • (String)


12967
12968
12969
12970
12971
12972
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 12967

class ProvisioningHook < Struct.new(
  :payload_version,
  :target_arn)
  SENSITIVE = []
  include Aws::Structure
end

#target_arnString

The ARN of the target function.

Note: Only Lambda functions are currently supported.

Returns:

  • (String)


12967
12968
12969
12970
12971
12972
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 12967

class ProvisioningHook < Struct.new(
  :payload_version,
  :target_arn)
  SENSITIVE = []
  include Aws::Structure
end