Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CustomActionReference ¶
type CustomActionReference struct {
// The CustomActionArn of the CustomAction resource.
CustomActionArn *string `field:"required" json:"customActionArn" yaml:"customActionArn"`
}
A reference to a CustomAction 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"
customActionReference := &CustomActionReference{
CustomActionArn: jsii.String("customActionArn"),
}
type ICustomActionRef ¶
type ICustomActionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a CustomAction resource.
// Experimental.
CustomActionRef() *CustomActionReference
}
Indicates that this resource can be referenced as a CustomAction. Experimental.
type IMicrosoftTeamsChannelConfigurationRef ¶
type IMicrosoftTeamsChannelConfigurationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a MicrosoftTeamsChannelConfiguration resource.
// Experimental.
MicrosoftTeamsChannelConfigurationRef() *MicrosoftTeamsChannelConfigurationReference
}
Indicates that this resource can be referenced as a MicrosoftTeamsChannelConfiguration. Experimental.
type ISlackChannelConfigurationRef ¶
type ISlackChannelConfigurationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a SlackChannelConfiguration resource.
// Experimental.
SlackChannelConfigurationRef() *SlackChannelConfigurationReference
}
Indicates that this resource can be referenced as a SlackChannelConfiguration. Experimental.
type MicrosoftTeamsChannelConfigurationReference ¶
type MicrosoftTeamsChannelConfigurationReference struct {
// The Arn of the MicrosoftTeamsChannelConfiguration resource.
MicrosoftTeamsChannelConfigurationArn *string `field:"required" json:"microsoftTeamsChannelConfigurationArn" yaml:"microsoftTeamsChannelConfigurationArn"`
}
A reference to a MicrosoftTeamsChannelConfiguration 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"
microsoftTeamsChannelConfigurationReference := &MicrosoftTeamsChannelConfigurationReference{
MicrosoftTeamsChannelConfigurationArn: jsii.String("microsoftTeamsChannelConfigurationArn"),
}
type SlackChannelConfigurationReference ¶
type SlackChannelConfigurationReference struct {
// The Arn of the SlackChannelConfiguration resource.
SlackChannelConfigurationArn *string `field:"required" json:"slackChannelConfigurationArn" yaml:"slackChannelConfigurationArn"`
}
A reference to a SlackChannelConfiguration 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"
slackChannelConfigurationReference := &SlackChannelConfigurationReference{
SlackChannelConfigurationArn: jsii.String("slackChannelConfigurationArn"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.