Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DataSourceReference ¶
type DataSourceReference struct {
// The ARN of the DataSource resource.
DataSourceArn *string `field:"required" json:"dataSourceArn" yaml:"dataSourceArn"`
// The Id of the DataSource resource.
DataSourceId *string `field:"required" json:"dataSourceId" yaml:"dataSourceId"`
// The IndexId of the DataSource resource.
IndexId *string `field:"required" json:"indexId" yaml:"indexId"`
}
A reference to a DataSource 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"
dataSourceReference := &DataSourceReference{
DataSourceArn: jsii.String("dataSourceArn"),
DataSourceId: jsii.String("dataSourceId"),
IndexId: jsii.String("indexId"),
}
type FaqReference ¶
type FaqReference struct {
// The ARN of the Faq resource.
FaqArn *string `field:"required" json:"faqArn" yaml:"faqArn"`
// The Id of the Faq resource.
FaqId *string `field:"required" json:"faqId" yaml:"faqId"`
// The IndexId of the Faq resource.
IndexId *string `field:"required" json:"indexId" yaml:"indexId"`
}
A reference to a Faq 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"
faqReference := &FaqReference{
FaqArn: jsii.String("faqArn"),
FaqId: jsii.String("faqId"),
IndexId: jsii.String("indexId"),
}
type IDataSourceRef ¶
type IDataSourceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DataSource resource.
// Experimental.
DataSourceRef() *DataSourceReference
}
Indicates that this resource can be referenced as a DataSource. Experimental.
type IFaqRef ¶
type IFaqRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Faq resource.
// Experimental.
FaqRef() *FaqReference
}
Indicates that this resource can be referenced as a Faq. Experimental.
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 IndexReference ¶
type IndexReference struct {
// The ARN of the Index resource.
IndexArn *string `field:"required" json:"indexArn" yaml:"indexArn"`
// The Id of the Index resource.
IndexId *string `field:"required" json:"indexId" yaml:"indexId"`
}
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"),
IndexId: jsii.String("indexId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.