Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IIndexRef ¶
type IIndexRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Index resource.
// Experimental.
IndexRef() *IndexReference
}
Indicates that this resource can be referenced as a Index. Experimental.
type IVectorBucketPolicyRef ¶
type IVectorBucketPolicyRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a VectorBucketPolicy resource.
// Experimental.
VectorBucketPolicyRef() *VectorBucketPolicyReference
}
Indicates that this resource can be referenced as a VectorBucketPolicy. Experimental.
type IVectorBucketRef ¶
type IVectorBucketRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a VectorBucket resource.
// Experimental.
VectorBucketRef() *VectorBucketReference
}
Indicates that this resource can be referenced as a VectorBucket. Experimental.
type IndexReference ¶
type IndexReference struct {
// The IndexArn of the Index resource.
IndexArn *string `field:"required" json:"indexArn" yaml:"indexArn"`
}
A reference to a Index 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"
indexReference := &IndexReference{
IndexArn: jsii.String("indexArn"),
}
type VectorBucketPolicyReference ¶
type VectorBucketPolicyReference struct {
// The VectorBucketArn of the VectorBucketPolicy resource.
VectorBucketArn *string `field:"required" json:"vectorBucketArn" yaml:"vectorBucketArn"`
}
A reference to a VectorBucketPolicy 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"
vectorBucketPolicyReference := &VectorBucketPolicyReference{
VectorBucketArn: jsii.String("vectorBucketArn"),
}
type VectorBucketReference ¶
type VectorBucketReference struct {
// The VectorBucketArn of the VectorBucket resource.
VectorBucketArn *string `field:"required" json:"vectorBucketArn" yaml:"vectorBucketArn"`
}
A reference to a VectorBucket 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"
vectorBucketReference := &VectorBucketReference{
VectorBucketArn: jsii.String("vectorBucketArn"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.