interface CloudConnectorConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSM.CfnCloudConnector.CloudConnectorConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnCloudConnector_CloudConnectorConfigurationProperty |
Java | software.amazon.awscdk.services.ssm.CfnCloudConnector.CloudConnectorConfigurationProperty |
Python | aws_cdk.aws_ssm.CfnCloudConnector.CloudConnectorConfigurationProperty |
TypeScript | aws-cdk-lib » aws_ssm » CfnCloudConnector » CloudConnectorConfigurationProperty |
The configuration for the cloud connector.
Currently supports 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 cloudConnectorConfigurationProperty: ssm.CfnCloudConnector.CloudConnectorConfigurationProperty = {
azureConfiguration: {
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 |
|---|---|---|
| azure | IResolvable | Azure | Configuration for connecting to Azure. |
azureConfiguration
Type:
IResolvable | Azure
Configuration for connecting to Azure.

.NET
Go
Java
Python
TypeScript