interface AzureSubscriptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSM.CfnCloudConnector.AzureSubscriptionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnCloudConnector_AzureSubscriptionProperty |
Java | software.amazon.awscdk.services.ssm.CfnCloudConnector.AzureSubscriptionProperty |
Python | aws_cdk.aws_ssm.CfnCloudConnector.AzureSubscriptionProperty |
TypeScript | aws-cdk-lib » aws_ssm » CfnCloudConnector » AzureSubscriptionProperty |
An Azure subscription with its ID and optional display name.
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 azureSubscriptionProperty: ssm.CfnCloudConnector.AzureSubscriptionProperty = {
id: 'id',
// the properties below are optional
displayName: 'displayName',
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The Azure subscription ID. |
| display | string | The display name of the Azure subscription. |
id
Type:
string
The Azure subscription ID.
displayName?
Type:
string
(optional)
The display name of the Azure subscription.

.NET
Go
Java
Python
TypeScript