Show / Hide Table of Contents

Class CfnConnectorPropsMixin.ConnectorConfigurationProperty

The configuration for the connector.

Inheritance
object
CfnConnectorPropsMixin.ConnectorConfigurationProperty
Implements
CfnConnectorPropsMixin.IConnectorConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-connector-connectorconfiguration.html

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-connector-connectorconfiguration.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-connector-connectorconfiguration.html#cfn-config-connector-connectorconfiguration-azure

Type union: either IResolvable or CfnConnectorPropsMixin.IAzureConnectorConfigurationProperty

Implements

CfnConnectorPropsMixin.IConnectorConfigurationProperty
Back to top Generated by DocFX