mypy_boto3_appconfigdata

Main interface for appconfigdata service.

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
 4Usage::
 5
 6    ```python
 7    from boto3.session import Session
 8    from mypy_boto3_appconfigdata import (
 9        AppConfigDataClient,
10        Client,
11    )
12
13    session = Session()
14    client: AppConfigDataClient = session.client("appconfigdata")
15    ```
16"""
17
18from .client import AppConfigDataClient
19
20Client = AppConfigDataClient
21
22
23__all__ = ("AppConfigDataClient", "Client")
class AppConfigDataClient(botocore.client.BaseClient):
 46class AppConfigDataClient(BaseClient):
 47    """
 48    [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client)
 49    [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/)
 50    """
 51
 52    meta: ClientMeta
 53
 54    @property
 55    def exceptions(self) -> Exceptions:
 56        """
 57        AppConfigDataClient exceptions.
 58
 59        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client.exceptions)
 60        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#exceptions)
 61        """
 62
 63    def can_paginate(self, operation_name: str) -> bool:
 64        """
 65        Check if an operation can be paginated.
 66
 67        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client.can_paginate)
 68        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#can_paginate)
 69        """
 70
 71    def close(self) -> None:
 72        """
 73        Closes underlying endpoint connections.
 74
 75        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client.close)
 76        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#close)
 77        """
 78
 79    def generate_presigned_url(
 80        self,
 81        ClientMethod: str,
 82        Params: Mapping[str, Any] = ...,
 83        ExpiresIn: int = 3600,
 84        HttpMethod: str = ...,
 85    ) -> str:
 86        """
 87        Generate a presigned url given a client, its method, and arguments.
 88
 89        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client.generate_presigned_url)
 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, *, ConfigurationToken: str
 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.html#AppConfigData.Client.get_latest_configuration)
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,
105        *,
106        ApplicationIdentifier: str,
107        EnvironmentIdentifier: str,
108        ConfigurationProfileIdentifier: str,
109        RequiredMinimumPollIntervalInSeconds: int = ...
110    ) -> StartConfigurationSessionResponseTypeDef:
111        """
112        Starts a configuration session used to retrieve a deployed configuration.
113
114        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client.start_configuration_session)
115        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#start_configuration_session)
116        """
meta: botocore.client.ClientMeta
exceptions: mypy_boto3_appconfigdata.client.Exceptions
54    @property
55    def exceptions(self) -> Exceptions:
56        """
57        AppConfigDataClient exceptions.
58
59        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client.exceptions)
60        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#exceptions)
61        """
def can_paginate(self, operation_name: str) -> bool:
63    def can_paginate(self, operation_name: str) -> bool:
64        """
65        Check if an operation can be paginated.
66
67        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client.can_paginate)
68        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#can_paginate)
69        """

Check if an operation can be paginated.

Show boto3 documentation Show boto3-stubs documentation

def close(self) -> None:
71    def close(self) -> None:
72        """
73        Closes underlying endpoint connections.
74
75        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client.close)
76        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#close)
77        """

Closes underlying endpoint connections.

Show boto3 documentation Show boto3-stubs documentation

def generate_presigned_url( self, ClientMethod: str, Params: Mapping[str, Any] = Ellipsis, ExpiresIn: int = 3600, HttpMethod: str = Ellipsis) -> str:
79    def generate_presigned_url(
80        self,
81        ClientMethod: str,
82        Params: Mapping[str, Any] = ...,
83        ExpiresIn: int = 3600,
84        HttpMethod: str = ...,
85    ) -> str:
86        """
87        Generate a presigned url given a client, its method, and arguments.
88
89        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client.generate_presigned_url)
90        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#generate_presigned_url)
91        """

Generate a presigned url given a client, its method, and arguments.

Show boto3 documentation Show boto3-stubs documentation

def get_latest_configuration( self, *, ConfigurationToken: str) -> mypy_boto3_appconfigdata.type_defs.GetLatestConfigurationResponseTypeDef:
 93    def get_latest_configuration(
 94        self, *, ConfigurationToken: str
 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.html#AppConfigData.Client.get_latest_configuration)
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.

Show boto3 documentation Show boto3-stubs documentation

def start_configuration_session( self, *, ApplicationIdentifier: str, EnvironmentIdentifier: str, ConfigurationProfileIdentifier: str, RequiredMinimumPollIntervalInSeconds: int = Ellipsis) -> mypy_boto3_appconfigdata.type_defs.StartConfigurationSessionResponseTypeDef:
103    def start_configuration_session(
104        self,
105        *,
106        ApplicationIdentifier: str,
107        EnvironmentIdentifier: str,
108        ConfigurationProfileIdentifier: str,
109        RequiredMinimumPollIntervalInSeconds: int = ...
110    ) -> StartConfigurationSessionResponseTypeDef:
111        """
112        Starts a configuration session used to retrieve a deployed configuration.
113
114        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfigdata.html#AppConfigData.Client.start_configuration_session)
115        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/client/#start_configuration_session)
116        """

Starts a configuration session used to retrieve a deployed configuration.

Show boto3 documentation Show boto3-stubs documentation

Inherited Members
botocore.client.BaseClient
BaseClient
get_paginator
get_waiter
waiter_names
Client = <class 'AppConfigDataClient'>