Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AnomalyDetectorReference ¶
type AnomalyDetectorReference struct {
// The Arn of the AnomalyDetector resource.
AnomalyDetectorArn *string `field:"required" json:"anomalyDetectorArn" yaml:"anomalyDetectorArn"`
}
A reference to a AnomalyDetector 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"
anomalyDetectorReference := &AnomalyDetectorReference{
AnomalyDetectorArn: jsii.String("anomalyDetectorArn"),
}
type IAnomalyDetectorRef ¶
type IAnomalyDetectorRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a AnomalyDetector resource.
// Experimental.
AnomalyDetectorRef() *AnomalyDetectorReference
}
Indicates that this resource can be referenced as a AnomalyDetector. Experimental.
type IResourcePolicyRef ¶
type IResourcePolicyRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ResourcePolicy resource.
// Experimental.
ResourcePolicyRef() *ResourcePolicyReference
}
Indicates that this resource can be referenced as a ResourcePolicy. Experimental.
type IRuleGroupsNamespaceRef ¶
type IRuleGroupsNamespaceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a RuleGroupsNamespace resource.
// Experimental.
RuleGroupsNamespaceRef() *RuleGroupsNamespaceReference
}
Indicates that this resource can be referenced as a RuleGroupsNamespace. Experimental.
type IScraperRef ¶
type IScraperRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Scraper resource.
// Experimental.
ScraperRef() *ScraperReference
}
Indicates that this resource can be referenced as a Scraper. Experimental.
type IWorkspaceRef ¶
type IWorkspaceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Workspace resource.
// Experimental.
WorkspaceRef() *WorkspaceReference
}
Indicates that this resource can be referenced as a Workspace. Experimental.
type ResourcePolicyReference ¶
type ResourcePolicyReference struct {
// The WorkspaceArn of the ResourcePolicy resource.
WorkspaceArn *string `field:"required" json:"workspaceArn" yaml:"workspaceArn"`
}
A reference to a ResourcePolicy 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"
resourcePolicyReference := &ResourcePolicyReference{
WorkspaceArn: jsii.String("workspaceArn"),
}
type RuleGroupsNamespaceReference ¶
type RuleGroupsNamespaceReference struct {
// The Arn of the RuleGroupsNamespace resource.
RuleGroupsNamespaceArn *string `field:"required" json:"ruleGroupsNamespaceArn" yaml:"ruleGroupsNamespaceArn"`
}
A reference to a RuleGroupsNamespace 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"
ruleGroupsNamespaceReference := &RuleGroupsNamespaceReference{
RuleGroupsNamespaceArn: jsii.String("ruleGroupsNamespaceArn"),
}
type ScraperReference ¶
type ScraperReference struct {
// The Arn of the Scraper resource.
ScraperArn *string `field:"required" json:"scraperArn" yaml:"scraperArn"`
}
A reference to a Scraper 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"
scraperReference := &ScraperReference{
ScraperArn: jsii.String("scraperArn"),
}
type WorkspaceReference ¶
type WorkspaceReference struct {
// The Arn of the Workspace resource.
WorkspaceArn *string `field:"required" json:"workspaceArn" yaml:"workspaceArn"`
}
A reference to a Workspace 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"
workspaceReference := &WorkspaceReference{
WorkspaceArn: jsii.String("workspaceArn"),
}