日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

DATASOURCE::CDN::Domain

DATASOURCE::CDN::Domain類型用于查詢域名詳情。

語法

{
  "Type": "DATASOURCE::CDN::Domain",
  "Properties": {
    "DomainName": String,
    "RefreshOptions": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

DomainName

String

加速域名信息。

RefreshOptions

String

當資源棧更新時,數據源資源的刷新策略。

有效值:

  • Never(默認值):更新堆棧時,從不刷新數據源資源。

  • Always:更新堆棧時,始終刷新數據源資源。

返回值

Fn::GetAtt

  • ResourceGroupId:資源組ID。

  • Scope:加速區域。

  • DomainName:加速域名信息。

  • CertificateConfig:證書配置。

  • CdnType:加速域名的業務類型。

  • Sources:源站

  • Cname:CNAME 域名

  • Tags:域名綁定的標簽信息。

示例

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  DomainName:
    Type: String
    Description:
      en: The accelerated domain name.
    Required: true
Resources:
  ExtensionDataSource:
    Type: DATASOURCE::CDN::Domain
    Properties:
      DomainName:
        Ref: DomainName
Outputs:
  ResourceGroupId:
    Description: The ID of the resource group.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - ResourceGroupId
  Scope:
    Description: The acceleration region.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - Scope
  DomainName:
    Description: The accelerated domain name.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - DomainName
  CertificateConfig:
    Description: Certificate configuration.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - CertificateConfig
  CdnType:
    Description: The workload type of the accelerated domain name.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - CdnType
  Sources:
    Description: The information about the origin server.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - Sources
  Cname:
    Description: The CNAME that is assigned to the accelerated domain name.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - Cname
  Tags:
    Description: The tags of the resource.
    Value:
      Fn::GetAtt:
        - ExtensionDataSource
        - Tags
{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "DomainName": {
      "Type": "String",
      "Description": {
        "en": "The accelerated domain name."
      },
      "Required": true
    }
  },
  "Resources": {
    "ExtensionDataSource": {
      "Type": "DATASOURCE::CDN::Domain",
      "Properties": {
        "DomainName": {
          "Ref": "DomainName"
        }
      }
    }
  },
  "Outputs": {
    "ResourceGroupId": {
      "Description": "The ID of the resource group.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "ResourceGroupId"
        ]
      }
    },
    "Scope": {
      "Description": "The acceleration region.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "Scope"
        ]
      }
    },
    "DomainName": {
      "Description": "The accelerated domain name.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "DomainName"
        ]
      }
    },
    "CertificateConfig": {
      "Description": "Certificate configuration.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "CertificateConfig"
        ]
      }
    },
    "CdnType": {
      "Description": "The workload type of the accelerated domain name.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "CdnType"
        ]
      }
    },
    "Sources": {
      "Description": "The information about the origin server.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "Sources"
        ]
      }
    },
    "Cname": {
      "Description": "The CNAME that is assigned to the accelerated domain name.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "Cname"
        ]
      }
    },
    "Tags": {
      "Description": "The tags of the resource.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "Tags"
        ]
      }
    }
  }
}