Class ConnectorProfileReference
A reference to a ConnectorProfile resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.AppFlow
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ConnectorProfileReference : IConnectorProfileReference
Syntax (vb)
Public Class ConnectorProfileReference Implements IConnectorProfileReference
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.Interfaces.AppFlow;
var connectorProfileReference = new ConnectorProfileReference {
ConnectorProfileArn = "connectorProfileArn",
ConnectorProfileName = "connectorProfileName"
};
Synopsis
Constructors
| ConnectorProfileReference() | A reference to a ConnectorProfile resource. |
Properties
| ConnectorProfileArn | The ARN of the ConnectorProfile resource. |
| ConnectorProfileName | The ConnectorProfileName of the ConnectorProfile resource. |
Constructors
ConnectorProfileReference()
A reference to a ConnectorProfile resource.
public ConnectorProfileReference()
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.Interfaces.AppFlow;
var connectorProfileReference = new ConnectorProfileReference {
ConnectorProfileArn = "connectorProfileArn",
ConnectorProfileName = "connectorProfileName"
};
Properties
ConnectorProfileArn
The ARN of the ConnectorProfile resource.
public string ConnectorProfileArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
ConnectorProfileName
The ConnectorProfileName of the ConnectorProfile resource.
public string ConnectorProfileName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated