すべてのプロダクト
Search
ドキュメントセンター

Resource Orchestration Service:ALIYUN::GA::ドメイン

最終更新日:Mar 17, 2025

ALIYUN::GA::Domain は、ドメイン名を作成するために使用されます。

構文

{
  "Type": "ALIYUN::GA::Domain",
  "Properties": {
    "AcceleratorIds": List,
    "Domain": String
  }
}

プロパティ

プロパティ

タイプ

必須

編集可能

説明

制約

AcceleratorIds

List

はい

いいえ

Global Accelerator (GA) インスタンスの ID。

最大 50 個の ID を指定できます。

Domain

String

はい

いいえ

GA インスタンスに関連付けるドメイン名。

なし。

戻り値

Fn::GetAtt

  • AcceleratorIds: GA インスタンスの ID。

  • Domain: GA インスタンスに関連付けられているドメイン名。

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  AcceleratorIds:
    AssociationPropertyMetadata:
      Parameter:
        Type: String
        Description:
          en: The ID of the GA instance to be disassociated.
        Required: true
    AssociationProperty: List[Parameter]
    Type: Json
    Description:
      en: The IDs of the GA instance to be disassociated. You can specify up to 50 IDs.
    Required: true
    MinLength: 1
    MaxLength: 50
  Domain:
    Type: String
    Description:
      en: The accelerated domain name to be disassociated.
    Required: true
Resources:
  ExtensionResource:
    Type: ALIYUN::GA::Domain
    Properties:
      AcceleratorIds:
        Ref: AcceleratorIds
      Domain:
        Ref: Domain
Outputs:
  AcceleratorIds:
    Description: The IDs of GA instances.
    Value:
      Fn::GetAtt:
        - ExtensionResource
        - AcceleratorIds
  Domain:
    Description: The accelerated domain name.
    Value:
      Fn::GetAtt:
        - ExtensionResource
        - Domain
{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "AcceleratorIds": {
      "AssociationPropertyMetadata": {
        "Parameter": {
          "Type": "String",
          "Description": {
            "en": "The ID of the GA instance to be disassociated."
          },
          "Required": true
        }
      },
      "AssociationProperty": "List[Parameter]",
      "Type": "Json",
      "Description": {
        "en": "The IDs of the GA instance to be disassociated. You can specify up to 50 IDs."
      },
      "Required": true,
      "MinLength": 1,
      "MaxLength": 50
    },
    "Domain": {
      "Type": "String",
      "Description": {
        "en": "The accelerated domain name to be disassociated."
      },
      "Required": true
    }
  },
  "Resources": {
    "ExtensionResource": {
      "Type": "ALIYUN::GA::Domain",
      "Properties": {
        "AcceleratorIds": {
          "Ref": "AcceleratorIds"
        },
        "Domain": {
          "Ref": "Domain"
        }
      }
    }
  },
  "Outputs": {
    "AcceleratorIds": {
      "Description": "GA インスタンスの ID。",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "AcceleratorIds"
        ]
      }
    },
    "Domain": {
      "Description": "高速化ドメイン名。",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "Domain"
        ]
      }
    }
  }
}