interface CfnConnectorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Config.CfnConnectorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconfig#CfnConnectorMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.config.CfnConnectorMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_config.CfnConnectorMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_config » CfnConnectorMixinProps |
Properties for CfnConnectorPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-connector.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_config as config } from '@aws-cdk/cfn-property-mixins';
const cfnConnectorMixinProps: config.CfnConnectorMixinProps = {
connectorConfiguration: {
azure: {
clientIdentifier: 'clientIdentifier',
tenantIdentifier: 'tenantIdentifier',
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | IResolvable | Connector | The configuration for the connector. |
| tags? | Cfn[] | The tags for the connector. |
connectorConfiguration?
Type:
IResolvable | Connector
(optional)
The configuration for the connector.
Specify the third-party cloud provider configuration.
tags?
Type:
Cfn[]
(optional)
The tags for the connector.

.NET
Go
Java
Python
TypeScript