interface AzureConnectorConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Config.CfnConnectorPropsMixin.AzureConnectorConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconfig#CfnConnectorPropsMixin_AzureConnectorConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.config.CfnConnectorPropsMixin.AzureConnectorConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_config.CfnConnectorPropsMixin.AzureConnectorConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_config » CfnConnectorPropsMixin » AzureConnectorConfigurationProperty |
Configuration for connecting to Microsoft Azure.
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 azureConnectorConfigurationProperty: config.CfnConnectorPropsMixin.AzureConnectorConfigurationProperty = {
clientIdentifier: 'clientIdentifier',
tenantIdentifier: 'tenantIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | The Azure client (application) identifier. |
| tenant | string | The Azure tenant identifier. |
clientIdentifier?
Type:
string
(optional)
The Azure client (application) identifier.
tenantIdentifier?
Type:
string
(optional)
The Azure tenant identifier.

.NET
Go
Java
Python
TypeScript