Todos os produtos
Search
Central de documentação

Resource Orchestration Service:ALIYUN::VOD::EditingProject

Última atualização: Jun 27, 2026

Cria um projeto de edição online no ApsaraVideo VOD.

Sintaxe

{
  "Type": "ALIYUN::VOD::EditingProject",
  "Properties": {
    "EditingProjectName": String,
    "Timeline": String,
    "Title": String
  }
}

Propriedades

Propriedade

Tipo

Obrigatória

Editável

Descrição

Restrição

EditingProjectName

String

Não

Sim

Nome do projeto de edição online.

Nenhuma.

Timeline

String

Não

Sim

Linha do tempo do projeto de edição online.

Exemplo:

{"VideoTracks":[{"VideoTrackClips":[{"MediaId":"****4d7cf14dc7b83b0e801c****"},{"MediaId":"****4d7cf14dc7b83b0e801c****"}]}]}

Title

String

Sim

Sim

Título do projeto de edição online.

Nenhuma.

Valores de retorno

Fn::GetAtt

  • EditingProjectName: nome do projeto de edição online.

  • Timeline: linha do tempo do projeto de edição online.

  • ModifiedTime: data e hora da última modificação do projeto de edição online.

  • CreateTime: data e hora de criação do projeto de edição online.

  • Title: título do projeto de edição online.

  • EditingProjectId: ID do projeto de edição online.

Exemplos

YAML formato

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  Title:
    Description: The title of the online editing project.
    Type: String
Resources:
  ExtensionResource:
    Properties:
      Title:
        Ref: Title
    Type: ALIYUN::VOD::EditingProject
Outputs:
  CreateTime:
    Description: 'The time when the online editing project was created.

      The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The
      time is displayed in UTC.'
    Value:
      Fn::GetAtt:
      - ExtensionResource
      - CreateTime
  EditingProjectId:
    Description: The ID of the online editing project.
    Value:
      Fn::GetAtt:
      - ExtensionResource
      - EditingProjectId
  EditingProjectName:
    Description: The name of the online editing project.
    Value:
      Fn::GetAtt:
      - ExtensionResource
      - EditingProjectName
  ModifiedTime:
    Description: 'The last time when the online editing project was modified.

      The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The
      time is displayed in UTC.'
    Value:
      Fn::GetAtt:
      - ExtensionResource
      - ModifiedTime
  Timeline:
    Description: The timeline of the online editing project.
    Value:
      Fn::GetAtt:
      - ExtensionResource
      - Timeline
  Title:
    Description: The title of the online editing project.
    Value:
      Fn::GetAtt:
      - ExtensionResource
      - Title

JSON formato

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "Title": {
      "Type": "String",
      "Description": "The title of the online editing project."
    }
  },
  "Resources": {
    "ExtensionResource": {
      "Type": "ALIYUN::VOD::EditingProject",
      "Properties": {
        "Title": {
          "Ref": "Title"
        }
      }
    }
  },
  "Outputs": {
    "EditingProjectName": {
      "Description": "The name of the online editing project.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "EditingProjectName"
        ]
      }
    },
    "Timeline": {
      "Description": "The timeline of the online editing project.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "Timeline"
        ]
      }
    },
    "ModifiedTime": {
      "Description": "The last time when the online editing project was modified.\nThe time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "ModifiedTime"
        ]
      }
    },
    "CreateTime": {
      "Description": "The time when the online editing project was created.\nThe time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "CreateTime"
        ]
      }
    },
    "Title": {
      "Description": "The title of the online editing project.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "Title"
        ]
      }
    },
    "EditingProjectId": {
      "Description": "The ID of the online editing project.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "EditingProjectId"
        ]
      }
    }
  }
}