interface AzureConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSM.CfnCloudConnector.AzureConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnCloudConnector_AzureConfigurationProperty |
Java | software.amazon.awscdk.services.ssm.CfnCloudConnector.AzureConfigurationProperty |
Python | aws_cdk.aws_ssm.CfnCloudConnector.AzureConfigurationProperty |
TypeScript | aws-cdk-lib » aws_ssm » CfnCloudConnector » AzureConfigurationProperty |
Configuration for connecting to Azure.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssm as ssm } from 'aws-cdk-lib';
const azureConfigurationProperty: ssm.CfnCloudConnector.AzureConfigurationProperty = {
applicationId: 'applicationId',
tenantId: 'tenantId',
// the properties below are optional
applicationDisplayName: 'applicationDisplayName',
targets: {
subscriptions: [{
id: 'id',
// the properties below are optional
displayName: 'displayName',
}],
},
tenantDisplayName: 'tenantDisplayName',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The Azure AD application ID. |
| tenant | string | The Azure AD tenant ID. |
| application | string | The display name of the Azure AD application. |
| targets? | IResolvable | Configuration | The targets for the cloud connector. |
| tenant | string | The display name of the Azure AD tenant. |
applicationId
Type:
string
The Azure AD application ID.
tenantId
Type:
string
The Azure AD tenant ID.
Cannot be changed after creation.
applicationDisplayName?
Type:
string
(optional)
The display name of the Azure AD application.
targets?
Type:
IResolvable | Configuration
(optional)
The targets for the cloud connector.
If omitted, the entire tenant is targeted.
tenantDisplayName?
Type:
string
(optional)
The display name of the Azure AD tenant.

.NET
Go
Java
Python
TypeScript