interface CfnRuleGroupsNamespaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.APS.Mixins.CfnRuleGroupsNamespaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsaps/mixins#CfnRuleGroupsNamespaceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.aps.mixins.CfnRuleGroupsNamespaceMixinProps |
Python | aws_cdk.mixins_preview.aws_aps.mixins.CfnRuleGroupsNamespaceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_aps » mixins » CfnRuleGroupsNamespaceMixinProps |
Properties for CfnRuleGroupsNamespacePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as aps_mixins } from '@aws-cdk/mixins-preview/aws-aps';
const cfnRuleGroupsNamespaceMixinProps: aps_mixins.CfnRuleGroupsNamespaceMixinProps = {
data: 'data',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
workspace: 'workspace',
};
Properties
| Name | Type | Description |
|---|---|---|
| data? | string | The rules file used in the namespace. |
| name? | string | The name of the rule groups namespace. |
| tags? | Cfn[] | The list of tag keys and values that are associated with the rule groups namespace. |
| workspace? | string | The ID of the workspace to add the rule groups namespace. |
data?
Type:
string
(optional)
The rules file used in the namespace.
For more details about the rules file, see Creating a rules file in the Amazon Managed Service for Prometheus User Guide .
name?
Type:
string
(optional)
The name of the rule groups namespace.
tags?
Type:
Cfn[]
(optional)
The list of tag keys and values that are associated with the rule groups namespace.
workspace?
Type:
string
(optional)
The ID of the workspace to add the rule groups namespace.

.NET
Go
Java
Python
TypeScript