Interface CfnRuleGroupsNamespaceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuleGroupsNamespaceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.94.0 (build b380f01)",
date="2024-03-14T22:21:50.466Z")
@Stability(Stable)
public interface CfnRuleGroupsNamespaceProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.aps.*;
CfnRuleGroupsNamespaceProps cfnRuleGroupsNamespaceProps = CfnRuleGroupsNamespaceProps.builder()
.data("data")
.name("name")
.workspace("workspace")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRuleGroupsNamespacePropsstatic final classAn implementation forCfnRuleGroupsNamespaceProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getData()The rules file used in the namespace.getName()The name of the rule groups namespace.getTags()The list of tag keys and values that are associated with the rule groups namespace.An Amazon Managed Service for Prometheus workspace is a logical and isolated Prometheus server dedicated to ingesting, storing, and querying your Prometheus-compatible metrics.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getData
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 .
- See Also:
-
getName
The name of the rule groups namespace.- See Also:
-
getWorkspace
An Amazon Managed Service for Prometheus workspace is a logical and isolated Prometheus server dedicated to ingesting, storing, and querying your Prometheus-compatible metrics.- See Also:
-
getTags
The list of tag keys and values that are associated with the rule groups namespace.- See Also:
-
builder
-