Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EnabledBaselineReference ¶
type EnabledBaselineReference struct {
// The EnabledBaselineIdentifier of the EnabledBaseline resource.
EnabledBaselineIdentifier *string `field:"required" json:"enabledBaselineIdentifier" yaml:"enabledBaselineIdentifier"`
}
A reference to a EnabledBaseline 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"
enabledBaselineReference := &EnabledBaselineReference{
EnabledBaselineIdentifier: jsii.String("enabledBaselineIdentifier"),
}
type EnabledControlReference ¶
type EnabledControlReference struct {
// The ControlIdentifier of the EnabledControl resource.
ControlIdentifier *string `field:"required" json:"controlIdentifier" yaml:"controlIdentifier"`
// The TargetIdentifier of the EnabledControl resource.
TargetIdentifier *string `field:"required" json:"targetIdentifier" yaml:"targetIdentifier"`
}
A reference to a EnabledControl 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"
enabledControlReference := &EnabledControlReference{
ControlIdentifier: jsii.String("controlIdentifier"),
TargetIdentifier: jsii.String("targetIdentifier"),
}
type IEnabledBaselineRef ¶
type IEnabledBaselineRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a EnabledBaseline resource.
// Experimental.
EnabledBaselineRef() *EnabledBaselineReference
}
Indicates that this resource can be referenced as a EnabledBaseline. Experimental.
type IEnabledControlRef ¶
type IEnabledControlRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a EnabledControl resource.
// Experimental.
EnabledControlRef() *EnabledControlReference
}
Indicates that this resource can be referenced as a EnabledControl. Experimental.
type ILandingZoneRef ¶
type ILandingZoneRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LandingZone resource.
// Experimental.
LandingZoneRef() *LandingZoneReference
}
Indicates that this resource can be referenced as a LandingZone. Experimental.
type LandingZoneReference ¶
type LandingZoneReference struct {
// The ARN of the LandingZone resource.
LandingZoneArn *string `field:"required" json:"landingZoneArn" yaml:"landingZoneArn"`
// The LandingZoneIdentifier of the LandingZone resource.
LandingZoneIdentifier *string `field:"required" json:"landingZoneIdentifier" yaml:"landingZoneIdentifier"`
}
A reference to a LandingZone 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"
landingZoneReference := &LandingZoneReference{
LandingZoneArn: jsii.String("landingZoneArn"),
LandingZoneIdentifier: jsii.String("landingZoneIdentifier"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.