Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DefaultViewAssociationReference ¶
type DefaultViewAssociationReference struct {
// The AssociatedAwsPrincipal of the DefaultViewAssociation resource.
AssociatedAwsPrincipal *string `field:"required" json:"associatedAwsPrincipal" yaml:"associatedAwsPrincipal"`
}
A reference to a DefaultViewAssociation 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"
defaultViewAssociationReference := &DefaultViewAssociationReference{
AssociatedAwsPrincipal: jsii.String("associatedAwsPrincipal"),
}
type IDefaultViewAssociationRef ¶
type IDefaultViewAssociationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DefaultViewAssociation resource.
// Experimental.
DefaultViewAssociationRef() *DefaultViewAssociationReference
}
Indicates that this resource can be referenced as a DefaultViewAssociation. 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 IViewRef ¶
type IViewRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a View resource.
// Experimental.
ViewRef() *ViewReference
}
Indicates that this resource can be referenced as a View. Experimental.
type IndexReference ¶
type IndexReference struct {
// The Arn 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 ViewReference ¶
type ViewReference struct {
// The ViewArn of the View resource.
ViewArn *string `field:"required" json:"viewArn" yaml:"viewArn"`
}
A reference to a View 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"
viewReference := &ViewReference{
ViewArn: jsii.String("viewArn"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.