Interface CfnConnectorDefinition.IConnectorDefinitionVersionProperty
A connector definition version contains a list of connectors.
Namespace: Amazon.CDK.AWS.Greengrass
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IConnectorDefinitionVersionProperty
Syntax (vb)
Public Interface IConnectorDefinitionVersionProperty
Remarks
After you create a connector definition version that contains the connectors you want to deploy, you must add it to your group version. For more information, see AWS::Greengrass::Group
.
In an AWS CloudFormation template, ConnectorDefinitionVersion
is the property type of the InitialVersion
property in the AWS::Greengrass::ConnectorDefinition
resource.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Greengrass;
var parameters;
var connectorDefinitionVersionProperty = new ConnectorDefinitionVersionProperty {
Connectors = new [] { new ConnectorProperty {
ConnectorArn = "connectorArn",
Id = "id",
// the properties below are optional
Parameters = parameters
} }
};
Synopsis
Properties
Connectors | The connectors in this version. |
Properties
Connectors
The connectors in this version.
object Connectors { get; }
Property Value
System.
Remarks
Only one instance of a given connector can be added to a connector definition version at a time.