Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ISignalingChannelRef ¶
type ISignalingChannelRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a SignalingChannel resource.
// Experimental.
SignalingChannelRef() *SignalingChannelReference
}
Indicates that this resource can be referenced as a SignalingChannel. Experimental.
type IStreamRef ¶
type IStreamRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Stream resource.
// Experimental.
StreamRef() *StreamReference
}
Indicates that this resource can be referenced as a Stream. Experimental.
type SignalingChannelReference ¶
type SignalingChannelReference struct {
// The ARN of the SignalingChannel resource.
SignalingChannelArn *string `field:"required" json:"signalingChannelArn" yaml:"signalingChannelArn"`
// The Name of the SignalingChannel resource.
SignalingChannelName *string `field:"required" json:"signalingChannelName" yaml:"signalingChannelName"`
}
A reference to a SignalingChannel 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"
signalingChannelReference := &SignalingChannelReference{
SignalingChannelArn: jsii.String("signalingChannelArn"),
SignalingChannelName: jsii.String("signalingChannelName"),
}
type StreamReference ¶
type StreamReference struct {
// The ARN of the Stream resource.
StreamArn *string `field:"required" json:"streamArn" yaml:"streamArn"`
// The Name of the Stream resource.
StreamName *string `field:"required" json:"streamName" yaml:"streamName"`
}
A reference to a Stream 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"
streamReference := &StreamReference{
StreamArn: jsii.String("streamArn"),
StreamName: jsii.String("streamName"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.