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 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 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.