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):
58class AppConfigDataClient(BaseClient): 59 """ 60 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client) 61 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/) 62 """ 63 64 meta: ClientMeta 65 66 @property 67 def exceptions(self) -> Exceptions: 68 """ 69 AppConfigDataClient exceptions. 70 71 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client) 72 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#exceptions) 73 """ 74 75 def can_paginate(self, operation_name: str) -> bool: 76 """ 77 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/can_paginate.html) 78 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#can_paginate) 79 """ 80 81 def generate_presigned_url( 82 self, 83 ClientMethod: str, 84 Params: Mapping[str, Any] = ..., 85 ExpiresIn: int = 3600, 86 HttpMethod: str = ..., 87 ) -> str: 88 """ 89 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/generate_presigned_url.html) 90 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#generate_presigned_url) 91 """ 92 93 def get_latest_configuration( 94 self, **kwargs: Unpack[GetLatestConfigurationRequestTypeDef] 95 ) -> GetLatestConfigurationResponseTypeDef: 96 """ 97 Retrieves the latest deployed configuration. 98 99 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/get_latest_configuration.html) 100 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#get_latest_configuration) 101 """ 102 103 def start_configuration_session( 104 self, **kwargs: Unpack[StartConfigurationSessionRequestTypeDef] 105 ) -> StartConfigurationSessionResponseTypeDef: 106 """ 107 Starts a configuration session used to retrieve a deployed configuration. 108 109 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/start_configuration_session.html) 110 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#start_configuration_session) 111 """
.Client">Show boto3 documentation Show boto3-stubs documentation
exceptions: mypy_boto3_appconfigdata.client.Exceptions
66 @property 67 def exceptions(self) -> Exceptions: 68 """ 69 AppConfigDataClient exceptions. 70 71 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client) 72 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#exceptions) 73 """
AppConfigDataClient exceptions.
.Client">Show boto3 documentation Show boto3-stubs documentation
def
can_paginate(self, operation_name: str) -> bool:
75 def can_paginate(self, operation_name: str) -> bool: 76 """ 77 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/can_paginate.html) 78 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#can_paginate) 79 """
def
generate_presigned_url( self, ClientMethod: str, Params: Mapping[str, typing.Any] = Ellipsis, ExpiresIn: int = 3600, HttpMethod: str = Ellipsis) -> str:
81 def generate_presigned_url( 82 self, 83 ClientMethod: str, 84 Params: Mapping[str, Any] = ..., 85 ExpiresIn: int = 3600, 86 HttpMethod: str = ..., 87 ) -> str: 88 """ 89 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/generate_presigned_url.html) 90 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#generate_presigned_url) 91 """
def
get_latest_configuration( self, **kwargs: Unpack[mypy_boto3_appconfigdata.type_defs.GetLatestConfigurationRequestTypeDef]) -> mypy_boto3_appconfigdata.type_defs.GetLatestConfigurationResponseTypeDef:
93 def get_latest_configuration( 94 self, **kwargs: Unpack[GetLatestConfigurationRequestTypeDef] 95 ) -> GetLatestConfigurationResponseTypeDef: 96 """ 97 Retrieves the latest deployed configuration. 98 99 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/get_latest_configuration.html) 100 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#get_latest_configuration) 101 """
Retrieves the latest deployed configuration.
def
start_configuration_session( self, **kwargs: Unpack[mypy_boto3_appconfigdata.type_defs.StartConfigurationSessionRequestTypeDef]) -> mypy_boto3_appconfigdata.type_defs.StartConfigurationSessionResponseTypeDef:
103 def start_configuration_session( 104 self, **kwargs: Unpack[StartConfigurationSessionRequestTypeDef] 105 ) -> StartConfigurationSessionResponseTypeDef: 106 """ 107 Starts a configuration session used to retrieve a deployed configuration. 108 109 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata/client/start_configuration_session.html) 110 [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#start_configuration_session) 111 """
Starts a configuration session used to retrieve a deployed configuration.
Client =
<class 'AppConfigDataClient'>