Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type INamespaceRef ¶
type INamespaceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Namespace resource.
// Experimental.
NamespaceRef() *NamespaceReference
}
Indicates that this resource can be referenced as a Namespace. Experimental.
type ITableBucketPolicyRef ¶
type ITableBucketPolicyRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a TableBucketPolicy resource.
// Experimental.
TableBucketPolicyRef() *TableBucketPolicyReference
}
Indicates that this resource can be referenced as a TableBucketPolicy. Experimental.
type ITableBucketRef ¶
type ITableBucketRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a TableBucket resource.
// Experimental.
TableBucketRef() *TableBucketReference
}
Indicates that this resource can be referenced as a TableBucket. Experimental.
type ITablePolicyRef ¶
type ITablePolicyRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a TablePolicy resource.
// Experimental.
TablePolicyRef() *TablePolicyReference
}
Indicates that this resource can be referenced as a TablePolicy. 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 NamespaceReference ¶
type NamespaceReference struct {
// The Namespace of the Namespace resource.
Namespace *string `field:"required" json:"namespace" yaml:"namespace"`
// The TableBucketARN of the Namespace resource.
TableBucketArn *string `field:"required" json:"tableBucketArn" yaml:"tableBucketArn"`
}
A reference to a Namespace 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"
namespaceReference := &NamespaceReference{
Namespace: jsii.String("namespace"),
TableBucketArn: jsii.String("tableBucketArn"),
}
type TableBucketPolicyReference ¶
type TableBucketPolicyReference struct {
// The TableBucketARN of the TableBucketPolicy resource.
TableBucketArn *string `field:"required" json:"tableBucketArn" yaml:"tableBucketArn"`
}
A reference to a TableBucketPolicy 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"
tableBucketPolicyReference := &TableBucketPolicyReference{
TableBucketArn: jsii.String("tableBucketArn"),
}
type TableBucketReference ¶
type TableBucketReference struct {
// The TableBucketARN of the TableBucket resource.
TableBucketArn *string `field:"required" json:"tableBucketArn" yaml:"tableBucketArn"`
}
A reference to a TableBucket 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"
tableBucketReference := &TableBucketReference{
TableBucketArn: jsii.String("tableBucketArn"),
}
type TablePolicyReference ¶
type TablePolicyReference struct {
// The TableARN of the TablePolicy resource.
TableArn *string `field:"required" json:"tableArn" yaml:"tableArn"`
}
A reference to a TablePolicy 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"
tablePolicyReference := &TablePolicyReference{
TableArn: jsii.String("tableArn"),
}
type TableReference ¶
type TableReference struct {
// The TableARN of the Table resource.
TableArn *string `field:"required" json:"tableArn" yaml:"tableArn"`
}
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"),
}