Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConnectorProfileReference ¶
type ConnectorProfileReference struct {
// The ARN of the ConnectorProfile resource.
ConnectorProfileArn *string `field:"required" json:"connectorProfileArn" yaml:"connectorProfileArn"`
// The ConnectorProfileName of the ConnectorProfile resource.
ConnectorProfileName *string `field:"required" json:"connectorProfileName" yaml:"connectorProfileName"`
}
A reference to a ConnectorProfile resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
connectorProfileReference := &ConnectorProfileReference{
ConnectorProfileArn: jsii.String("connectorProfileArn"),
ConnectorProfileName: jsii.String("connectorProfileName"),
}
type ConnectorReference ¶
type ConnectorReference struct {
// The ARN of the Connector resource.
ConnectorArn *string `field:"required" json:"connectorArn" yaml:"connectorArn"`
// The ConnectorLabel of the Connector resource.
ConnectorLabel *string `field:"required" json:"connectorLabel" yaml:"connectorLabel"`
}
A reference to a Connector resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
connectorReference := &ConnectorReference{
ConnectorArn: jsii.String("connectorArn"),
ConnectorLabel: jsii.String("connectorLabel"),
}
type FlowReference ¶
type FlowReference struct {
// The ARN of the Flow resource.
FlowArn *string `field:"required" json:"flowArn" yaml:"flowArn"`
// The FlowName of the Flow resource.
FlowName *string `field:"required" json:"flowName" yaml:"flowName"`
}
A reference to a Flow resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
flowReference := &FlowReference{
FlowArn: jsii.String("flowArn"),
FlowName: jsii.String("flowName"),
}
type IConnectorProfileRef ¶
type IConnectorProfileRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ConnectorProfile resource.
// Experimental.
ConnectorProfileRef() *ConnectorProfileReference
}
Indicates that this resource can be referenced as a ConnectorProfile. Experimental.
type IConnectorRef ¶
type IConnectorRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Connector resource.
// Experimental.
ConnectorRef() *ConnectorReference
}
Indicates that this resource can be referenced as a Connector. Experimental.
type IFlowRef ¶
type IFlowRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Flow resource.
// Experimental.
FlowRef() *FlowReference
}
Indicates that this resource can be referenced as a Flow. Experimental.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.