Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ComponentReference ¶
type ComponentReference struct {
// The AppId of the Component resource.
AppId *string `field:"required" json:"appId" yaml:"appId"`
// The Id of the Component resource.
ComponentId *string `field:"required" json:"componentId" yaml:"componentId"`
// The EnvironmentName of the Component resource.
EnvironmentName *string `field:"required" json:"environmentName" yaml:"environmentName"`
}
A reference to a Component 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"
componentReference := &ComponentReference{
AppId: jsii.String("appId"),
ComponentId: jsii.String("componentId"),
EnvironmentName: jsii.String("environmentName"),
}
type FormReference ¶
type FormReference struct {
// The AppId of the Form resource.
AppId *string `field:"required" json:"appId" yaml:"appId"`
// The EnvironmentName of the Form resource.
EnvironmentName *string `field:"required" json:"environmentName" yaml:"environmentName"`
// The Id of the Form resource.
FormId *string `field:"required" json:"formId" yaml:"formId"`
}
A reference to a Form 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"
formReference := &FormReference{
AppId: jsii.String("appId"),
EnvironmentName: jsii.String("environmentName"),
FormId: jsii.String("formId"),
}
type IComponentRef ¶
type IComponentRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Component resource.
// Experimental.
ComponentRef() *ComponentReference
}
Indicates that this resource can be referenced as a Component. Experimental.
type IFormRef ¶
type IFormRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Form resource.
// Experimental.
FormRef() *FormReference
}
Indicates that this resource can be referenced as a Form. Experimental.
type IThemeRef ¶
type IThemeRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Theme resource.
// Experimental.
ThemeRef() *ThemeReference
}
Indicates that this resource can be referenced as a Theme. Experimental.
type ThemeReference ¶
type ThemeReference struct {
// The AppId of the Theme resource.
AppId *string `field:"required" json:"appId" yaml:"appId"`
// The EnvironmentName of the Theme resource.
EnvironmentName *string `field:"required" json:"environmentName" yaml:"environmentName"`
// The Id of the Theme resource.
ThemeId *string `field:"required" json:"themeId" yaml:"themeId"`
}
A reference to a Theme 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"
themeReference := &ThemeReference{
AppId: jsii.String("appId"),
EnvironmentName: jsii.String("environmentName"),
ThemeId: jsii.String("themeId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.