package awsaps import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnRuleGroupsNamespace`. // // 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" // // cfnRuleGroupsNamespaceProps := &CfnRuleGroupsNamespaceProps{ // Data: jsii.String("data"), // Name: jsii.String("name"), // Workspace: jsii.String("workspace"), // // // the properties below are optional // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-rulegroupsnamespace.html // type CfnRuleGroupsNamespaceProps struct { // The rules definition file for this namespace. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-rulegroupsnamespace.html#cfn-aps-rulegroupsnamespace-data // Data *string `field:"required" json:"data" yaml:"data"` // The name of the rule groups namespace. // // This property is required. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-rulegroupsnamespace.html#cfn-aps-rulegroupsnamespace-name // Name *string `field:"required" json:"name" yaml:"name"` // The ARN of the workspace that contains this rule groups namespace. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-rulegroupsnamespace.html#cfn-aps-rulegroupsnamespace-workspace // Workspace *string `field:"required" json:"workspace" yaml:"workspace"` // A list of key and value pairs for the workspace resources. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-rulegroupsnamespace.html#cfn-aps-rulegroupsnamespace-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }