@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.600Z") @Stability(value=Stable) public interface CfnConnectorDefinitionVersionProps extends software.amazon.jsii.JsiiSerializable
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;
CfnConnectorDefinitionVersionProps cfnConnectorDefinitionVersionProps = CfnConnectorDefinitionVersionProps.builder()
.connectorDefinitionId("connectorDefinitionId")
.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 |
CfnConnectorDefinitionVersionProps.Builder
A builder for
CfnConnectorDefinitionVersionProps |
static class |
CfnConnectorDefinitionVersionProps.Jsii$Proxy
An implementation for
CfnConnectorDefinitionVersionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnectorDefinitionVersionProps.Builder |
builder() |
String |
getConnectorDefinitionId()
The ID of the connector definition associated with this version.
|
Object |
getConnectors()
The connectors in this version.
|
@Stability(value=Stable) @NotNull String getConnectorDefinitionId()
This value is a GUID.
@Stability(value=Stable) @NotNull Object getConnectors()
Only one instance of a given connector can be added to the connector definition version at a time.
@Stability(value=Stable) static CfnConnectorDefinitionVersionProps.Builder builder()
Copyright © 2022. All rights reserved.