All Products
Search
Document Center

Resource Orchestration Service:ALIYUN::ACM::Namespace

Last Updated:Jun 16, 2026

Creates a namespace in Application Configuration Management (ACM).

Syntax

{
  "Type": "ALIYUN::ACM::Namespace",
  "Properties": {
    "Name": String
  }
}

Properties

Property

Type

Required

Editable

Description

Constraint

Name

String

Yes

Yes

The name of the namespace.

None.

Return values

Fn::GetAtt

  • NamespaceId: the ID of the namespace.

  • Endpoint: the endpoint of the namespace.

Examples

YAML format

ROSTemplateFormatVersion: '2015-09-01'
Resources:
  Namespace:
    Type: ALIYUN::ACM::Namespace
    Properties:
      Name: Demo
Parameters: {}
Outputs:
  Endpoint:
    Description: Endpoint
    Value:
      Fn::GetAtt:
        - Namespace
        - Endpoint
  NamespaceId:
    Description: ID namespace
    Value:
      Fn::GetAtt:
        - Namespace
        - NamespaceId

JSON format

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Resources": {
    "Namespace": {
      "Type": "ALIYUN::ACM::Namespace",
      "Properties": {
        "Name": "Demo"
      }
    }
  },
  "Parameters": {
  },
  "Outputs": {
    "Endpoint": {
      "Description": "Endpoint",
      "Value": {
        "Fn::GetAtt": [
          "Namespace",
          "Endpoint"
        ]
      }
    },
    "NamespaceId": {
      "Description": "ID namespace",
      "Value": {
        "Fn::GetAtt": [
          "Namespace",
          "NamespaceId"
        ]
      }
    }
  }
}