Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DiscoveryReference ¶
type DiscoveryReference struct {
// The AccountId of the Discovery resource.
AccountId *string `field:"required" json:"accountId" yaml:"accountId"`
}
A reference to a Discovery 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"
discoveryReference := &DiscoveryReference{
AccountId: jsii.String("accountId"),
}
type GroupingConfigurationReference ¶
type GroupingConfigurationReference struct {
// The AccountId of the GroupingConfiguration resource.
AccountId *string `field:"required" json:"accountId" yaml:"accountId"`
}
A reference to a GroupingConfiguration 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"
groupingConfigurationReference := &GroupingConfigurationReference{
AccountId: jsii.String("accountId"),
}
type IDiscoveryRef ¶
type IDiscoveryRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Discovery resource.
// Experimental.
DiscoveryRef() *DiscoveryReference
}
Indicates that this resource can be referenced as a Discovery. Experimental.
type IGroupingConfigurationRef ¶
type IGroupingConfigurationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a GroupingConfiguration resource.
// Experimental.
GroupingConfigurationRef() *GroupingConfigurationReference
}
Indicates that this resource can be referenced as a GroupingConfiguration. Experimental.
type IServiceLevelObjectiveRef ¶
type IServiceLevelObjectiveRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ServiceLevelObjective resource.
// Experimental.
ServiceLevelObjectiveRef() *ServiceLevelObjectiveReference
}
Indicates that this resource can be referenced as a ServiceLevelObjective. Experimental.
type ServiceLevelObjectiveReference ¶
type ServiceLevelObjectiveReference struct {
// The Arn of the ServiceLevelObjective resource.
ServiceLevelObjectiveArn *string `field:"required" json:"serviceLevelObjectiveArn" yaml:"serviceLevelObjectiveArn"`
}
A reference to a ServiceLevelObjective 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"
serviceLevelObjectiveReference := &ServiceLevelObjectiveReference{
ServiceLevelObjectiveArn: jsii.String("serviceLevelObjectiveArn"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.