Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IInboundExternalLinkRef ¶ added in v2.225.0
type IInboundExternalLinkRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a InboundExternalLink resource.
// Experimental.
InboundExternalLinkRef() *InboundExternalLinkReference
}
Indicates that this resource can be referenced as a InboundExternalLink. Experimental.
type ILinkRef ¶
type ILinkRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Link resource.
// Experimental.
LinkRef() *LinkReference
}
Indicates that this resource can be referenced as a Link. Experimental.
type IRequesterGatewayRef ¶
type IRequesterGatewayRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a RequesterGateway resource.
// Experimental.
RequesterGatewayRef() *RequesterGatewayReference
}
Indicates that this resource can be referenced as a RequesterGateway. Experimental.
type IResponderGatewayRef ¶
type IResponderGatewayRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ResponderGateway resource.
// Experimental.
ResponderGatewayRef() *ResponderGatewayReference
}
Indicates that this resource can be referenced as a ResponderGateway. Experimental.
type InboundExternalLinkReference ¶ added in v2.225.0
type InboundExternalLinkReference struct {
// The Arn of the InboundExternalLink resource.
InboundExternalLinkArn *string `field:"required" json:"inboundExternalLinkArn" yaml:"inboundExternalLinkArn"`
}
A reference to a InboundExternalLink 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"
inboundExternalLinkReference := &InboundExternalLinkReference{
InboundExternalLinkArn: jsii.String("inboundExternalLinkArn"),
}
type LinkReference ¶
type LinkReference struct {
// The Arn of the Link resource.
LinkArn *string `field:"required" json:"linkArn" yaml:"linkArn"`
}
A reference to a Link 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"
linkReference := &LinkReference{
LinkArn: jsii.String("linkArn"),
}
type RequesterGatewayReference ¶
type RequesterGatewayReference struct {
// The Arn of the RequesterGateway resource.
RequesterGatewayArn *string `field:"required" json:"requesterGatewayArn" yaml:"requesterGatewayArn"`
}
A reference to a RequesterGateway 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"
requesterGatewayReference := &RequesterGatewayReference{
RequesterGatewayArn: jsii.String("requesterGatewayArn"),
}
type ResponderGatewayReference ¶
type ResponderGatewayReference struct {
// The Arn of the ResponderGateway resource.
ResponderGatewayArn *string `field:"required" json:"responderGatewayArn" yaml:"responderGatewayArn"`
}
A reference to a ResponderGateway 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"
responderGatewayReference := &ResponderGatewayReference{
ResponderGatewayArn: jsii.String("responderGatewayArn"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.