Sample code for 30+ languages & platforms
Classic ASP

Amazon Voice ID - Describe Domain

See more Amazon Voice ID Examples

Describes the specified domain.

Chilkat Classic ASP Downloads

Classic ASP
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0

' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

set rest = Server.CreateObject("Chilkat.Rest")

set authAws = Server.CreateObject("Chilkat.AuthAws")
authAws.AccessKey = "AWS_ACCESS_KEY"
authAws.SecretKey = "AWS_SECRET_KEY"

' Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
authAws.Region = "us-west-2"
authAws.ServiceName = "voiceid"
' SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
success = rest.SetAuthAws(authAws)

' URL: https://voiceid.us-west-2.amazonaws.com/
bTls = 1
port = 443
bAutoReconnect = 1
' Use the same region as specified above.
success = rest.Connect("voiceid.us-west-2.amazonaws.com",port,bTls,bAutoReconnect)
If (success <> 1) Then
    Response.Write "<pre>" & Server.HTMLEncode( "ConnectFailReason: " & rest.ConnectFailReason) & "</pre>"
    Response.Write "<pre>" & Server.HTMLEncode( rest.LastErrorText) & "</pre>"
    Response.End
End If

' Use this online tool to generate code from sample JSON:
' Generate Code to Create JSON

' The following JSON is sent in the request body.

' {
'     "DomainId": "<domainId>"
' }
' 

set json = Server.CreateObject("Chilkat.JsonObject")
success = json.UpdateString("DomainId","<domainId>")

success = rest.AddHeader("Content-Type","application/x-amz-json-1.0")
success = rest.AddHeader("X-Amz-Target","VoiceID.DescribeDomain")
success = rest.AddHeader("Accept-Encoding","identity")

set sbRequestBody = Server.CreateObject("Chilkat.StringBuilder")
success = json.EmitSb(sbRequestBody)
set sbResponseBody = Server.CreateObject("Chilkat.StringBuilder")
success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody)
If (success <> 1) Then
    Response.Write "<pre>" & Server.HTMLEncode( rest.LastErrorText) & "</pre>"
    Response.End
End If

respStatusCode = rest.ResponseStatusCode
Response.Write "<pre>" & Server.HTMLEncode( "response status code = " & respStatusCode) & "</pre>"
If (respStatusCode <> 200) Then
    Response.Write "<pre>" & Server.HTMLEncode( "Response Status Code = " & respStatusCode) & "</pre>"
    Response.Write "<pre>" & Server.HTMLEncode( "Response Header:") & "</pre>"
    Response.Write "<pre>" & Server.HTMLEncode( rest.ResponseHeader) & "</pre>"
    Response.Write "<pre>" & Server.HTMLEncode( "Response Body:") & "</pre>"
    Response.Write "<pre>" & Server.HTMLEncode( sbResponseBody.GetAsString()) & "</pre>"
    Response.End
End If

set jsonResponse = Server.CreateObject("Chilkat.JsonObject")
success = jsonResponse.LoadSb(sbResponseBody)

jsonResponse.EmitCompact = 0
Response.Write "<pre>" & Server.HTMLEncode( jsonResponse.Emit()) & "</pre>"

' If successful, the response status code is 200, and the response syntax:

' {
'    "Domain": { 
'       "Arn": "string",
'       "CreatedAt": number,
'       "Description": "string",
'       "DomainId": "string",
'       "DomainStatus": "string",
'       "Name": "string",
'       "ServerSideEncryptionConfiguration": { 
'          "KmsKeyId": "string"
'       },
'       "UpdatedAt": number
'    }
' }

DomainArn = jsonResponse.StringOf("Domain.Arn")
DomainCreatedAt = jsonResponse.IntOf("Domain.CreatedAt")
DomainDescription = jsonResponse.StringOf("Domain.Description")
DomainDomainId = jsonResponse.StringOf("Domain.DomainId")
DomainDomainStatus = jsonResponse.StringOf("Domain.DomainStatus")
DomainName = jsonResponse.StringOf("Domain.Name")
DomainServerSideEncryptionConfigurationKmsKeyId = jsonResponse.StringOf("Domain.ServerSideEncryptionConfiguration.KmsKeyId")
DomainUpdatedAt = jsonResponse.IntOf("Domain.UpdatedAt")

%>
</body>
</html>