Class: Aws::IoTTwinMaker::Types::FunctionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTTwinMaker::Types::FunctionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iottwinmaker/types.rb
Overview
Note:
When making an API call, you may pass FunctionRequest data as a hash:
{
implemented_by: {
is_native: false,
lambda: {
arn: "LambdaArn", # required
},
},
required_properties: ["Name"],
scope: "ENTITY", # accepts ENTITY, WORKSPACE
}
The function request body.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#implemented_by ⇒ Types::DataConnector
The data connector.
-
#required_properties ⇒ Array<String>
The required properties of the function.
-
#scope ⇒ String
The scope of the function.
Instance Attribute Details
#implemented_by ⇒ Types::DataConnector
The data connector.
1453 1454 1455 1456 1457 1458 1459 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 1453 class FunctionRequest < Struct.new( :implemented_by, :required_properties, :scope) SENSITIVE = [] include Aws::Structure end |
#required_properties ⇒ Array<String>
The required properties of the function.
1453 1454 1455 1456 1457 1458 1459 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 1453 class FunctionRequest < Struct.new( :implemented_by, :required_properties, :scope) SENSITIVE = [] include Aws::Structure end |
#scope ⇒ String
The scope of the function.
1453 1454 1455 1456 1457 1458 1459 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 1453 class FunctionRequest < Struct.new( :implemented_by, :required_properties, :scope) SENSITIVE = [] include Aws::Structure end |