Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GlobalTableReference ¶
type GlobalTableReference struct {
// The ARN of the GlobalTable resource.
GlobalTableArn *string `field:"required" json:"globalTableArn" yaml:"globalTableArn"`
// The TableName of the GlobalTable resource.
TableName *string `field:"required" json:"tableName" yaml:"tableName"`
}
A reference to a GlobalTable 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"
globalTableReference := &GlobalTableReference{
GlobalTableArn: jsii.String("globalTableArn"),
TableName: jsii.String("tableName"),
}
type IGlobalTableRef ¶
type IGlobalTableRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a GlobalTable resource.
// Experimental.
GlobalTableRef() *GlobalTableReference
}
Indicates that this resource can be referenced as a GlobalTable. Experimental.
type IStreamRef ¶ added in v2.262.0
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 ITableRef ¶
type ITableRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Table resource.
// Experimental.
TableRef() *TableReference
}
Indicates that this resource can be referenced as a Table. Experimental.
type StreamReference ¶ added in v2.262.0
type StreamReference struct {
// The ARN of the Stream resource.
StreamArn *string `field:"required" json:"streamArn" yaml:"streamArn"`
// The Id of the Stream resource.
StreamId *string `field:"required" json:"streamId" yaml:"streamId"`
}
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"),
StreamId: jsii.String("streamId"),
}
type TableReference ¶
type TableReference struct {
// The ARN of the Table resource.
TableArn *string `field:"required" json:"tableArn" yaml:"tableArn"`
// The TableName of the Table resource.
TableName *string `field:"required" json:"tableName" yaml:"tableName"`
}
A reference to a Table 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"
tableReference := &TableReference{
TableArn: jsii.String("tableArn"),
TableName: jsii.String("tableName"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.