Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CollectionReference ¶
type CollectionReference struct {
// The ARN of the Collection resource.
CollectionArn *string `field:"required" json:"collectionArn" yaml:"collectionArn"`
// The CollectionId of the Collection resource.
CollectionId *string `field:"required" json:"collectionId" yaml:"collectionId"`
}
A reference to a Collection 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"
collectionReference := &CollectionReference{
CollectionArn: jsii.String("collectionArn"),
CollectionId: jsii.String("collectionId"),
}
type ICollectionRef ¶
type ICollectionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Collection resource.
// Experimental.
CollectionRef() *CollectionReference
}
Indicates that this resource can be referenced as a Collection. Experimental.
type IProjectRef ¶
type IProjectRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Project resource.
// Experimental.
ProjectRef() *ProjectReference
}
Indicates that this resource can be referenced as a Project. Experimental.
type IStreamProcessorRef ¶
type IStreamProcessorRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a StreamProcessor resource.
// Experimental.
StreamProcessorRef() *StreamProcessorReference
}
Indicates that this resource can be referenced as a StreamProcessor. Experimental.
type ProjectReference ¶
type ProjectReference struct {
// The ARN of the Project resource.
ProjectArn *string `field:"required" json:"projectArn" yaml:"projectArn"`
// The ProjectName of the Project resource.
ProjectName *string `field:"required" json:"projectName" yaml:"projectName"`
}
A reference to a Project 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"
projectReference := &ProjectReference{
ProjectArn: jsii.String("projectArn"),
ProjectName: jsii.String("projectName"),
}
type StreamProcessorReference ¶
type StreamProcessorReference struct {
// The ARN of the StreamProcessor resource.
StreamProcessorArn *string `field:"required" json:"streamProcessorArn" yaml:"streamProcessorArn"`
// The Name of the StreamProcessor resource.
StreamProcessorName *string `field:"required" json:"streamProcessorName" yaml:"streamProcessorName"`
}
A reference to a StreamProcessor 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"
streamProcessorReference := &StreamProcessorReference{
StreamProcessorArn: jsii.String("streamProcessorArn"),
StreamProcessorName: jsii.String("streamProcessorName"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.