mypy_boto3_appconfigdata
Main interface for appconfigdata service.
Copyright 2025 Vlad Emelianov
Usage::
from boto3.session import Session
from mypy_boto3_appconfigdata import (
AppConfigDataClient,
Client,
)
session = Session()
client: AppConfigDataClient = session.client("appconfigdata")
1""" 2Main interface for appconfigdata service. 3 4[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/) 5 6Copyright 2025 Vlad Emelianov 7 8Usage:: 9 10 ```python 11 from boto3.session import Session 12 from mypy_boto3_appconfigdata import ( 13 AppConfigDataClient, 14 Client, 15 ) 16 17 session = Session() 18 client: AppConfigDataClient = session.client("appconfigdata") 19 ``` 20""" 21 22from .client import AppConfigDataClient 23 24Client = AppConfigDataClient 25 26 27__all__ = ("AppConfigDataClient", "Client")
class
AppConfigDataClient(botocore.client.BaseClient):
54class AppConfigDataClient(BaseClient): 55 """ 56 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client) 57 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/) 58 """ 59 60 meta: ClientMeta 61 62 @property 63 def exceptions(self) -> Exceptions: 64 """ 65 AppConfigDataClient exceptions. 66 67 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client) 68 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#exceptions) 69 """ 70 71 def can_paginate(self, operation_name: str) -> bool: 72 """ 73 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/can_paginate.html) 74 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#can_paginate) 75 """ 76 77 def generate_presigned_url( 78 self, 79 ClientMethod: str, 80 Params: Mapping[str, Any] = ..., 81 ExpiresIn: int = 3600, 82 HttpMethod: str = ..., 83 ) -> str: 84 """ 85 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/generate_presigned_url.html) 86 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#generate_presigned_url) 87 """ 88 89 def get_latest_configuration( 90 self, **kwargs: Unpack[GetLatestConfigurationRequestTypeDef] 91 ) -> GetLatestConfigurationResponseTypeDef: 92 """ 93 Retrieves the latest deployed configuration. 94 95 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/get_latest_configuration.html) 96 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#get_latest_configuration) 97 """ 98 99 def start_configuration_session( 100 self, **kwargs: Unpack[StartConfigurationSessionRequestTypeDef] 101 ) -> StartConfigurationSessionResponseTypeDef: 102 """ 103 Starts a configuration session used to retrieve a deployed configuration. 104 105 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/start_configuration_session.html) 106 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#start_configuration_session) 107 """
.Client">Show boto3 documentation Show boto3-stubs documentation
exceptions: mypy_boto3_appconfigdata.client.Exceptions
62 @property 63 def exceptions(self) -> Exceptions: 64 """ 65 AppConfigDataClient exceptions. 66 67 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client) 68 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#exceptions) 69 """
AppConfigDataClient exceptions.
.Client">Show boto3 documentation Show boto3-stubs documentation
def
can_paginate(self, operation_name: str) -> bool:
71 def can_paginate(self, operation_name: str) -> bool: 72 """ 73 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/can_paginate.html) 74 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#can_paginate) 75 """
def
generate_presigned_url( self, ClientMethod: str, Params: Mapping[str, typing.Any] = Ellipsis, ExpiresIn: int = 3600, HttpMethod: str = Ellipsis) -> str:
77 def generate_presigned_url( 78 self, 79 ClientMethod: str, 80 Params: Mapping[str, Any] = ..., 81 ExpiresIn: int = 3600, 82 HttpMethod: str = ..., 83 ) -> str: 84 """ 85 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/generate_presigned_url.html) 86 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#generate_presigned_url) 87 """
def
get_latest_configuration( self, **kwargs: Unpack[mypy_boto3_appconfigdata.type_defs.GetLatestConfigurationRequestTypeDef]) -> mypy_boto3_appconfigdata.type_defs.GetLatestConfigurationResponseTypeDef:
89 def get_latest_configuration( 90 self, **kwargs: Unpack[GetLatestConfigurationRequestTypeDef] 91 ) -> GetLatestConfigurationResponseTypeDef: 92 """ 93 Retrieves the latest deployed configuration. 94 95 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/get_latest_configuration.html) 96 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#get_latest_configuration) 97 """
Retrieves the latest deployed configuration.
def
start_configuration_session( self, **kwargs: Unpack[mypy_boto3_appconfigdata.type_defs.StartConfigurationSessionRequestTypeDef]) -> mypy_boto3_appconfigdata.type_defs.StartConfigurationSessionResponseTypeDef:
99 def start_configuration_session( 100 self, **kwargs: Unpack[StartConfigurationSessionRequestTypeDef] 101 ) -> StartConfigurationSessionResponseTypeDef: 102 """ 103 Starts a configuration session used to retrieve a deployed configuration. 104 105 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/start_configuration_session.html) 106 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#start_configuration_session) 107 """
Starts a configuration session used to retrieve a deployed configuration.
Client =
<class 'AppConfigDataClient'>