全部产品
Search
文档中心

资源编排:DATASOURCE::FC::CustomDomains

更新时间:Oct 29, 2024

DATASOURCE::FC::CustomDomains类型用于获取函数服务的自定义域名列表。

语法

{
  "Type": "DATASOURCE::FC::CustomDomains",
  "Properties": {
    "Prefix": String,
    "RefreshOptions": String
  }
}

属性

属性名称

类型

必须

允许更新

描述

约束

Prefix

String

自定义域名的前缀。

名称必须以Prefix作为前缀。例如:Prefix是a,则返回的资源名均以a开始。

RefreshOptions

String

当资源栈更新时,数据源资源的刷新策略。

有效值:

  • Never(默认值):更新堆栈时,从不刷新数据源资源。

  • Always:更新堆栈时,始终刷新数据源资源。

返回数据(Fn::GetAtt)

  • CustomDomains:自定义域名详情列表。

  • DomainNames:域名列表。

属性名称

类型

描述

约束

DomainNames

List

域名列表。

CustomDomains

List

自定义域名详情列表。

DomainName

String

域名。

AccountId

String

账号ID。

Protocol

String

域名支持的协议类型。

取值:

  • HTTP:仅支持HTTP协议。

  • HTTP/HTTPS:支持HTTP及HTTPS协议。

ApiVersion

String

API版本。

CreatedTime

String

域名的创建时间。

LastModifiedTime

String

域名上一次被更新的时间。

CertConfig

Map

HTTPS证书的配置信息。

示例:{ "CertName": "/login/", "Certificate": "-----BEGIN CERTIFICATE----- xxxxx -----END CERTIFICATE-----", "PrivateKey": "-----BEGIN RSA PRIVATE KEY----- xxxxx -----END RSA PRIVATE KEY-----"}

RouteConfig

Map

定义域名访问时Path到Function的映射。

示例:{ "Routes": [ { "FunctionName": "function_name", "Methods": [ "GET" ], "Path": "/login/*", "Qualifier": "test", "ServiceName": "service_name" } ]}

TlsConfig

Map

TLS配置。

示例

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "Prefix": {
      "Type": "String",
      "Description": "Qualified returned custom domain names must be prefixed with Prefix. For example, if the Prefix is \"a\", the returned custom domain names should be started with \"a\"."
    }
  },
  "Resources": {
    "CustomDomains": {
      "Type": "DATASOURCE::FC::CustomDomains",
      "Properties": {
        "Prefix": {
          "Ref": "Prefix"
        }
      }
    }
  },
  "Outputs": {
    "CustomDomains": {
      "Description": "The list of custom_domain.",
      "Value": {
        "Fn::GetAtt": [
          "CustomDomains",
          "CustomDomains"
        ]
      }
    },
    "DomainNames": {
      "Description": "The list of custom_domain names.",
      "Value": {
        "Fn::GetAtt": [
          "CustomDomains",
          "DomainNames"
        ]
      }
    }
  }
}
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  Prefix:
    Type: String
    Description: Qualified returned custom domain names must be prefixed with Prefix. For example, if the Prefix is "a", the returned custom domain names should be started with "a".
Resources:
  CustomDomains:
    Type: DATASOURCE::FC::CustomDomains
    Properties:
      Prefix:
        Ref: Prefix
Outputs:
  CustomDomains:
    Description: The list of custom_domain.
    Value:
      Fn::GetAtt:
        - CustomDomains
        - CustomDomains
  DomainNames:
    Description: The list of custom_domain names.
    Value:
      Fn::GetAtt:
        - CustomDomains
        - DomainNames