Class: Aws::Greengrass::Types::Connector
- Inherits:
-
Struct
- Object
- Struct
- Aws::Greengrass::Types::Connector
- Includes:
- Structure
- Defined in:
- 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
-
#connector_arn ⇒ String
The ARN of the connector.
-
#id ⇒ String
A descriptive or arbitrary ID for the connector.
-
#parameters ⇒ Hash<String,String>
The parameters or configuration that the connector uses.
Instance Attribute Details
#connector_arn ⇒ String
The ARN of the connector.
243 244 245 246 247 248 249 |
# File 'lib/aws-sdk-greengrass/types.rb', line 243 class Connector < Struct.new( :connector_arn, :id, :parameters) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
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:_-]+.
243 244 245 246 247 248 249 |
# File 'lib/aws-sdk-greengrass/types.rb', line 243 class Connector < Struct.new( :connector_arn, :id, :parameters) SENSITIVE = [] include Aws::Structure end |