public static interface CfnConnectorDefinition.ConnectorDefinitionVersionProperty
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.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.greengrass.*; Object parameters; ConnectorDefinitionVersionProperty connectorDefinitionVersionProperty = ConnectorDefinitionVersionProperty.builder() .connectors(List.of(ConnectorProperty.builder() .connectorArn("connectorArn") .id("id") // the properties below are optional .parameters(parameters) .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnConnectorDefinition.ConnectorDefinitionVersionProperty.Builder
|
static class |
CfnConnectorDefinition.ConnectorDefinitionVersionProperty.Jsii$Proxy
An implementation for
CfnConnectorDefinition.ConnectorDefinitionVersionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnConnectorDefinition.ConnectorDefinitionVersionProperty.Builder |
builder() |
java.lang.Object |
getConnectors()
The connectors in this version.
|