Cria um nome de domínio associado para um aplicativo de contêiner de borda.
Sintaxe
{
"Type": "ALIYUN::ESA::EdgeContainerAppRecord",
"Properties": {
"AppId": String,
"RecordName": String,
"SiteId": Integer
}
}
Propriedades
|
Propriedade |
Tipo |
Obrigatório |
Atualização permitida |
Descrição |
Restrições |
|
AppId |
String |
Sim |
Não |
O ID do aplicativo. |
Nenhuma |
|
RecordName |
String |
Sim |
Não |
O nome de domínio associado. |
Nenhuma |
|
SiteId |
Integer |
Sim |
Não |
O ID do site. |
Nenhuma |
Valores de retorno
Fn::GetAtt
-
RecordName: O nome de domínio associado.
-
SiteId: O ID do site.
-
AppId: O ID do aplicativo.
-
CreateTime: A data e hora de criação do registro.
-
UpdateTime: A data e hora da última atualização do registro.
-
RecordId: O ID do registro do nome de domínio associado.
-
ConfigId: O ID de configuração do nome de domínio associado.
-
SchemdId: O ID do domínio de agendamento do nome de domínio associado.
-
Cname: O CNAME do nome de domínio associado.
Exemplos
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
RecordName:
Type: String
Description: The associated domain name.
Required: true
SiteId:
Type: Number
Description: The website ID.
Required: true
AppId:
Type: String
Description: The application ID.
Required: true
Resources:
ExtensionResource:
Type: ALIYUN::ESA::EdgeContainerAppRecord
Properties:
RecordName:
Ref: RecordName
SiteId:
Ref: SiteId
AppId:
Ref: AppId
Outputs:
RecordName:
Description: The associated domain name.
Value:
Fn::GetAtt:
- ExtensionResource
- RecordName
SiteId:
Description: The website ID.
Value:
Fn::GetAtt:
- ExtensionResource
- SiteId
AppId:
Description: The application ID.
Value:
Fn::GetAtt:
- ExtensionResource
- AppId
CreateTime:
Description: The time when the domain name was added. The time follows the ISO 8601 standard in the YYYY-MM-DDThh:mm:ss format. The time is displayed in UTC.
Value:
Fn::GetAtt:
- ExtensionResource
- CreateTime
UpdateTime:
Description: The time when the scheduling domain ID or CNAME was last modified. The time follows the ISO 8601 standard in the YYYY-MM-DDThh:mm:ss format. The time is displayed in UTC.
Value:
Fn::GetAtt:
- ExtensionResource
- UpdateTime
RecordId:
Description: The record ID of the associated domain name.
Value:
Fn::GetAtt:
- ExtensionResource
- RecordId
ConfigId:
Description: The configuration ID of the associated domain name.
Value:
Fn::GetAtt:
- ExtensionResource
- ConfigId
SchemdId:
Description: The scheduling domain ID of the associated domain name.
Value:
Fn::GetAtt:
- ExtensionResource
- SchemdId
Cname:
Description: The CNAME of the associated domain name.
Value:
Fn::GetAtt:
- ExtensionResource
- Cname
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"RecordName": {
"Type": "String",
"Description": "The associated domain name.",
"Required": true
},
"SiteId": {
"Type": "Number",
"Description": "The website ID.",
"Required": true
},
"AppId": {
"Type": "String",
"Description": "The application ID.",
"Required": true
}
},
"Resources": {
"ExtensionResource": {
"Type": "ALIYUN::ESA::EdgeContainerAppRecord",
"Properties": {
"RecordName": {
"Ref": "RecordName"
},
"SiteId": {
"Ref": "SiteId"
},
"AppId": {
"Ref": "AppId"
}
}
}
},
"Outputs": {
"RecordName": {
"Description": "The associated domain name.",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"RecordName"
]
}
},
"SiteId": {
"Description": "The website ID.",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"SiteId"
]
}
},
"AppId": {
"Description": "The application ID.",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"AppId"
]
}
},
"CreateTime": {
"Description": "The time when the domain name was added. The time follows the ISO 8601 standard in the YYYY-MM-DDThh:mm:ss format. The time is displayed in UTC.",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"CreateTime"
]
}
},
"UpdateTime": {
"Description": "The time when the scheduling domain ID or CNAME was last modified. The time follows the ISO 8601 standard in the YYYY-MM-DDThh:mm:ss format. The time is displayed in UTC.",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"UpdateTime"
]
}
},
"RecordId": {
"Description": "The record ID of the associated domain name.",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"RecordId"
]
}
},
"ConfigId": {
"Description": "The configuration ID of the associated domain name.",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"ConfigId"
]
}
},
"SchemdId": {
"Description": "The scheduling domain ID of the associated domain name.",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"SchemdId"
]
}
},
"Cname": {
"Description": "The CNAME of the associated domain name.",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"Cname"
]
}
}
}
}