Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ILoggingConfigurationRef ¶
type ILoggingConfigurationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LoggingConfiguration resource.
// Experimental.
LoggingConfigurationRef() *LoggingConfigurationReference
}
Indicates that this resource can be referenced as a LoggingConfiguration. Experimental.
type IRoomRef ¶
type IRoomRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Room resource.
// Experimental.
RoomRef() *RoomReference
}
Indicates that this resource can be referenced as a Room. Experimental.
type LoggingConfigurationReference ¶
type LoggingConfigurationReference struct {
// The Arn of the LoggingConfiguration resource.
LoggingConfigurationArn *string `field:"required" json:"loggingConfigurationArn" yaml:"loggingConfigurationArn"`
}
A reference to a LoggingConfiguration 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"
loggingConfigurationReference := &LoggingConfigurationReference{
LoggingConfigurationArn: jsii.String("loggingConfigurationArn"),
}
type RoomReference ¶
type RoomReference struct {
// The Arn of the Room resource.
RoomArn *string `field:"required" json:"roomArn" yaml:"roomArn"`
}
A reference to a Room 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"
roomReference := &RoomReference{
RoomArn: jsii.String("roomArn"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.