Show / Hide Table of Contents

Class CfnConnector.ConnectorProvisioningConfigProperty

Contains information about the configuration of the connector being registered.

Inheritance
object
CfnConnector.ConnectorProvisioningConfigProperty
Implements
CfnConnector.IConnectorProvisioningConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppFlow
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConnector.ConnectorProvisioningConfigProperty : CfnConnector.IConnectorProvisioningConfigProperty
Syntax (vb)
Public Class CfnConnector.ConnectorProvisioningConfigProperty Implements CfnConnector.IConnectorProvisioningConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connector-connectorprovisioningconfig.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.AWS.AppFlow;

             var connectorProvisioningConfigProperty = new ConnectorProvisioningConfigProperty {
                 Lambda = new LambdaConnectorProvisioningConfigProperty {
                     LambdaArn = "lambdaArn"
                 }
             };

Synopsis

Constructors

ConnectorProvisioningConfigProperty()

Contains information about the configuration of the connector being registered.

Properties

Lambda

Contains information about the configuration of the lambda which is being registered as the connector.

Constructors

ConnectorProvisioningConfigProperty()

Contains information about the configuration of the connector being registered.

public ConnectorProvisioningConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connector-connectorprovisioningconfig.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.AWS.AppFlow;

             var connectorProvisioningConfigProperty = new ConnectorProvisioningConfigProperty {
                 Lambda = new LambdaConnectorProvisioningConfigProperty {
                     LambdaArn = "lambdaArn"
                 }
             };

Properties

Lambda

Contains information about the configuration of the lambda which is being registered as the connector.

public object? Lambda { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connector-connectorprovisioningconfig.html#cfn-appflow-connector-connectorprovisioningconfig-lambda

Type union: either IResolvable or CfnConnector.ILambdaConnectorProvisioningConfigProperty

Implements

CfnConnector.IConnectorProvisioningConfigProperty
Back to top Generated by DocFX