Class: Aws::Greengrass::Types::Connector

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb

Overview

Information about a connector. Connectors run on the Greengrass core and contain built-in integration with local infrastructure, device protocols, AWS, and other cloud services.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#connector_arnString

The ARN of the connector.

Returns:

  • (String)


243
244
245
246
247
248
249
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 243

class Connector < Struct.new(
  :connector_arn,
  :id,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#idString

A descriptive or arbitrary ID for the connector. This value must be unique within the connector definition version. Max length is 128 characters with pattern [a-zA-Z0-9:_-]+.

Returns:

  • (String)


243
244
245
246
247
248
249
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 243

class Connector < Struct.new(
  :connector_arn,
  :id,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#parametersHash<String,String>

The parameters or configuration that the connector uses.

Returns:

  • (Hash<String,String>)


243
244
245
246
247
248
249
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 243

class Connector < Struct.new(
  :connector_arn,
  :id,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end