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

Resource Orchestration Service:ALIYUN::PAIPlugin::Signature

最終更新日:Mar 17, 2025

ALIYUN::PAIPlugin::Signature は、署名を登録するために使用されます。

構文

{
  "Type": "ALIYUN::PAIPlugin::Signature",
  "Properties": {
    "Name": String,
    "Description": String
  }
}

プロパティ

プロパティ

タイプ

必須

編集可能

説明

制約

Name

String

はい

いいえ

署名の名前。

なし。

Description

String

いいえ

いいえ

送信するアプリケーションの説明。

なし。

戻り値

Fn::GetAtt

  • CreatedTime: 作成時間。時間は UTC + 08:00 で表示されます。

  • Description: 送信されるアプリケーションの説明。

  • Id: 署名の ID。

  • Reason: レビューの提案。

  • Name: 署名の名前。

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  Name:
    Type: String
    Description:
      en: The name of the Signature.
    Required: true
Resources:
  ExtensionResource:
    Type: ALIYUN::PAIPlugin::Signature
    Properties:
      Name:
        Ref: Name
Outputs:
  CreatedTime:
    Description: The creation time of the Signature.
    Value:
      Fn::GetAtt:
        - ExtensionResource
        - CreatedTime
  Description:
    Description: Application instructions.
    Value:
      Fn::GetAtt:
        - ExtensionResource
        - Description
  Id:
    Description: The ID of the Signature.
    Value:
      Fn::GetAtt:
        - ExtensionResource
        - Id
  Reason:
    Description: Review recommendations.
    Value:
      Fn::GetAtt:
        - ExtensionResource
        - Reason
  Name:
    Description: The name of the Signature.
    Value:
      Fn::GetAtt:
        - ExtensionResource
        - Name
{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "Name": {
      "Type": "String",
      "Description": {
        "en": "The name of the Signature."
      },
      "Required": true
    }
  },
  "Resources": {
    "ExtensionResource": {
      "Type": "ALIYUN::PAIPlugin::Signature",
      "Properties": {
        "Name": {
          "Ref": "Name"
        }
      }
    }
  },
  "Outputs": {
    "CreatedTime": {
      "Description": "The creation time of the Signature.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "CreatedTime"
        ]
      }
    },
    "Description": {
      "Description": "Application instructions.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "Description"
        ]
      }
    },
    "Id": {
      "Description": "The ID of the Signature.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "Id"
        ]
      }
    },
    "Reason": {
      "Description": "Review recommendations.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "Reason"
        ]
      }
    },
    "Name": {
      "Description": "The name of the Signature.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "Name"
        ]
      }
    }
  }
}