Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApplicationInstanceReference ¶
type ApplicationInstanceReference struct {
// The ARN of the ApplicationInstance resource.
ApplicationInstanceArn *string `field:"required" json:"applicationInstanceArn" yaml:"applicationInstanceArn"`
// The ApplicationInstanceId of the ApplicationInstance resource.
ApplicationInstanceId *string `field:"required" json:"applicationInstanceId" yaml:"applicationInstanceId"`
}
A reference to a ApplicationInstance 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"
applicationInstanceReference := &ApplicationInstanceReference{
ApplicationInstanceArn: jsii.String("applicationInstanceArn"),
ApplicationInstanceId: jsii.String("applicationInstanceId"),
}
type IApplicationInstanceRef ¶
type IApplicationInstanceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ApplicationInstance resource.
// Experimental.
ApplicationInstanceRef() *ApplicationInstanceReference
}
Indicates that this resource can be referenced as a ApplicationInstance. Experimental.
type IPackageRef ¶
type IPackageRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Package resource.
// Experimental.
PackageRef() *PackageReference
}
Indicates that this resource can be referenced as a Package. Experimental.
type IPackageVersionRef ¶
type IPackageVersionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a PackageVersion resource.
// Experimental.
PackageVersionRef() *PackageVersionReference
}
Indicates that this resource can be referenced as a PackageVersion. Experimental.
type PackageReference ¶
type PackageReference struct {
// The ARN of the Package resource.
PackageArn *string `field:"required" json:"packageArn" yaml:"packageArn"`
// The PackageId of the Package resource.
PackageId *string `field:"required" json:"packageId" yaml:"packageId"`
}
A reference to a Package 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"
packageReference := &PackageReference{
PackageArn: jsii.String("packageArn"),
PackageId: jsii.String("packageId"),
}
type PackageVersionReference ¶
type PackageVersionReference struct {
// The PackageId of the PackageVersion resource.
PackageId *string `field:"required" json:"packageId" yaml:"packageId"`
// The PackageVersion of the PackageVersion resource.
PackageVersion *string `field:"required" json:"packageVersion" yaml:"packageVersion"`
// The PatchVersion of the PackageVersion resource.
PatchVersion *string `field:"required" json:"patchVersion" yaml:"patchVersion"`
}
A reference to a PackageVersion 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"
packageVersionReference := &PackageVersionReference{
PackageId: jsii.String("packageId"),
PackageVersion: jsii.String("packageVersion"),
PatchVersion: jsii.String("patchVersion"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.