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:

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

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 TwinMaker.

Returns:

  • (Boolean)


979
980
981
982
983
984
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 979

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

#lambdaTypes::LambdaFunction

The Lambda function associated with this data connector.



979
980
981
982
983
984
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 979

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