interface CfnRuleGroupsNamespaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.APS.CfnRuleGroupsNamespaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsaps#CfnRuleGroupsNamespaceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.aps.CfnRuleGroupsNamespaceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_aps.CfnRuleGroupsNamespaceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_aps » 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 { aws_aps as aps } from '@aws-cdk/cfn-property-mixins';
const cfnRuleGroupsNamespaceMixinProps: aps.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