CfnConnectorMixinProps
- class aws_cdk.cfn_property_mixins.aws_config.CfnConnectorMixinProps(*, connector_configuration=None, tags=None)
Bases:
objectProperties for CfnConnectorPropsMixin.
- Parameters:
connector_configuration (
Union[IResolvable,ConnectorConfigurationProperty,Dict[str,Any],None]) – 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.cfn_property_mixins import aws_config as config cfn_connector_mixin_props = config.CfnConnectorMixinProps( connector_configuration=config.CfnConnectorPropsMixin.ConnectorConfigurationProperty( azure=config.CfnConnectorPropsMixin.AzureConnectorConfigurationProperty( client_identifier="clientIdentifier", tenant_identifier="tenantIdentifier" ) ), 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.