Represents the output of a PutRuleGroupsNamespace operation.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-prometheus/refs/heads/main/json-schema/amazon-managed-prometheus-put-rule-groups-namespace-response-schema.json", "title": "PutRuleGroupsNamespaceResponse", "description": "Represents the output of a PutRuleGroupsNamespace operation.", "type": "object", "properties": { "name": { "allOf": [ { "$ref": "#/components/schemas/RuleGroupsNamespaceName" }, { "description": "The rule groups namespace name." } ] }, "arn": { "allOf": [ { "$ref": "#/components/schemas/RuleGroupsNamespaceArn" }, { "description": "The Amazon Resource Name (ARN) of this rule groups namespace." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/RuleGroupsNamespaceStatus" }, { "description": "The status of rule groups namespace." } ] }, "tags": { "allOf": [ { "$ref": "#/components/schemas/TagMap" }, { "description": "The tags of this rule groups namespace." } ] } }, "required": [ "name", "arn", "status" ] }