interface AzureSubscriptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSM.CfnCloudConnectorPropsMixin.AzureSubscriptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssm#CfnCloudConnectorPropsMixin_AzureSubscriptionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssm.CfnCloudConnectorPropsMixin.AzureSubscriptionProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssm.CfnCloudConnectorPropsMixin.AzureSubscriptionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssm » CfnCloudConnectorPropsMixin » 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/cfn-property-mixins';
const azureSubscriptionProperty: ssm.CfnCloudConnectorPropsMixin.AzureSubscriptionProperty = {
displayName: 'displayName',
id: 'id',
};
Properties
| Name | Type | Description |
|---|---|---|
| display | string | The display name of the Azure subscription. |
| id? | string | The Azure subscription ID. |
displayName?
Type:
string
(optional)
The display name of the Azure subscription.
id?
Type:
string
(optional)
The Azure subscription ID.

.NET
Go
Java
Python
TypeScript