interface AzureConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSM.CfnCloudConnectorPropsMixin.AzureConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssm#CfnCloudConnectorPropsMixin_AzureConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssm.CfnCloudConnectorPropsMixin.AzureConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssm.CfnCloudConnectorPropsMixin.AzureConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssm » CfnCloudConnectorPropsMixin » 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/cfn-property-mixins';
const azureConfigurationProperty: ssm.CfnCloudConnectorPropsMixin.AzureConfigurationProperty = {
applicationDisplayName: 'applicationDisplayName',
applicationId: 'applicationId',
targets: {
subscriptions: [{
displayName: 'displayName',
id: 'id',
}],
},
tenantDisplayName: 'tenantDisplayName',
tenantId: 'tenantId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The display name of the Azure AD application. |
| application | string | The Azure AD application ID. |
| targets? | IResolvable | Configuration | The targets for the cloud connector. |
| tenant | string | The display name of the Azure AD tenant. |
| tenant | string | The Azure AD tenant ID. |
applicationDisplayName?
Type:
string
(optional)
The display name of the Azure AD application.
applicationId?
Type:
string
(optional)
The Azure AD application ID.
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.
tenantId?
Type:
string
(optional)
The Azure AD tenant ID.
Cannot be changed after creation.

.NET
Go
Java
Python
TypeScript