Class CfnConnector.ConnectorProvisioningConfigProperty
Contains information about the configuration of the connector being registered.
Implements
Inherited Members
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
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
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; }