Skip to content

Commit bf21847

Browse files
Modify UpdateGraphQLAPI operation and flag authenticationType as required.
1 parent b74df26 commit bf21847

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

generator/ServiceModels/appsync/appsync-2017-07-25.api.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4089,7 +4089,8 @@
40894089
"type":"structure",
40904090
"required":[
40914091
"apiId",
4092-
"name"
4092+
"name",
4093+
"authenticationType"
40934094
],
40944095
"members":{
40954096
"apiId":{

generator/ServiceModels/appsync/appsync-2017-07-25.normal.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5602,7 +5602,8 @@
56025602
"type":"structure",
56035603
"required":[
56045604
"apiId",
5605-
"name"
5605+
"name",
5606+
"authenticationType"
56065607
],
56075608
"members":{
56085609
"apiId":{

sdk/src/Services/AppSync/Generated/Model/UpdateGraphqlApiRequest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ internal bool IsSetApiId()
9494
/// The new authentication type for the <c>GraphqlApi</c> object.
9595
/// </para>
9696
/// </summary>
97+
[AWSProperty(Required=true)]
9798
public AuthenticationType AuthenticationType
9899
{
99100
get { return this._authenticationType; }

0 commit comments

Comments
 (0)