diff --git a/docs/_static/basic.css b/docs/_static/basic.css index 7fbe7a181..bd473cdc5 100644 --- a/docs/_static/basic.css +++ b/docs/_static/basic.css @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- basic theme. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ @@ -757,6 +757,7 @@ span.pre { -ms-hyphens: none; -webkit-hyphens: none; hyphens: none; + white-space: nowrap; } div[class*="highlight-"] { diff --git a/docs/_static/doctools.js b/docs/_static/doctools.js index 8cbf1b161..e509e4834 100644 --- a/docs/_static/doctools.js +++ b/docs/_static/doctools.js @@ -4,7 +4,7 @@ * * Sphinx JavaScript utilities for all documentation. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ @@ -264,6 +264,9 @@ var Documentation = { hideSearchWords : function() { $('#searchbox .highlight-link').fadeOut(300); $('span.highlighted').removeClass('highlighted'); + var url = new URL(window.location); + url.searchParams.delete('highlight'); + window.history.replaceState({}, '', url); }, /** diff --git a/docs/_static/language_data.js b/docs/_static/language_data.js index 863704b31..ebe2f03bf 100644 --- a/docs/_static/language_data.js +++ b/docs/_static/language_data.js @@ -5,7 +5,7 @@ * This script contains the language-specific data used by searchtools.js, * namely the list of stopwords, stemmer, scorer and splitter. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/docs/_static/searchtools.js b/docs/_static/searchtools.js index 002e9c4a2..2d7785937 100644 --- a/docs/_static/searchtools.js +++ b/docs/_static/searchtools.js @@ -4,7 +4,7 @@ * * Sphinx JavaScript utilities for the full-text search. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/docs/api/auth.html b/docs/api/auth.html index b500a327f..63e850650 100644 --- a/docs/api/auth.html +++ b/docs/api/auth.html @@ -130,7 +130,7 @@

Navigation

To define a custom provider, use the new_delegate() function.

-classmethod new_default_chain(client_bootstrap)
+classmethod new_default_chain(client_bootstrap=None)

Create the default provider chain used by most AWS SDKs.

Generally:

    @@ -141,7 +141,8 @@

    Navigation

Parameters
-

client_bootstrap (ClientBootstrap) – Client bootstrap to use when initiating socket connection.

+

client_bootstrap (Optional[ClientBootstrap]) – Client bootstrap to use when initiating socket connection. +If not set, uses the default static ClientBootstrap instead.

Returns

AwsCredentialsProvider

@@ -169,13 +170,14 @@

Navigation

-classmethod new_profile(client_bootstrap, profile_name=None, config_filepath=None, credentials_filepath=None)
+classmethod new_profile(client_bootstrap=None, profile_name=None, config_filepath=None, credentials_filepath=None)

Creates a provider that sources credentials from key-value profiles loaded from the aws credentials file.

Parameters
    -
  • client_bootstrap (ClientBootstrap) – Client bootstrap to use when initiating socket connection.

  • +
  • client_bootstrap (Optional[ClientBootstrap]) – Client bootstrap to use when initiating socket connection. +If not set, uses the static default ClientBootstrap instead.

  • profile_name (Optional[str]) – Name of profile to use. If not set, uses value from AWS_PROFILE environment variable. If that is not set, uses value of “default”

  • @@ -663,12 +665,16 @@

    Navigation

+
+
+static create_client_with_mtls_windows_cert_store_path(cert_path)
+

Create options configured for use with mutual TLS in client mode, +using a certificate in a Windows certificate store.

+

NOTE: This configuration only works on Windows devices.

+
+
Parameters
+

cert_path (str) – Path to certificate in a Windows certificate store. +The path must use backslashes and end with the certificate’s thumbprint. +Example: CurrentUser\MY\A11F8A9B5DF5B98BA3508FBCA575D09570E0D2C6

+
+
Returns
+

TlsContextOptions

+
+
+
+
static create_server_from_path(cert_filepath, pk_filepath)
@@ -745,12 +763,16 @@

Navigation