CfnConnectorPropsMixin
- class aws_cdk.cfn_property_mixins.aws_config.CfnConnectorPropsMixin(props, *, strategy=None)
Bases:
MixinResource Type definition for AWS::Config::Connector.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-connector.html
- CloudformationResource:
AWS::Config::Connector
- Mixin:
true
- 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.cfn_property_mixins import aws_config as config import aws_cdk as cdk # merge_strategy: cdk.IMergeStrategy cfn_connector_props_mixin = config.CfnConnectorPropsMixin(config.CfnConnectorMixinProps( connector_configuration=config.CfnConnectorPropsMixin.ConnectorConfigurationProperty( azure=config.CfnConnectorPropsMixin.AzureConnectorConfigurationProperty( client_identifier="clientIdentifier", tenant_identifier="tenantIdentifier" ) ), tags=[cdk.CfnTag( key="key", value="value" )] ), strategy=merge_strategy )
Create a mixin to apply properties to
AWS::Config::Connector.- Parameters:
props (
Union[CfnConnectorMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
None
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['connectorConfiguration', 'tags']
Static Methods
- classmethod is_mixin(x)
Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.
AzureConnectorConfigurationProperty
- class CfnConnectorPropsMixin.AzureConnectorConfigurationProperty(*, client_identifier=None, tenant_identifier=None)
Bases:
objectConfiguration for connecting to Microsoft Azure.
- Parameters:
client_identifier (
Optional[str]) – The Azure client (application) identifier.tenant_identifier (
Optional[str]) – The Azure tenant identifier.
- See:
- 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.cfn_property_mixins import aws_config as config azure_connector_configuration_property = config.CfnConnectorPropsMixin.AzureConnectorConfigurationProperty( client_identifier="clientIdentifier", tenant_identifier="tenantIdentifier" )
Attributes
- client_identifier
The Azure client (application) identifier.
- tenant_identifier
The Azure tenant identifier.
ConnectorConfigurationProperty
- class CfnConnectorPropsMixin.ConnectorConfigurationProperty(*, azure=None)
Bases:
objectThe configuration for the connector.
Specify the third-party cloud provider configuration.
- Parameters:
azure (
Union[IResolvable,AzureConnectorConfigurationProperty,Dict[str,Any],None]) – Configuration for connecting to Microsoft Azure.- See:
- 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.cfn_property_mixins import aws_config as config connector_configuration_property = config.CfnConnectorPropsMixin.ConnectorConfigurationProperty( azure=config.CfnConnectorPropsMixin.AzureConnectorConfigurationProperty( client_identifier="clientIdentifier", tenant_identifier="tenantIdentifier" ) )
Attributes
- azure
Configuration for connecting to Microsoft Azure.