Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccountAliasReference ¶
type AccountAliasReference struct {
// The AccountAliasResourceId of the AccountAlias resource.
AccountAliasResourceId *string `field:"required" json:"accountAliasResourceId" yaml:"accountAliasResourceId"`
}
A reference to a AccountAlias 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"
accountAliasReference := &AccountAliasReference{
AccountAliasResourceId: jsii.String("accountAliasResourceId"),
}
type IAccountAliasRef ¶
type IAccountAliasRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a AccountAlias resource.
// Experimental.
AccountAliasRef() *AccountAliasReference
}
Indicates that this resource can be referenced as a AccountAlias. 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 ISlackWorkspaceConfigurationRef ¶
type ISlackWorkspaceConfigurationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a SlackWorkspaceConfiguration resource.
// Experimental.
SlackWorkspaceConfigurationRef() *SlackWorkspaceConfigurationReference
}
Indicates that this resource can be referenced as a SlackWorkspaceConfiguration. Experimental.
type SlackChannelConfigurationReference ¶
type SlackChannelConfigurationReference struct {
// The ChannelId of the SlackChannelConfiguration resource.
ChannelId *string `field:"required" json:"channelId" yaml:"channelId"`
// The TeamId of the SlackChannelConfiguration resource.
TeamId *string `field:"required" json:"teamId" yaml:"teamId"`
}
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{
ChannelId: jsii.String("channelId"),
TeamId: jsii.String("teamId"),
}
type SlackWorkspaceConfigurationReference ¶
type SlackWorkspaceConfigurationReference struct {
// The TeamId of the SlackWorkspaceConfiguration resource.
TeamId *string `field:"required" json:"teamId" yaml:"teamId"`
}
A reference to a SlackWorkspaceConfiguration 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"
slackWorkspaceConfigurationReference := &SlackWorkspaceConfigurationReference{
TeamId: jsii.String("teamId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.