Class CfnRuleGroupsNamespace
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.aps.CfnRuleGroupsNamespace
- All Implemented Interfaces:
IInspectable,ITaggable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.93.0 (build 1706ca5)",
date="2024-01-03T18:29:22.054Z")
@Stability(Stable)
public class CfnRuleGroupsNamespace
extends CfnResource
implements IInspectable, ITaggable
The
AWS::APS::RuleGroupsNamespace resource creates or updates a rule groups namespace within a Amazon Managed Service for Prometheus workspace.
For more information, see Recording rules and alerting rules .
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.*;
CfnRuleGroupsNamespace cfnRuleGroupsNamespace = CfnRuleGroupsNamespace.Builder.create(this, "MyCfnRuleGroupsNamespace")
.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 ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnRuleGroupsNamespace(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnRuleGroupsNamespace(software.amazon.jsii.JsiiObjectRef objRef) CfnRuleGroupsNamespace(software.constructs.Construct scope, String id, CfnRuleGroupsNamespaceProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe ARN of the rules group namespace.getData()The rules definition file for this namespace.getName()The name of the rule groups namespace.getTags()Tag Manager which manages the tags for this resource.A list of key and value pairs for the workspace resources.The ARN of the workspace that contains this rule groups namespace.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidThe rules definition file for this namespace.voidThe name of the rule groups namespace.voidsetTagsRaw(List<CfnTag> value) A list of key and value pairs for the workspace resources.voidsetWorkspace(String value) The ARN of the workspace that contains this rule groups namespace.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnRuleGroupsNamespace
protected CfnRuleGroupsNamespace(software.amazon.jsii.JsiiObjectRef objRef) -
CfnRuleGroupsNamespace
protected CfnRuleGroupsNamespace(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnRuleGroupsNamespace
@Stability(Stable) public CfnRuleGroupsNamespace(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnRuleGroupsNamespaceProps props) - Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrArn
The ARN of the rules group namespace.For example,
arn:aws:aps:us-west-2:123456789012:rulegroupsnamespace/ws-EXAMPLE-3687-4ac9-853c-EXAMPLEe8f/amp=rules -
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getTags
Tag Manager which manages the tags for this resource. -
getData
The rules definition file for this namespace. -
setData
The rules definition file for this namespace. -
getName
The name of the rule groups namespace. -
setName
The name of the rule groups namespace. -
getWorkspace
The ARN of the workspace that contains this rule groups namespace. -
setWorkspace
The ARN of the workspace that contains this rule groups namespace. -
getTagsRaw
A list of key and value pairs for the workspace resources. -
setTagsRaw
A list of key and value pairs for the workspace resources.
-