File: response_test.go

package info (click to toggle)
golang-github-docker-goamz 0.0~git20160206.0.f0a21f5-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,580 kB
  • sloc: makefile: 66
file content (22 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package kms_test

var DescribeKeyExample = `
{
	"KeyMetadata": {
		"AWSAccountId": "987654321",
		"Arn": "arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012",
		"CreationDate": 123456.789,
		"Description": "This is a test",
		"Enabled": true,
		"KeyId": "12345678-1234-1234-1234-123456789012",
		"KeyUsage": "ENCRYPT_DECRYPT"
	}
}
`

var ErrorExample = `
{
    "__type": "TestException",
    "message": "This is a error test"
}
`