Skip to content

Commit 02d8a40

Browse files
Updated API models and rebuilt service gems.
1 parent e35b227 commit 02d8a40

File tree

51 files changed

+1696
-62
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1696
-62
lines changed

apis/amplify/2017-07-25/api-2.json

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,8 @@
639639
"enableAutoBranchCreation":{"shape":"EnableAutoBranchCreation"},
640640
"autoBranchCreationPatterns":{"shape":"AutoBranchCreationPatterns"},
641641
"autoBranchCreationConfig":{"shape":"AutoBranchCreationConfig"},
642-
"repositoryCloneMethod":{"shape":"RepositoryCloneMethod"}
642+
"repositoryCloneMethod":{"shape":"RepositoryCloneMethod"},
643+
"cacheConfig":{"shape":"CacheConfig"}
643644
}
644645
},
645646
"AppArn":{
@@ -859,6 +860,20 @@
859860
"pattern":"(?s).+",
860861
"sensitive":true
861862
},
863+
"CacheConfig":{
864+
"type":"structure",
865+
"required":["type"],
866+
"members":{
867+
"type":{"shape":"CacheConfigType"}
868+
}
869+
},
870+
"CacheConfigType":{
871+
"type":"string",
872+
"enum":[
873+
"AMPLIFY_MANAGED",
874+
"AMPLIFY_MANAGED_NO_COOKIES"
875+
]
876+
},
862877
"Certificate":{
863878
"type":"structure",
864879
"required":["type"],
@@ -934,7 +949,8 @@
934949
"customHeaders":{"shape":"CustomHeaders"},
935950
"enableAutoBranchCreation":{"shape":"EnableAutoBranchCreation"},
936951
"autoBranchCreationPatterns":{"shape":"AutoBranchCreationPatterns"},
937-
"autoBranchCreationConfig":{"shape":"AutoBranchCreationConfig"}
952+
"autoBranchCreationConfig":{"shape":"AutoBranchCreationConfig"},
953+
"cacheConfig":{"shape":"CacheConfig"}
938954
}
939955
},
940956
"CreateAppResult":{
@@ -2385,7 +2401,8 @@
23852401
"autoBranchCreationConfig":{"shape":"AutoBranchCreationConfig"},
23862402
"repository":{"shape":"Repository"},
23872403
"oauthToken":{"shape":"OauthToken"},
2388-
"accessToken":{"shape":"AccessToken"}
2404+
"accessToken":{"shape":"AccessToken"},
2405+
"cacheConfig":{"shape":"CacheConfig"}
23892406
}
23902407
},
23912408
"UpdateAppResult":{

apis/amplify/2017-07-25/docs-2.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,20 @@
312312
"UpdateBranchRequest$buildSpec": "<p> The build specification (build spec) for the branch. </p>"
313313
}
314314
},
315+
"CacheConfig": {
316+
"base": "<p>Describes the cache configuration for an Amplify app.</p> <p>For more information about how Amplify applies an optimal cache configuration for your app based on the type of content that is being served, see <a href=\"https://docs.aws.amazon.com/amplify/latest/userguide/managing-cache-configuration\">Managing cache configuration</a> in the <i>Amplify User guide</i>.</p>",
317+
"refs": {
318+
"App$cacheConfig": "<p>The cache configuration for the Amplify app. If you don't specify the cache configuration <code>type</code>, Amplify uses the default <code>AMPLIFY_MANAGED</code> setting.</p>",
319+
"CreateAppRequest$cacheConfig": "<p>The cache configuration for the Amplify app.</p>",
320+
"UpdateAppRequest$cacheConfig": "<p>The cache configuration for the Amplify app.</p>"
321+
}
322+
},
323+
"CacheConfigType": {
324+
"base": null,
325+
"refs": {
326+
"CacheConfig$type": "<p>The type of cache configuration to use for an Amplify app.</p> <p>The <code>AMPLIFY_MANAGED</code> cache configuration automatically applies an optimized cache configuration for your app based on its platform, routing rules, and rewrite rules. This is the default setting.</p> <p>The <code>AMPLIFY_MANAGED_NO_COOKIES</code> cache configuration type is the same as <code>AMPLIFY_MANAGED</code>, except that it excludes all cookies from the cache key.</p>"
327+
}
328+
},
315329
"Certificate": {
316330
"base": "<p>Describes the current SSL/TLS certificate that is in use for the domain. If you are using <code>CreateDomainAssociation</code> to create a new domain association, <code>Certificate</code> describes the new certificate that you are creating.</p>",
317331
"refs": {
@@ -335,7 +349,7 @@
335349
"CertificateType": {
336350
"base": null,
337351
"refs": {
338-
"Certificate$type": "<p>The type of SSL/TLS certificate that you want to use.</p> <p>Specify <code>AMPLIFY_MANAGED</code> to use the default certificate that Amplify provisions for you.</p> <p>Specify <code>CUSTOM</code> to use your own certificate that you have already added to Certificate Manager in your Amazon Web Services account. Make sure you request (or import) the certificate in the US East (N. Virginia) Region (us-east-1). For more information about using ACM, see <a href=\"https://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html\">Importing certificates into Certificate Manager</a> in the <i>ACM User guide</i> .</p>",
352+
"Certificate$type": "<p>The type of SSL/TLS certificate that you want to use.</p> <p>Specify <code>AMPLIFY_MANAGED</code> to use the default certificate that Amplify provisions for you.</p> <p>Specify <code>CUSTOM</code> to use your own certificate that you have already added to Certificate Manager in your Amazon Web Services account. Make sure you request (or import) the certificate in the US East (N. Virginia) Region (us-east-1). For more information about using ACM, see <a href=\"https://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html\">Importing certificates into Certificate Manager</a> in the <i>ACM User guide</i>.</p>",
339353
"CertificateSettings$type": "<p>The certificate type.</p> <p>Specify <code>AMPLIFY_MANAGED</code> to use the default certificate that Amplify provisions for you.</p> <p>Specify <code>CUSTOM</code> to use your own certificate that you have already added to Certificate Manager in your Amazon Web Services account. Make sure you request (or import) the certificate in the US East (N. Virginia) Region (us-east-1). For more information about using ACM, see <a href=\"https://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html\">Importing certificates into Certificate Manager</a> in the <i>ACM User guide</i>.</p>"
340354
}
341355
},

0 commit comments

Comments
 (0)