Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApplicationOutputReference ¶
type ApplicationOutputReference struct {
// The Id of the ApplicationOutput resource.
ApplicationOutputId *string `field:"required" json:"applicationOutputId" yaml:"applicationOutputId"`
}
A reference to a ApplicationOutput 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"
applicationOutputReference := &ApplicationOutputReference{
ApplicationOutputId: jsii.String("applicationOutputId"),
}
type ApplicationReference ¶
type ApplicationReference struct {
// The Id of the Application resource.
ApplicationId *string `field:"required" json:"applicationId" yaml:"applicationId"`
}
A reference to a Application 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"
applicationReference := &ApplicationReference{
ApplicationId: jsii.String("applicationId"),
}
type ApplicationReferenceDataSourceReference ¶
type ApplicationReferenceDataSourceReference struct {
// The Id of the ApplicationReferenceDataSource resource.
ApplicationReferenceDataSourceId *string `field:"required" json:"applicationReferenceDataSourceId" yaml:"applicationReferenceDataSourceId"`
}
A reference to a ApplicationReferenceDataSource 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"
applicationReferenceDataSourceReference := &ApplicationReferenceDataSourceReference{
ApplicationReferenceDataSourceId: jsii.String("applicationReferenceDataSourceId"),
}
type IApplicationOutputRef ¶
type IApplicationOutputRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ApplicationOutput resource.
// Experimental.
ApplicationOutputRef() *ApplicationOutputReference
}
Indicates that this resource can be referenced as a ApplicationOutput. Experimental.
type IApplicationRef ¶
type IApplicationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Application resource.
// Experimental.
ApplicationRef() *ApplicationReference
}
Indicates that this resource can be referenced as a Application. Experimental.
type IApplicationReferenceDataSourceRef ¶
type IApplicationReferenceDataSourceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ApplicationReferenceDataSource resource.
// Experimental.
ApplicationReferenceDataSourceRef() *ApplicationReferenceDataSourceReference
}
Indicates that this resource can be referenced as a ApplicationReferenceDataSource. Experimental.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.