Class CfnConnectorDefinitionPropsMixin.ConnectorDefinitionVersionProperty
A connector definition version contains a list of connectors.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Greengrass
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnConnectorDefinitionPropsMixin.ConnectorDefinitionVersionProperty : CfnConnectorDefinitionPropsMixin.IConnectorDefinitionVersionProperty
Syntax (vb)
Public Class CfnConnectorDefinitionPropsMixin.ConnectorDefinitionVersionProperty Implements CfnConnectorDefinitionPropsMixin.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 <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html"><code>AWS::Greengrass::Group</code></a> .
In an 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.CfnPropertyMixins.AWS.Greengrass;
var parameters;
var connectorDefinitionVersionProperty = new ConnectorDefinitionVersionProperty {
Connectors = new [] { new ConnectorProperty {
ConnectorArn = "connectorArn",
Id = "id",
Parameters = parameters
} }
};
Synopsis
Constructors
| ConnectorDefinitionVersionProperty() | A connector definition version contains a list of connectors. |
Properties
| Connectors | The connectors in this version. |
Constructors
ConnectorDefinitionVersionProperty()
A connector definition version contains a list of connectors.
public ConnectorDefinitionVersionProperty()
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 <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html"><code>AWS::Greengrass::Group</code></a> .
In an 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.CfnPropertyMixins.AWS.Greengrass;
var parameters;
var connectorDefinitionVersionProperty = new ConnectorDefinitionVersionProperty {
Connectors = new [] { new ConnectorProperty {
ConnectorArn = "connectorArn",
Id = "id",
Parameters = parameters
} }
};
Properties
Connectors
The connectors in this version.
public object? Connectors { get; set; }
Property Value
Remarks
Only one instance of a given connector can be added to a connector definition version at a time.
Type union: either IResolvable or (either IResolvable or CfnConnectorDefinitionPropsMixin.IConnectorProperty)[]