Interface CfnConnectorDefinitionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorDefinitionProps.Jsii$Proxy
CfnConnectorDefinition.
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;
Object tags;
CfnConnectorDefinitionProps cfnConnectorDefinitionProps = CfnConnectorDefinitionProps.builder()
.name("name")
// the properties below are optional
.initialVersion(ConnectorDefinitionVersionProperty.builder()
.connectors(List.of(ConnectorProperty.builder()
.connectorArn("connectorArn")
.id("id")
// the properties below are optional
.parameters(parameters)
.build()))
.build())
.tags(tags)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectorDefinitionPropsstatic final classAn implementation forCfnConnectorDefinitionProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the connector definition.- See Also:
-
getInitialVersion
The connector definition version to include when the connector definition is created.A connector definition version contains a list of
connectorproperty types.To associate a connector definition version after the connector definition is created, create an
AWS::Greengrass::ConnectorDefinitionVersionresource and specify the ID of this connector definition.Returns union: either
IResolvableorCfnConnectorDefinition.ConnectorDefinitionVersionProperty- See Also:
-
getTags
Application-specific metadata to attach to the connector definition.You can use tags in IAM policies to control access to AWS IoT Greengrass resources. You can also use tags to categorize your resources. For more information, see Tagging Your AWS IoT Greengrass Resources in the Developer Guide .
This
Jsonproperty type is processed as a map of key-value pairs. It uses the following format, which is different from mostTagsimplementations in CloudFormation templates."Tags": { "KeyName0": "value", "KeyName1": "value", "KeyName2": "value" }- See Also:
-
builder
-