CfnConnectorDefinitionVersionProps
- class aws_cdk.aws_greengrass.CfnConnectorDefinitionVersionProps(*, connector_definition_id, connectors)
Bases:
object
Properties for defining a
CfnConnectorDefinitionVersion
.- Parameters:
connector_definition_id (
str
) – The ID of the connector definition associated with this version. This value is a GUID.connectors (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,ConnectorProperty
,Dict
[str
,Any
]]]]) – The connectors in this version. Only one instance of a given connector can be added to the connector definition version at a time.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_greengrass as greengrass # parameters: Any cfn_connector_definition_version_props = greengrass.CfnConnectorDefinitionVersionProps( connector_definition_id="connectorDefinitionId", connectors=[greengrass.CfnConnectorDefinitionVersion.ConnectorProperty( connector_arn="connectorArn", id="id", # the properties below are optional parameters=parameters )] )
Attributes
- connector_definition_id
The ID of the connector definition associated with this version.
This value is a GUID.
- connectors
The connectors in this version.
Only one instance of a given connector can be added to the connector definition version at a time.