---
title: "CreateAppRequest"
slug: "common-vapidatatype-createapprequest"
updated: 2026-04-23T08:54:51Z
published: 2026-04-23T09:01:57Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://api.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# CreateAppRequest

<p class="platform-info type-vpc">VPC 환경에서 이용 가능합니다.</p>

## 설명<a name="설명"></a>

Data Forest 앱 생성 시 사용하는 데이터 타입입니다.

## 구문<a name="구문"></a>
구문은 다음과 같습니다.

```Java
private String accountId;
private String queueName;
private String appTypeId;
private String name;
private Integer lifetime;
private String description;
private String dependentIds;
private AppComponentRequest components;

```

## 필드<a name="필드"></a>
필드에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| ---------- | ---------- | ----- | ----- |
| `accountId` | String | Required | 계정 식별자 UUID (base62)|
| `queueName` | String | Required |  YARN 큐 이름 <ul><li>dev (기본값)</li></ul> |
| `appTypeId` | String | Required |  앱 타입 |
| `name` | String | Required |  앱 이름 |
| `lifetime` | Integer | Required |  앱 구동 시간 |
| `description` | String | Optional |  앱 설명 |
| `dependentIds` | String | Optional |  앱을 생성하기 위해 필요한 의존 앱 ID 목록  |
| `components` | [AppComponentRequest](/docs/common-vapidatatype-appcomponentrequest) | Optional |  AppComponentRequest 데이터 타입  |
