Class CfnCloudConnector.AzureSubscriptionProperty
An Azure subscription with its ID and optional display name.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SSM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCloudConnector.AzureSubscriptionProperty : CfnCloudConnector.IAzureSubscriptionProperty
Syntax (vb)
Public Class CfnCloudConnector.AzureSubscriptionProperty Implements CfnCloudConnector.IAzureSubscriptionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SSM;
var azureSubscriptionProperty = new AzureSubscriptionProperty {
Id = "id",
// the properties below are optional
DisplayName = "displayName"
};
Synopsis
Constructors
| AzureSubscriptionProperty() | An Azure subscription with its ID and optional display name. |
Properties
| DisplayName | The display name of the Azure subscription. |
| Id | The Azure subscription ID. |
Constructors
AzureSubscriptionProperty()
An Azure subscription with its ID and optional display name.
public AzureSubscriptionProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SSM;
var azureSubscriptionProperty = new AzureSubscriptionProperty {
Id = "id",
// the properties below are optional
DisplayName = "displayName"
};
Properties
DisplayName
The display name of the Azure subscription.
public string? DisplayName { get; set; }
Property Value
Remarks
Id
The Azure subscription ID.
public string Id { get; set; }