All Products
Search
Document Center

Resource Orchestration Service:SAE resources

Last Updated:Jun 22, 2026

Lists the AssociationProperty values available for Serverless App Engine (SAE) resources in ROS templates.

AssociationProperty value

Description

Corresponding AssociationPropertyMetadata

ALIYUN::SAE::Namespace::NamespaceId

Namespace.

Examples:

  • Example code

    JSON example:

    {
      "ROSTemplateFormatVersion": "2015-09-01",
      "Parameters": {
        "RegionId": {
          "Type": "String",
          "AssociationProperty": "ALIYUN::ECS::RegionId"
        },
        "NamespaceId": {
          "Type": "String",
          "AssociationProperty": "ALIYUN::SAE::Namespace::NamespaceId",
          "AssociationPropertyMetadata": {
            "RegionId": "${RegionId}"
          }
        }
      }
    }

    YAML example:

    ROSTemplateFormatVersion: "2015-09-01"
    Parameters:
      RegionId:
        Type: String
        AssociationProperty: ALIYUN::ECS::RegionId
      NamespaceId:
        Type: String
        AssociationProperty: ALIYUN::SAE::Namespace::NamespaceId
        AssociationPropertyMetadata:
          RegionId: ${RegionId}
  • Example explanation

    Sets the AssociationProperty of NamespaceId to ALIYUN::SAE::Namespace::NamespaceId, which retrieves namespaces in the specified region.