interface CfnConnectorProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Config.CfnConnectorProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconfig#CfnConnectorProps |
Java | software.amazon.awscdk.services.config.CfnConnectorProps |
Python | aws_cdk.aws_config.CfnConnectorProps |
TypeScript | aws-cdk-lib » aws_config » CfnConnectorProps |
Properties for defining a CfnConnector.
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-lib';
const cfnConnectorProps: config.CfnConnectorProps = {
connectorConfiguration: {
azure: {
clientIdentifier: 'clientIdentifier',
tenantIdentifier: 'tenantIdentifier',
},
},
// the properties below are optional
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
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