Skip to content

Commit e999247

Browse files
author
AWS
committed
Amazon Aurora DSQL Update: Cluster endpoint added to CreateCluster and GetCluster API responses
1 parent 2aca134 commit e999247

File tree

2 files changed

+28
-5
lines changed

2 files changed

+28
-5
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Aurora DSQL",
4+
"contributor": "",
5+
"description": "Cluster endpoint added to CreateCluster and GetCluster API responses"
6+
}

services/dsql/src/main/resources/codegen-resources/service-2.json

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@
8888
{"shape":"InternalServerException"},
8989
{"shape":"ResourceNotFoundException"}
9090
],
91-
"documentation":"<p>Retrieves information about a cluster.</p>"
91+
"documentation":"<p>Retrieves information about a cluster.</p>",
92+
"readonly":true
9293
},
9394
"GetClusterPolicy":{
9495
"name":"GetClusterPolicy",
@@ -106,7 +107,8 @@
106107
{"shape":"InternalServerException"},
107108
{"shape":"ResourceNotFoundException"}
108109
],
109-
"documentation":"<p>Retrieves the resource-based policy document attached to a cluster. This policy defines the access permissions and conditions for the cluster.</p>"
110+
"documentation":"<p>Retrieves the resource-based policy document attached to a cluster. This policy defines the access permissions and conditions for the cluster.</p>",
111+
"readonly":true
110112
},
111113
"GetVpcEndpointServiceName":{
112114
"name":"GetVpcEndpointServiceName",
@@ -124,7 +126,8 @@
124126
{"shape":"InternalServerException"},
125127
{"shape":"ResourceNotFoundException"}
126128
],
127-
"documentation":"<p>Retrieves the VPC endpoint service name.</p>"
129+
"documentation":"<p>Retrieves the VPC endpoint service name.</p>",
130+
"readonly":true
128131
},
129132
"ListClusters":{
130133
"name":"ListClusters",
@@ -142,7 +145,8 @@
142145
{"shape":"InternalServerException"},
143146
{"shape":"ResourceNotFoundException"}
144147
],
145-
"documentation":"<p>Retrieves information about a list of clusters.</p>"
148+
"documentation":"<p>Retrieves information about a list of clusters.</p>",
149+
"readonly":true
146150
},
147151
"ListTagsForResource":{
148152
"name":"ListTagsForResource",
@@ -160,7 +164,8 @@
160164
{"shape":"InternalServerException"},
161165
{"shape":"ResourceNotFoundException"}
162166
],
163-
"documentation":"<p>Lists all of the tags for a resource.</p>"
167+
"documentation":"<p>Lists all of the tags for a resource.</p>",
168+
"readonly":true
164169
},
165170
"PutClusterPolicy":{
166171
"name":"PutClusterPolicy",
@@ -421,6 +426,10 @@
421426
"deletionProtectionEnabled":{
422427
"shape":"DeletionProtectionEnabled",
423428
"documentation":"<p>Whether deletion protection is enabled on this cluster.</p>"
429+
},
430+
"endpoint":{
431+
"shape":"Endpoint",
432+
"documentation":"<p>The connection endpoint for the created cluster.</p>"
424433
}
425434
},
426435
"documentation":"<p>The output of a created cluster.</p>"
@@ -548,6 +557,10 @@
548557
"CUSTOMER_MANAGED_KMS_KEY"
549558
]
550559
},
560+
"Endpoint":{
561+
"type":"string",
562+
"pattern":"[a-zA-Z0-9.-]+"
563+
},
551564
"GetClusterInput":{
552565
"type":"structure",
553566
"required":["identifier"],
@@ -598,6 +611,10 @@
598611
"encryptionDetails":{
599612
"shape":"EncryptionDetails",
600613
"documentation":"<p>The current encryption configuration details for the cluster.</p>"
614+
},
615+
"endpoint":{
616+
"shape":"Endpoint",
617+
"documentation":"<p>The connection endpoint for the cluster.</p>"
601618
}
602619
},
603620
"documentation":"<p>The output of a cluster.</p>"

0 commit comments

Comments
 (0)