Class CfnCloudConnectorPropsMixin.AzureSubscriptionProperty
An Azure subscription with its ID and optional display name.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SSM
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnCloudConnectorPropsMixin.AzureSubscriptionProperty : CfnCloudConnectorPropsMixin.IAzureSubscriptionProperty
Syntax (vb)
Public Class CfnCloudConnectorPropsMixin.AzureSubscriptionProperty Implements CfnCloudConnectorPropsMixin.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.CfnPropertyMixins.AWS.SSM;
var azureSubscriptionProperty = new AzureSubscriptionProperty {
DisplayName = "displayName",
Id = "id"
};
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.CfnPropertyMixins.AWS.SSM;
var azureSubscriptionProperty = new AzureSubscriptionProperty {
DisplayName = "displayName",
Id = "id"
};
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; }