Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CustomActionTypeReference ¶
type CustomActionTypeReference struct {
// The Category of the CustomActionType resource.
Category *string `field:"required" json:"category" yaml:"category"`
// The Provider of the CustomActionType resource.
Provider *string `field:"required" json:"provider" yaml:"provider"`
// The Version of the CustomActionType resource.
Version *string `field:"required" json:"version" yaml:"version"`
}
A reference to a CustomActionType 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"
customActionTypeReference := &CustomActionTypeReference{
Category: jsii.String("category"),
Provider: jsii.String("provider"),
Version: jsii.String("version"),
}
type ICustomActionTypeRef ¶
type ICustomActionTypeRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a CustomActionType resource.
// Experimental.
CustomActionTypeRef() *CustomActionTypeReference
}
Indicates that this resource can be referenced as a CustomActionType. Experimental.
type IPipelineRef ¶
type IPipelineRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Pipeline resource.
// Experimental.
PipelineRef() *PipelineReference
}
Indicates that this resource can be referenced as a Pipeline. Experimental.
type IWebhookRef ¶
type IWebhookRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Webhook resource.
// Experimental.
WebhookRef() *WebhookReference
}
Indicates that this resource can be referenced as a Webhook. Experimental.
type PipelineReference ¶
type PipelineReference struct {
// The Name of the Pipeline resource.
PipelineName *string `field:"required" json:"pipelineName" yaml:"pipelineName"`
}
A reference to a Pipeline 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"
pipelineReference := &PipelineReference{
PipelineName: jsii.String("pipelineName"),
}
type WebhookReference ¶
type WebhookReference struct {
// The Id of the Webhook resource.
WebhookId *string `field:"required" json:"webhookId" yaml:"webhookId"`
}
A reference to a Webhook 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"
webhookReference := &WebhookReference{
WebhookId: jsii.String("webhookId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.