@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:36:46.550Z")
public interface CfnConnectorDefinitionProps
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnConnectorDefinitionProps.Builder
A builder for
CfnConnectorDefinitionProps |
static class |
CfnConnectorDefinitionProps.Jsii$Proxy
An implementation for
CfnConnectorDefinitionProps |
Modifier and Type | Method and Description |
---|---|
static CfnConnectorDefinitionProps.Builder |
builder() |
default java.lang.Object |
getInitialVersion()
The connector definition version to include when the connector definition is created.
|
java.lang.String |
getName()
The name of the connector definition.
|
default java.lang.Object |
getTags()
Application-specific metadata to attach to the connector definition.
|
java.lang.String getName()
default java.lang.Object getInitialVersion()
A connector definition version contains a list of connector
property types.
To associate a connector definition version after the connector definition is created, create an
AWS::Greengrass::ConnectorDefinitionVersion
resource and specify the ID of this connector definition.
default java.lang.Object getTags()
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 Json
property type is processed as a map of key-value pairs. It uses the following format, which is different from most Tags
implementations in AWS CloudFormation templates.
"Tags": { "KeyName0": "value", "KeyName1": "value", "KeyName2": "value" }
static CfnConnectorDefinitionProps.Builder builder()