DATASOURCE::EDAS::UserDefineRegions is used to query custom namespaces.

Properties

None.

Return values (Fn::GetAtt)

Property Type Description Constraint
Ids List The IDs of the namespaces. None.
UserDefineRegions List Details of the namespaces. None.
Id Integer The unique identifier of the namespace. None.
RegionName String The display name of the namespace. None.
UserId String The ID of the Alibaba Cloud account to which the namespace belongs. None.
DebugEnable Boolean Indicates whether remote debugging is enabled for the namespace. Valid values:
  • true
  • false
RegionId String The ID of the namespace.
Note The ID cannot be changed after the namespace is created. The ID is in the Region ID:Namespace identifier format.
BelongRegion String The region ID of the namespace. None.

Examples

  • JSON format

    {
      "ROSTemplateFormatVersion": "2015-09-01",
      "Resources": {
        "UserDefineRegions": {
          "Type": "DATASOURCE::EDAS::UserDefineRegions",
          "Properties": {}
        }
      },
      "Outputs": {
        "UserDefineRegions": {
          "Description": "The list of user define regions.",
          "Value": {
            "Fn::GetAtt": [
              "UserDefineRegions",
              "UserDefineRegions"
            ]
          }
        },
        "Ids": {
          "Description": "The list of user define region IDs.",
          "Value": {
            "Fn::GetAtt": [
              "UserDefineRegions",
              "Ids"
            ]
          }
        }
      }
    }
  • YAML format

    ROSTemplateFormatVersion: '2015-09-01'
    Resources:
      UserDefineRegions:
        Type: DATASOURCE::EDAS::UserDefineRegions
        Properties: {}
    Outputs:
      UserDefineRegions:
        Description: The list of user define regions.
        Value:
          Fn::GetAtt:
            - UserDefineRegions
            - UserDefineRegions
      Ids:
        Description: The list of user define region IDs.
        Value:
          Fn::GetAtt:
            - UserDefineRegions
            - Ids