Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ExperimentReference ¶
type ExperimentReference struct {
// The Arn of the Experiment resource.
ExperimentArn *string `field:"required" json:"experimentArn" yaml:"experimentArn"`
}
A reference to a Experiment 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"
experimentReference := &ExperimentReference{
ExperimentArn: jsii.String("experimentArn"),
}
type FeatureReference ¶
type FeatureReference struct {
// The Arn of the Feature resource.
FeatureArn *string `field:"required" json:"featureArn" yaml:"featureArn"`
}
A reference to a Feature 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"
featureReference := &FeatureReference{
FeatureArn: jsii.String("featureArn"),
}
type IExperimentRef ¶
type IExperimentRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Experiment resource.
// Experimental.
ExperimentRef() *ExperimentReference
}
Indicates that this resource can be referenced as a Experiment. Experimental.
type IFeatureRef ¶
type IFeatureRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Feature resource.
// Experimental.
FeatureRef() *FeatureReference
}
Indicates that this resource can be referenced as a Feature. Experimental.
type ILaunchRef ¶
type ILaunchRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Launch resource.
// Experimental.
LaunchRef() *LaunchReference
}
Indicates that this resource can be referenced as a Launch. Experimental.
type IProjectRef ¶
type IProjectRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Project resource.
// Experimental.
ProjectRef() *ProjectReference
}
Indicates that this resource can be referenced as a Project. Experimental.
type ISegmentRef ¶
type ISegmentRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Segment resource.
// Experimental.
SegmentRef() *SegmentReference
}
Indicates that this resource can be referenced as a Segment. Experimental.
type LaunchReference ¶
type LaunchReference struct {
// The Arn of the Launch resource.
LaunchArn *string `field:"required" json:"launchArn" yaml:"launchArn"`
}
A reference to a Launch 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"
launchReference := &LaunchReference{
LaunchArn: jsii.String("launchArn"),
}
type ProjectReference ¶
type ProjectReference struct {
// The Arn of the Project resource.
ProjectArn *string `field:"required" json:"projectArn" yaml:"projectArn"`
}
A reference to a Project 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"
projectReference := &ProjectReference{
ProjectArn: jsii.String("projectArn"),
}
type SegmentReference ¶
type SegmentReference struct {
// The Arn of the Segment resource.
SegmentArn *string `field:"required" json:"segmentArn" yaml:"segmentArn"`
}
A reference to a Segment 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"
segmentReference := &SegmentReference{
SegmentArn: jsii.String("segmentArn"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.