Class: Aws::IoT::Types::SalesforceAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::SalesforceAction
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass SalesforceAction data as a hash:
{
token: "SalesforceToken", # required
url: "SalesforceEndpoint", # required
}
Describes an action to write a message to a Salesforce IoT Cloud Input Stream.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#token ⇒ String
The token used to authenticate access to the Salesforce IoT Cloud Input Stream.
-
#url ⇒ String
The URL exposed by the Salesforce IoT Cloud Input Stream.
Instance Attribute Details
#token ⇒ String
The token used to authenticate access to the Salesforce IoT Cloud Input Stream. The token is available from the Salesforce IoT Cloud platform after creation of the Input Stream.
16203 16204 16205 16206 16207 16208 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16203 class SalesforceAction < Struct.new( :token, :url) SENSITIVE = [] include Aws::Structure end |
#url ⇒ String
The URL exposed by the Salesforce IoT Cloud Input Stream. The URL is available from the Salesforce IoT Cloud platform after creation of the Input Stream.
16203 16204 16205 16206 16207 16208 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16203 class SalesforceAction < Struct.new( :token, :url) SENSITIVE = [] include Aws::Structure end |