CfnConnectorProps
- class aws_cdk.aws_config.CfnConnectorProps(*, connector_configuration, tags=None)
Bases:
objectProperties for defining a
CfnConnector.- Parameters:
connector_configuration (
Union[IResolvable,ConnectorConfigurationProperty,Dict[str,Any]]) – The configuration for the connector. Specify the third-party cloud provider configuration.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags for the connector.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-connector.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_config as config cfn_connector_props = config.CfnConnectorProps( connector_configuration=config.CfnConnector.ConnectorConfigurationProperty( azure=config.CfnConnector.AzureConnectorConfigurationProperty( client_identifier="clientIdentifier", tenant_identifier="tenantIdentifier" ) ), # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- connector_configuration
The configuration for the connector.
Specify the third-party cloud provider configuration.
- tags
The tags for the connector.