Class: Aws::IoTTwinMaker::Types::DataConnector

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

Overview

Note:

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

{
  lambda: {
    arn: "LambdaArn", # required
  },
  is_native: false,
}

The data connector.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#is_nativeBoolean

A Boolean value that specifies whether the data connector is native to IoT TwinMaker.

Returns:

  • (Boolean)


1112
1113
1114
1115
1116
1117
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 1112

class DataConnector < Struct.new(
  :lambda,
  :is_native)
  SENSITIVE = []
  include Aws::Structure
end

#lambdaTypes::LambdaFunction

The Lambda function associated with this data connector.



1112
1113
1114
1115
1116
1117
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 1112

class DataConnector < Struct.new(
  :lambda,
  :is_native)
  SENSITIVE = []
  include Aws::Structure
end