Class: Aws::IoT::Types::ProvisioningHook
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ProvisioningHook
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass ProvisioningHook data as a hash:
{
payload_version: "PayloadVersion",
target_arn: "TargetArn", # required
}
Structure that contains payloadVersion
and targetArn
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#payload_version ⇒ String
The payload that was sent to the target function.
-
#target_arn ⇒ String
The ARN of the target function.
Instance Attribute Details
#payload_version ⇒ String
The payload that was sent to the target function.
Note: Only Lambda functions are currently supported.
14673 14674 14675 14676 14677 14678 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 14673 class ProvisioningHook < Struct.new( :payload_version, :target_arn) SENSITIVE = [] include Aws::Structure end |
#target_arn ⇒ String
The ARN of the target function.
Note: Only Lambda functions are currently supported.
14673 14674 14675 14676 14677 14678 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 14673 class ProvisioningHook < Struct.new( :payload_version, :target_arn) SENSITIVE = [] include Aws::Structure end |