Class CfnConnectorPropsMixin.ConnectorConfigurationProperty
The configuration for the connector.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Config
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnConnectorPropsMixin.ConnectorConfigurationProperty : CfnConnectorPropsMixin.IConnectorConfigurationProperty
Syntax (vb)
Public Class CfnConnectorPropsMixin.ConnectorConfigurationProperty Implements CfnConnectorPropsMixin.IConnectorConfigurationProperty
Remarks
Specify the third-party cloud provider configuration.
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.Config;
var connectorConfigurationProperty = new ConnectorConfigurationProperty {
Azure = new AzureConnectorConfigurationProperty {
ClientIdentifier = "clientIdentifier",
TenantIdentifier = "tenantIdentifier"
}
};
Synopsis
Constructors
| ConnectorConfigurationProperty() | The configuration for the connector. |
Properties
| Azure | Configuration for connecting to Microsoft Azure. |
Constructors
ConnectorConfigurationProperty()
The configuration for the connector.
public ConnectorConfigurationProperty()
Remarks
Specify the third-party cloud provider configuration.
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.Config;
var connectorConfigurationProperty = new ConnectorConfigurationProperty {
Azure = new AzureConnectorConfigurationProperty {
ClientIdentifier = "clientIdentifier",
TenantIdentifier = "tenantIdentifier"
}
};
Properties
Azure
Configuration for connecting to Microsoft Azure.
public object? Azure { get; set; }