Skip to content

Commit

Permalink
Update to latest models
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-python-automation committed Aug 13, 2024
1 parent 3e85531 commit 2d39555
Show file tree
Hide file tree
Showing 10 changed files with 451 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-amplify-14248.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``amplify``",
"description": "Add a new field \"cacheConfig\" that enables users to configure the CDN cache settings for an App"
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-appstream-67576.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``appstream``",
"description": "This release includes following new APIs: CreateThemeForStack, DescribeThemeForStack, UpdateThemeForStack, DeleteThemeForStack to support custom branding programmatically."
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-fis-41334.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``fis``",
"description": "This release adds support for additional error information on experiment failure. It adds the error code, location, and account id on relevant failures to the GetExperiment and ListExperiment API responses."
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-glue-27159.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``glue``",
"description": "Add AttributesToGet parameter support for Glue GetTables"
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-neptunegraph-829.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``neptune-graph``",
"description": "Amazon Neptune Analytics provides a new option for customers to load data into a graph using the RDF (Resource Description Framework) NTRIPLES format. When loading NTRIPLES files, use the value `convertToIri` for the `blankNodeHandling` parameter."
}
35 changes: 33 additions & 2 deletions botocore/data/amplify/2017-07-25/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"serviceId":"Amplify",
"signatureVersion":"v4",
"signingName":"amplify",
"uid":"amplify-2017-07-25"
"uid":"amplify-2017-07-25",
"auth":["aws.auth#sigv4"]
},
"operations":{
"CreateApp":{
Expand Down Expand Up @@ -747,6 +748,10 @@
"repositoryCloneMethod":{
"shape":"RepositoryCloneMethod",
"documentation":"<note> <p>This is for internal use.</p> </note> <p>The Amplify service uses this parameter to specify the authentication protocol to use to access the Git repository for an Amplify app. Amplify specifies <code>TOKEN</code> for a GitHub repository, <code>SIGV4</code> for an Amazon Web Services CodeCommit repository, and <code>SSH</code> for GitLab and Bitbucket repositories.</p>"
},
"cacheConfig":{
"shape":"CacheConfig",
"documentation":"<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>"
}
},
"documentation":"<p>Represents the different branches of a repository for building, deploying, and hosting an Amplify app. </p>"
Expand Down Expand Up @@ -1113,13 +1118,31 @@
"pattern":"(?s).+",
"sensitive":true
},
"CacheConfig":{
"type":"structure",
"required":["type"],
"members":{
"type":{
"shape":"CacheConfigType",
"documentation":"<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>"
}
},
"documentation":"<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>"
},
"CacheConfigType":{
"type":"string",
"enum":[
"AMPLIFY_MANAGED",
"AMPLIFY_MANAGED_NO_COOKIES"
]
},
"Certificate":{
"type":"structure",
"required":["type"],
"members":{
"type":{
"shape":"CertificateType",
"documentation":"<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>"
"documentation":"<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>"
},
"customCertificateArn":{
"shape":"CertificateArn",
Expand Down Expand Up @@ -1262,6 +1285,10 @@
"autoBranchCreationConfig":{
"shape":"AutoBranchCreationConfig",
"documentation":"<p>The automated branch creation configuration for an Amplify app. </p>"
},
"cacheConfig":{
"shape":"CacheConfig",
"documentation":"<p>The cache configuration for the Amplify app.</p>"
}
},
"documentation":"<p>The request structure used to create apps in Amplify. </p>"
Expand Down Expand Up @@ -3275,6 +3302,10 @@
"accessToken":{
"shape":"AccessToken",
"documentation":"<p>The personal access token for a GitHub repository for an Amplify app. The personal access token is used to authorize access to a GitHub repository using the Amplify GitHub App. The token is not stored.</p> <p>Use <code>accessToken</code> for GitHub repositories only. To authorize access to a repository provider such as Bitbucket or CodeCommit, use <code>oauthToken</code>.</p> <p>You must specify either <code>accessToken</code> or <code>oauthToken</code> when you update an app.</p> <p>Existing Amplify apps deployed from a GitHub repository using OAuth continue to work with CI/CD. However, we strongly recommend that you migrate these apps to use the GitHub App. For more information, see <a href=\"https://docs.aws.amazon.com/amplify/latest/userguide/setting-up-GitHub-access.html#migrating-to-github-app-auth\">Migrating an existing OAuth app to the Amplify GitHub App</a> in the <i>Amplify User Guide</i> .</p>"
},
"cacheConfig":{
"shape":"CacheConfig",
"documentation":"<p>The cache configuration for the Amplify app.</p>"
}
},
"documentation":"<p>The request structure for the update app request. </p>"
Expand Down
Loading

0 comments on commit 2d39555

Please sign in to comment.