1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| {
"Stacks": [
{
"StackId": "arn:aws:cloudformation:ap-northeast-1:XXXXXXXXXXXXXX:stack/sampleBucket/XXXXXXXXXXXXXXXXXXXXXXXXXX",
"StackName": "sampleBucket",
"Description": "Cloudformation Sample : Create Sample S3 Bucket",
"Parameters": [
{
"ParameterKey": "pStackNamePrefic",
"ParameterValue": "cfsample-"
},
{
"ParameterKey": "pBucketName",
"ParameterValue": "techteco.sample.bucket"
}
],
"CreationTime": "2018-02-01T14:53:26.062Z",
"RollbackConfiguration": {},
"StackStatus": "CREATE_COMPLETE",
"DisableRollback": false,
"NotificationARNs": [],
"Outputs": [
{
"OutputKey": "BucketName",
"OutputValue": "techteco.sample.bucket",
"ExportName": "cfsample-BucketName"
},
{
"OutputKey": "BucketDomainName",
"OutputValue": "techteco.sample.bucket.s3.amazonaws.com",
"ExportName": "cfsample-BucketDomainName"
},
{
"OutputKey": "BucketWebsiteURL",
"OutputValue": "http://techteco.sample.bucket.s3-website-ap-northeast-1.amazonaws.com",
"ExportName": "cfsample-BucketWebsiteURL"
}
],
"Tags": [
{
"Key": "service",
"Value": "sample"
}
],
"EnableTerminationProtection": false
}
]
}
|