DATASOURCE::CloudStorageGateway::StorageBundles类型用于查询指定地域对应的集群列表信息。
语法
{
"Type": "DATASOURCE::CloudStorageGateway::StorageBundles",
"Properties": {
"RefreshOptions": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
RefreshOptions | String | 否 | 是 | 当资源栈更新时,数据源资源的刷新策略。 | 取值:
|
返回值
Fn::GetAtt
StorageBundleIds:网关集群ID列表。
StorageBundles:网关集群信息。
属性名称 | 类型 | 描述 | 约束 |
StorageBundleIds | List | 网关集群ID列表。 | 无 |
StorageBundles | List | 网关集群信息。 | 无 |
Description | String | 网关集群的描述。 | 无 |
StorageBundleId | String | 网关集群ID | 无 |
CreateTime | String | 网关集群创建时间。 | 时间戳为秒(s)。 |
StorageBundleName | String | 网关集群名称。 | 无 |
示例
ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
ExtensionDataSource:
Type: DATASOURCE::CloudStorageGateway::StorageBundles
Properties: {}
Outputs:
StorageBundleIds:
Description: The list of storage bundle IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- StorageBundleIds
StorageBundles:
Description: The list of storage bundles.
Value:
Fn::GetAtt:
- ExtensionDataSource
- StorageBundles
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::CloudStorageGateway::StorageBundles",
"Properties": {
}
}
},
"Outputs": {
"StorageBundleIds": {
"Description": "The list of storage bundle IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"StorageBundleIds"
]
}
},
"StorageBundles": {
"Description": "The list of storage bundles.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"StorageBundles"
]
}
}
}
}
文档内容是否对您有帮助?