@@ -66,11 +66,11 @@ Resources:
6666 - [Aliyun::Serverless::Function](#aliyunserverlessfunction)
6767- [Aliyun::Serverless::CustomDomain](#aliyunserverlesscustomdomain)
6868- [Aliyun::Serverless::Api](#aliyunserverlessapi)
69- - [Aliyun:Serverless::TableStore](#aliyunserverlesstablestore)
69+ - [Aliyun:: Serverless::TableStore](#aliyunserverlesstablestore)
7070 - [Aliyun:Serverless::TableStore::Table](#aliyunserverlesstablestoretable)
71- - [Aliyun:Serverless::Log](#aliyunserverlesslog)
72- - [Aliyun:Serverless::Log::Logstore](#aliyunserverlessloglogstore)
73- - [Aliyun:Serverless::MNSTopic](#aliyunserverlessmnstopic)
71+ - [Aliyun:: Serverless::Log](#aliyunserverlesslog)
72+ - [Aliyun:: Serverless::Log::Logstore](#aliyunserverlessloglogstore)
73+ - [Aliyun:: Serverless::MNSTopic](#aliyunserverlessmnstopic)
7474
7575#### Aliyun::Serverless::Service
7676
@@ -206,6 +206,40 @@ mytablestore: # tablestore name
206206 Type: STRING
207207` ` `
208208
209+ # ### Aliyun::Serverless::Log
210+
211+ ` Aliyun::Serverless::Log` 资源创建日志服务的 [项目(Project)](https://help.aliyun.com/document_detail/48873.html)。
212+
213+ # #### 属性
214+ 属性名称 | 类型 | 描述
215+ ---|:---:|---
216+ Description | `string` | **必填。** 实例注释。
217+
218+ # #### Aliyun::Serverless::Log::Logstore
219+
220+ ` Aliyun::Serverless::Log::Logstore` 资源用于创建项目(Project)下的 [日志库(Logstore)](https://help.aliyun.com/document_detail/48874.html)。
221+
222+ # ##### 属性
223+
224+ 属性名称 | 类型 | 描述
225+ ---|:---:|---
226+ TTL | `integer` | 数据的保存时间,单位为天,范围 1~3600。
227+ shardCount | `integer` | Shard 个数,单位为个,范围为 1~100。
228+
229+ # ### 示例:Aliyun::Serverless::Log
230+
231+ ` ` ` yaml
232+ test-log-project:
233+ Type: 'Aliyun::Serverless::Log'
234+ Properties:
235+ Description: 'just test log'
236+ test-log-store:
237+ Type: 'Aliyun::Serverless::Log::Logstore'
238+ Properties:
239+ TTL: 10
240+ ShardCount: 1
241+ ` ` `
242+
209243# ### Aliyun::Serverless::MNSTopic
210244
211245创建消息服务 MNS 中的 topic
0 commit comments