Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CapacityReservationReference ¶
type CapacityReservationReference struct {
// The Arn of the CapacityReservation resource.
CapacityReservationArn *string `field:"required" json:"capacityReservationArn" yaml:"capacityReservationArn"`
}
A reference to a CapacityReservation 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"
capacityReservationReference := &CapacityReservationReference{
CapacityReservationArn: jsii.String("capacityReservationArn"),
}
type DataCatalogReference ¶
type DataCatalogReference struct {
// The Name of the DataCatalog resource.
DataCatalogName *string `field:"required" json:"dataCatalogName" yaml:"dataCatalogName"`
}
A reference to a DataCatalog 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"
dataCatalogReference := &DataCatalogReference{
DataCatalogName: jsii.String("dataCatalogName"),
}
type ICapacityReservationRef ¶
type ICapacityReservationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a CapacityReservation resource.
// Experimental.
CapacityReservationRef() *CapacityReservationReference
}
Indicates that this resource can be referenced as a CapacityReservation. Experimental.
type IDataCatalogRef ¶
type IDataCatalogRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DataCatalog resource.
// Experimental.
DataCatalogRef() *DataCatalogReference
}
Indicates that this resource can be referenced as a DataCatalog. Experimental.
type INamedQueryRef ¶
type INamedQueryRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a NamedQuery resource.
// Experimental.
NamedQueryRef() *NamedQueryReference
}
Indicates that this resource can be referenced as a NamedQuery. Experimental.
type IPreparedStatementRef ¶
type IPreparedStatementRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a PreparedStatement resource.
// Experimental.
PreparedStatementRef() *PreparedStatementReference
}
Indicates that this resource can be referenced as a PreparedStatement. Experimental.
type IWorkGroupRef ¶
type IWorkGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a WorkGroup resource.
// Experimental.
WorkGroupRef() *WorkGroupReference
}
Indicates that this resource can be referenced as a WorkGroup. Experimental.
type NamedQueryReference ¶
type NamedQueryReference struct {
// The NamedQueryId of the NamedQuery resource.
NamedQueryId *string `field:"required" json:"namedQueryId" yaml:"namedQueryId"`
}
A reference to a NamedQuery 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"
namedQueryReference := &NamedQueryReference{
NamedQueryId: jsii.String("namedQueryId"),
}
type PreparedStatementReference ¶
type PreparedStatementReference struct {
// The StatementName of the PreparedStatement resource.
StatementName *string `field:"required" json:"statementName" yaml:"statementName"`
// The WorkGroup of the PreparedStatement resource.
WorkGroup *string `field:"required" json:"workGroup" yaml:"workGroup"`
}
A reference to a PreparedStatement 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"
preparedStatementReference := &PreparedStatementReference{
StatementName: jsii.String("statementName"),
WorkGroup: jsii.String("workGroup"),
}
type WorkGroupReference ¶
type WorkGroupReference struct {
// The Name of the WorkGroup resource.
WorkGroupName *string `field:"required" json:"workGroupName" yaml:"workGroupName"`
}
A reference to a WorkGroup 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"
workGroupReference := &WorkGroupReference{
WorkGroupName: jsii.String("workGroupName"),
}