CfnConnectorProps

class aws_cdk.aws_config.CfnConnectorProps(*, connector_configuration, tags=None)

Bases: object

Properties 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-connector.html#cfn-config-connector-connectorconfiguration

tags

The tags for the connector.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-connector.html#cfn-config-connector-tags