mypy_boto3_appconfig

Main interface for appconfig service.

Usage::

from boto3.session import Session
from mypy_boto3_appconfig import (
    AppConfigClient,
    Client,
    ListApplicationsPaginator,
    ListConfigurationProfilesPaginator,
    ListDeploymentStrategiesPaginator,
    ListDeploymentsPaginator,
    ListEnvironmentsPaginator,
    ListExtensionAssociationsPaginator,
    ListExtensionsPaginator,
    ListHostedConfigurationVersionsPaginator,
)

session = Session()
client: AppConfigClient = session.client("appconfig")

list_applications_paginator: ListApplicationsPaginator = client.get_paginator("list_applications")
list_configuration_profiles_paginator: ListConfigurationProfilesPaginator = client.get_paginator("list_configuration_profiles")
list_deployment_strategies_paginator: ListDeploymentStrategiesPaginator = client.get_paginator("list_deployment_strategies")
list_deployments_paginator: ListDeploymentsPaginator = client.get_paginator("list_deployments")
list_environments_paginator: ListEnvironmentsPaginator = client.get_paginator("list_environments")
list_extension_associations_paginator: ListExtensionAssociationsPaginator = client.get_paginator("list_extension_associations")
list_extensions_paginator: ListExtensionsPaginator = client.get_paginator("list_extensions")
list_hosted_configuration_versions_paginator: ListHostedConfigurationVersionsPaginator = client.get_paginator("list_hosted_configuration_versions")
 1"""
 2Main interface for appconfig service.
 3
 4Usage::
 5
 6    ```python
 7    from boto3.session import Session
 8    from mypy_boto3_appconfig import (
 9        AppConfigClient,
10        Client,
11        ListApplicationsPaginator,
12        ListConfigurationProfilesPaginator,
13        ListDeploymentStrategiesPaginator,
14        ListDeploymentsPaginator,
15        ListEnvironmentsPaginator,
16        ListExtensionAssociationsPaginator,
17        ListExtensionsPaginator,
18        ListHostedConfigurationVersionsPaginator,
19    )
20
21    session = Session()
22    client: AppConfigClient = session.client("appconfig")
23
24    list_applications_paginator: ListApplicationsPaginator = client.get_paginator("list_applications")
25    list_configuration_profiles_paginator: ListConfigurationProfilesPaginator = client.get_paginator("list_configuration_profiles")
26    list_deployment_strategies_paginator: ListDeploymentStrategiesPaginator = client.get_paginator("list_deployment_strategies")
27    list_deployments_paginator: ListDeploymentsPaginator = client.get_paginator("list_deployments")
28    list_environments_paginator: ListEnvironmentsPaginator = client.get_paginator("list_environments")
29    list_extension_associations_paginator: ListExtensionAssociationsPaginator = client.get_paginator("list_extension_associations")
30    list_extensions_paginator: ListExtensionsPaginator = client.get_paginator("list_extensions")
31    list_hosted_configuration_versions_paginator: ListHostedConfigurationVersionsPaginator = client.get_paginator("list_hosted_configuration_versions")
32    ```
33"""
34
35from .client import AppConfigClient
36from .paginator import (
37    ListApplicationsPaginator,
38    ListConfigurationProfilesPaginator,
39    ListDeploymentsPaginator,
40    ListDeploymentStrategiesPaginator,
41    ListEnvironmentsPaginator,
42    ListExtensionAssociationsPaginator,
43    ListExtensionsPaginator,
44    ListHostedConfigurationVersionsPaginator,
45)
46
47Client = AppConfigClient
48
49__all__ = (
50    "AppConfigClient",
51    "Client",
52    "ListApplicationsPaginator",
53    "ListConfigurationProfilesPaginator",
54    "ListDeploymentStrategiesPaginator",
55    "ListDeploymentsPaginator",
56    "ListEnvironmentsPaginator",
57    "ListExtensionAssociationsPaginator",
58    "ListExtensionsPaginator",
59    "ListHostedConfigurationVersionsPaginator",
60)
class AppConfigClient(botocore.client.BaseClient):
 87class AppConfigClient(BaseClient):
 88    """
 89    [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client)
 90    [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/)
 91    """
 92
 93    meta: ClientMeta
 94
 95    @property
 96    def exceptions(self) -> Exceptions:
 97        """
 98        AppConfigClient exceptions.
 99
100        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.exceptions)
101        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#exceptions)
102        """
103
104    def can_paginate(self, operation_name: str) -> bool:
105        """
106        Check if an operation can be paginated.
107
108        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.can_paginate)
109        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#can_paginate)
110        """
111
112    def close(self) -> None:
113        """
114        Closes underlying endpoint connections.
115
116        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.close)
117        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#close)
118        """
119
120    def create_application(
121        self, *, Name: str, Description: str = ..., Tags: Mapping[str, str] = ...
122    ) -> ApplicationResponseTypeDef:
123        """
124        Creates an application.
125
126        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_application)
127        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_application)
128        """
129
130    def create_configuration_profile(
131        self,
132        *,
133        ApplicationId: str,
134        Name: str,
135        LocationUri: str,
136        Description: str = ...,
137        RetrievalRoleArn: str = ...,
138        Validators: Sequence[ValidatorTypeDef] = ...,
139        Tags: Mapping[str, str] = ...,
140        Type: str = ...,
141        KmsKeyIdentifier: str = ...,
142    ) -> ConfigurationProfileTypeDef:
143        """
144        Creates a configuration profile, which is information that enables AppConfig to
145        access the configuration
146        source.
147
148        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_configuration_profile)
149        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_configuration_profile)
150        """
151
152    def create_deployment_strategy(
153        self,
154        *,
155        Name: str,
156        DeploymentDurationInMinutes: int,
157        GrowthFactor: float,
158        Description: str = ...,
159        FinalBakeTimeInMinutes: int = ...,
160        GrowthType: GrowthTypeType = ...,
161        ReplicateTo: ReplicateToType = ...,
162        Tags: Mapping[str, str] = ...,
163    ) -> DeploymentStrategyResponseTypeDef:
164        """
165        Creates a deployment strategy that defines important criteria for rolling out
166        your configuration to the designated
167        targets.
168
169        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_deployment_strategy)
170        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_deployment_strategy)
171        """
172
173    def create_environment(
174        self,
175        *,
176        ApplicationId: str,
177        Name: str,
178        Description: str = ...,
179        Monitors: Sequence[MonitorTypeDef] = ...,
180        Tags: Mapping[str, str] = ...,
181    ) -> EnvironmentResponseTypeDef:
182        """
183        Creates an environment.
184
185        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_environment)
186        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_environment)
187        """
188
189    def create_extension(
190        self,
191        *,
192        Name: str,
193        Actions: Mapping[ActionPointType, Sequence[ActionTypeDef]],
194        Description: str = ...,
195        Parameters: Mapping[str, ParameterTypeDef] = ...,
196        Tags: Mapping[str, str] = ...,
197        LatestVersionNumber: int = ...,
198    ) -> ExtensionTypeDef:
199        """
200        Creates an AppConfig extension.
201
202        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_extension)
203        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_extension)
204        """
205
206    def create_extension_association(
207        self,
208        *,
209        ExtensionIdentifier: str,
210        ResourceIdentifier: str,
211        ExtensionVersionNumber: int = ...,
212        Parameters: Mapping[str, str] = ...,
213        Tags: Mapping[str, str] = ...,
214    ) -> ExtensionAssociationTypeDef:
215        """
216        When you create an extension or configure an Amazon Web Services authored
217        extension, you associate the extension with an AppConfig application,
218        environment, or configuration
219        profile.
220
221        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_extension_association)
222        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_extension_association)
223        """
224
225    def create_hosted_configuration_version(
226        self,
227        *,
228        ApplicationId: str,
229        ConfigurationProfileId: str,
230        Content: BlobTypeDef,
231        ContentType: str,
232        Description: str = ...,
233        LatestVersionNumber: int = ...,
234        VersionLabel: str = ...,
235    ) -> HostedConfigurationVersionTypeDef:
236        """
237        Creates a new configuration in the AppConfig hosted configuration store.
238
239        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_hosted_configuration_version)
240        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_hosted_configuration_version)
241        """
242
243    def delete_application(self, *, ApplicationId: str) -> EmptyResponseMetadataTypeDef:
244        """
245        Deletes an application.
246
247        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_application)
248        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_application)
249        """
250
251    def delete_configuration_profile(
252        self, *, ApplicationId: str, ConfigurationProfileId: str
253    ) -> EmptyResponseMetadataTypeDef:
254        """
255        Deletes a configuration profile.
256
257        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_configuration_profile)
258        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_configuration_profile)
259        """
260
261    def delete_deployment_strategy(
262        self, *, DeploymentStrategyId: str
263    ) -> EmptyResponseMetadataTypeDef:
264        """
265        Deletes a deployment strategy.
266
267        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_deployment_strategy)
268        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_deployment_strategy)
269        """
270
271    def delete_environment(
272        self, *, ApplicationId: str, EnvironmentId: str
273    ) -> EmptyResponseMetadataTypeDef:
274        """
275        Deletes an environment.
276
277        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_environment)
278        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_environment)
279        """
280
281    def delete_extension(
282        self, *, ExtensionIdentifier: str, VersionNumber: int = ...
283    ) -> EmptyResponseMetadataTypeDef:
284        """
285        Deletes an AppConfig extension.
286
287        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_extension)
288        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_extension)
289        """
290
291    def delete_extension_association(
292        self, *, ExtensionAssociationId: str
293    ) -> EmptyResponseMetadataTypeDef:
294        """
295        Deletes an extension association.
296
297        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_extension_association)
298        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_extension_association)
299        """
300
301    def delete_hosted_configuration_version(
302        self, *, ApplicationId: str, ConfigurationProfileId: str, VersionNumber: int
303    ) -> EmptyResponseMetadataTypeDef:
304        """
305        Deletes a version of a configuration from the AppConfig hosted configuration
306        store.
307
308        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_hosted_configuration_version)
309        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_hosted_configuration_version)
310        """
311
312    def generate_presigned_url(
313        self,
314        ClientMethod: str,
315        Params: Mapping[str, Any] = ...,
316        ExpiresIn: int = 3600,
317        HttpMethod: str = ...,
318    ) -> str:
319        """
320        Generate a presigned url given a client, its method, and arguments.
321
322        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.generate_presigned_url)
323        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#generate_presigned_url)
324        """
325
326    def get_application(self, *, ApplicationId: str) -> ApplicationResponseTypeDef:
327        """
328        Retrieves information about an application.
329
330        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_application)
331        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_application)
332        """
333
334    def get_configuration(
335        self,
336        *,
337        Application: str,
338        Environment: str,
339        Configuration: str,
340        ClientId: str,
341        ClientConfigurationVersion: str = ...,
342    ) -> ConfigurationTypeDef:
343        """
344        (Deprecated) Retrieves the latest deployed configuration.
345
346        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_configuration)
347        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_configuration)
348        """
349
350    def get_configuration_profile(
351        self, *, ApplicationId: str, ConfigurationProfileId: str
352    ) -> ConfigurationProfileTypeDef:
353        """
354        Retrieves information about a configuration profile.
355
356        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_configuration_profile)
357        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_configuration_profile)
358        """
359
360    def get_deployment(
361        self, *, ApplicationId: str, EnvironmentId: str, DeploymentNumber: int
362    ) -> DeploymentTypeDef:
363        """
364        Retrieves information about a configuration deployment.
365
366        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_deployment)
367        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_deployment)
368        """
369
370    def get_deployment_strategy(
371        self, *, DeploymentStrategyId: str
372    ) -> DeploymentStrategyResponseTypeDef:
373        """
374        Retrieves information about a deployment strategy.
375
376        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_deployment_strategy)
377        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_deployment_strategy)
378        """
379
380    def get_environment(
381        self, *, ApplicationId: str, EnvironmentId: str
382    ) -> EnvironmentResponseTypeDef:
383        """
384        Retrieves information about an environment.
385
386        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_environment)
387        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_environment)
388        """
389
390    def get_extension(
391        self, *, ExtensionIdentifier: str, VersionNumber: int = ...
392    ) -> ExtensionTypeDef:
393        """
394        Returns information about an AppConfig extension.
395
396        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_extension)
397        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_extension)
398        """
399
400    def get_extension_association(
401        self, *, ExtensionAssociationId: str
402    ) -> ExtensionAssociationTypeDef:
403        """
404        Returns information about an AppConfig extension association.
405
406        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_extension_association)
407        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_extension_association)
408        """
409
410    def get_hosted_configuration_version(
411        self, *, ApplicationId: str, ConfigurationProfileId: str, VersionNumber: int
412    ) -> HostedConfigurationVersionTypeDef:
413        """
414        Retrieves information about a specific configuration version.
415
416        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_hosted_configuration_version)
417        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_hosted_configuration_version)
418        """
419
420    def list_applications(
421        self, *, MaxResults: int = ..., NextToken: str = ...
422    ) -> ApplicationsTypeDef:
423        """
424        Lists all applications in your Amazon Web Services account.
425
426        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_applications)
427        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_applications)
428        """
429
430    def list_configuration_profiles(
431        self, *, ApplicationId: str, MaxResults: int = ..., NextToken: str = ..., Type: str = ...
432    ) -> ConfigurationProfilesTypeDef:
433        """
434        Lists the configuration profiles for an application.
435
436        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_configuration_profiles)
437        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_configuration_profiles)
438        """
439
440    def list_deployment_strategies(
441        self, *, MaxResults: int = ..., NextToken: str = ...
442    ) -> DeploymentStrategiesTypeDef:
443        """
444        Lists deployment strategies.
445
446        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_deployment_strategies)
447        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_deployment_strategies)
448        """
449
450    def list_deployments(
451        self, *, ApplicationId: str, EnvironmentId: str, MaxResults: int = ..., NextToken: str = ...
452    ) -> DeploymentsTypeDef:
453        """
454        Lists the deployments for an environment in descending deployment number order.
455
456        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_deployments)
457        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_deployments)
458        """
459
460    def list_environments(
461        self, *, ApplicationId: str, MaxResults: int = ..., NextToken: str = ...
462    ) -> EnvironmentsTypeDef:
463        """
464        Lists the environments for an application.
465
466        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_environments)
467        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_environments)
468        """
469
470    def list_extension_associations(
471        self,
472        *,
473        ResourceIdentifier: str = ...,
474        ExtensionIdentifier: str = ...,
475        ExtensionVersionNumber: int = ...,
476        MaxResults: int = ...,
477        NextToken: str = ...,
478    ) -> ExtensionAssociationsTypeDef:
479        """
480        Lists all AppConfig extension associations in the account.
481
482        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_extension_associations)
483        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_extension_associations)
484        """
485
486    def list_extensions(
487        self, *, MaxResults: int = ..., NextToken: str = ..., Name: str = ...
488    ) -> ExtensionsTypeDef:
489        """
490        Lists all custom and Amazon Web Services authored AppConfig extensions in the
491        account.
492
493        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_extensions)
494        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_extensions)
495        """
496
497    def list_hosted_configuration_versions(
498        self,
499        *,
500        ApplicationId: str,
501        ConfigurationProfileId: str,
502        MaxResults: int = ...,
503        NextToken: str = ...,
504        VersionLabel: str = ...,
505    ) -> HostedConfigurationVersionsTypeDef:
506        """
507        Lists configurations stored in the AppConfig hosted configuration store by
508        version.
509
510        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_hosted_configuration_versions)
511        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_hosted_configuration_versions)
512        """
513
514    def list_tags_for_resource(self, *, ResourceArn: str) -> ResourceTagsTypeDef:
515        """
516        Retrieves the list of key-value tags assigned to the resource.
517
518        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_tags_for_resource)
519        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_tags_for_resource)
520        """
521
522    def start_deployment(
523        self,
524        *,
525        ApplicationId: str,
526        EnvironmentId: str,
527        DeploymentStrategyId: str,
528        ConfigurationProfileId: str,
529        ConfigurationVersion: str,
530        Description: str = ...,
531        Tags: Mapping[str, str] = ...,
532        KmsKeyIdentifier: str = ...,
533        DynamicExtensionParameters: Mapping[str, str] = ...,
534    ) -> DeploymentTypeDef:
535        """
536        Starts a deployment.
537
538        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.start_deployment)
539        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#start_deployment)
540        """
541
542    def stop_deployment(
543        self, *, ApplicationId: str, EnvironmentId: str, DeploymentNumber: int
544    ) -> DeploymentTypeDef:
545        """
546        Stops a deployment.
547
548        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.stop_deployment)
549        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#stop_deployment)
550        """
551
552    def tag_resource(
553        self, *, ResourceArn: str, Tags: Mapping[str, str]
554    ) -> EmptyResponseMetadataTypeDef:
555        """
556        Assigns metadata to an AppConfig resource.
557
558        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.tag_resource)
559        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#tag_resource)
560        """
561
562    def untag_resource(
563        self, *, ResourceArn: str, TagKeys: Sequence[str]
564    ) -> EmptyResponseMetadataTypeDef:
565        """
566        Deletes a tag key and value from an AppConfig resource.
567
568        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.untag_resource)
569        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#untag_resource)
570        """
571
572    def update_application(
573        self, *, ApplicationId: str, Name: str = ..., Description: str = ...
574    ) -> ApplicationResponseTypeDef:
575        """
576        Updates an application.
577
578        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.update_application)
579        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#update_application)
580        """
581
582    def update_configuration_profile(
583        self,
584        *,
585        ApplicationId: str,
586        ConfigurationProfileId: str,
587        Name: str = ...,
588        Description: str = ...,
589        RetrievalRoleArn: str = ...,
590        Validators: Sequence[ValidatorTypeDef] = ...,
591        KmsKeyIdentifier: str = ...,
592    ) -> ConfigurationProfileTypeDef:
593        """
594        Updates a configuration profile.
595
596        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.update_configuration_profile)
597        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#update_configuration_profile)
598        """
599
600    def update_deployment_strategy(
601        self,
602        *,
603        DeploymentStrategyId: str,
604        Description: str = ...,
605        DeploymentDurationInMinutes: int = ...,
606        FinalBakeTimeInMinutes: int = ...,
607        GrowthFactor: float = ...,
608        GrowthType: GrowthTypeType = ...,
609    ) -> DeploymentStrategyResponseTypeDef:
610        """
611        Updates a deployment strategy.
612
613        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.update_deployment_strategy)
614        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#update_deployment_strategy)
615        """
616
617    def update_environment(
618        self,
619        *,
620        ApplicationId: str,
621        EnvironmentId: str,
622        Name: str = ...,
623        Description: str = ...,
624        Monitors: Sequence[MonitorTypeDef] = ...,
625    ) -> EnvironmentResponseTypeDef:
626        """
627        Updates an environment.
628
629        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.update_environment)
630        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#update_environment)
631        """
632
633    def update_extension(
634        self,
635        *,
636        ExtensionIdentifier: str,
637        Description: str = ...,
638        Actions: Mapping[ActionPointType, Sequence[ActionTypeDef]] = ...,
639        Parameters: Mapping[str, ParameterTypeDef] = ...,
640        VersionNumber: int = ...,
641    ) -> ExtensionTypeDef:
642        """
643        Updates an AppConfig extension.
644
645        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.update_extension)
646        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#update_extension)
647        """
648
649    def update_extension_association(
650        self, *, ExtensionAssociationId: str, Parameters: Mapping[str, str] = ...
651    ) -> ExtensionAssociationTypeDef:
652        """
653        Updates an association.
654
655        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.update_extension_association)
656        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#update_extension_association)
657        """
658
659    def validate_configuration(
660        self, *, ApplicationId: str, ConfigurationProfileId: str, ConfigurationVersion: str
661    ) -> EmptyResponseMetadataTypeDef:
662        """
663        Uses the validators in a configuration profile to validate a configuration.
664
665        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.validate_configuration)
666        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#validate_configuration)
667        """
668
669    @overload
670    def get_paginator(
671        self, operation_name: Literal["list_applications"]
672    ) -> ListApplicationsPaginator:
673        """
674        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_paginator)
675        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_paginator)
676        """
677
678    @overload
679    def get_paginator(
680        self, operation_name: Literal["list_configuration_profiles"]
681    ) -> ListConfigurationProfilesPaginator:
682        """
683        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_paginator)
684        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_paginator)
685        """
686
687    @overload
688    def get_paginator(
689        self, operation_name: Literal["list_deployment_strategies"]
690    ) -> ListDeploymentStrategiesPaginator:
691        """
692        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_paginator)
693        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_paginator)
694        """
695
696    @overload
697    def get_paginator(
698        self, operation_name: Literal["list_deployments"]
699    ) -> ListDeploymentsPaginator:
700        """
701        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_paginator)
702        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_paginator)
703        """
704
705    @overload
706    def get_paginator(
707        self, operation_name: Literal["list_environments"]
708    ) -> ListEnvironmentsPaginator:
709        """
710        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_paginator)
711        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_paginator)
712        """
713
714    @overload
715    def get_paginator(
716        self, operation_name: Literal["list_extension_associations"]
717    ) -> ListExtensionAssociationsPaginator:
718        """
719        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_paginator)
720        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_paginator)
721        """
722
723    @overload
724    def get_paginator(self, operation_name: Literal["list_extensions"]) -> ListExtensionsPaginator:
725        """
726        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_paginator)
727        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_paginator)
728        """
729
730    @overload
731    def get_paginator(
732        self, operation_name: Literal["list_hosted_configuration_versions"]
733    ) -> ListHostedConfigurationVersionsPaginator:
734        """
735        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_paginator)
736        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_paginator)
737        """

.Client">Show boto3 documentation Show boto3-stubs documentation

meta: botocore.client.ClientMeta
exceptions: mypy_boto3_appconfig.client.Exceptions
 95    @property
 96    def exceptions(self) -> Exceptions:
 97        """
 98        AppConfigClient exceptions.
 99
100        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.exceptions)
101        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#exceptions)
102        """
def can_paginate(self, operation_name: str) -> bool:
104    def can_paginate(self, operation_name: str) -> bool:
105        """
106        Check if an operation can be paginated.
107
108        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.can_paginate)
109        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#can_paginate)
110        """

Check if an operation can be paginated.

Show boto3 documentation Show boto3-stubs documentation

def close(self) -> None:
112    def close(self) -> None:
113        """
114        Closes underlying endpoint connections.
115
116        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.close)
117        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#close)
118        """

Closes underlying endpoint connections.

Show boto3 documentation Show boto3-stubs documentation

def create_application( self, *, Name: str, Description: str = Ellipsis, Tags: Mapping[str, str] = Ellipsis) -> mypy_boto3_appconfig.type_defs.ApplicationResponseTypeDef:
120    def create_application(
121        self, *, Name: str, Description: str = ..., Tags: Mapping[str, str] = ...
122    ) -> ApplicationResponseTypeDef:
123        """
124        Creates an application.
125
126        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_application)
127        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_application)
128        """
def create_configuration_profile( self, *, ApplicationId: str, Name: str, LocationUri: str, Description: str = Ellipsis, RetrievalRoleArn: str = Ellipsis, Validators: Sequence[mypy_boto3_appconfig.type_defs.ValidatorTypeDef] = Ellipsis, Tags: Mapping[str, str] = Ellipsis, Type: str = Ellipsis, KmsKeyIdentifier: str = Ellipsis) -> mypy_boto3_appconfig.type_defs.ConfigurationProfileTypeDef:
130    def create_configuration_profile(
131        self,
132        *,
133        ApplicationId: str,
134        Name: str,
135        LocationUri: str,
136        Description: str = ...,
137        RetrievalRoleArn: str = ...,
138        Validators: Sequence[ValidatorTypeDef] = ...,
139        Tags: Mapping[str, str] = ...,
140        Type: str = ...,
141        KmsKeyIdentifier: str = ...,
142    ) -> ConfigurationProfileTypeDef:
143        """
144        Creates a configuration profile, which is information that enables AppConfig to
145        access the configuration
146        source.
147
148        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_configuration_profile)
149        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_configuration_profile)
150        """

Creates a configuration profile, which is information that enables AppConfig to access the configuration source.

Show boto3 documentation Show boto3-stubs documentation

def create_deployment_strategy( self, *, Name: str, DeploymentDurationInMinutes: int, GrowthFactor: float, Description: str = Ellipsis, FinalBakeTimeInMinutes: int = Ellipsis, GrowthType: Literal['EXPONENTIAL', 'LINEAR'] = Ellipsis, ReplicateTo: Literal['NONE', 'SSM_DOCUMENT'] = Ellipsis, Tags: Mapping[str, str] = Ellipsis) -> mypy_boto3_appconfig.type_defs.DeploymentStrategyResponseTypeDef:
152    def create_deployment_strategy(
153        self,
154        *,
155        Name: str,
156        DeploymentDurationInMinutes: int,
157        GrowthFactor: float,
158        Description: str = ...,
159        FinalBakeTimeInMinutes: int = ...,
160        GrowthType: GrowthTypeType = ...,
161        ReplicateTo: ReplicateToType = ...,
162        Tags: Mapping[str, str] = ...,
163    ) -> DeploymentStrategyResponseTypeDef:
164        """
165        Creates a deployment strategy that defines important criteria for rolling out
166        your configuration to the designated
167        targets.
168
169        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_deployment_strategy)
170        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_deployment_strategy)
171        """

Creates a deployment strategy that defines important criteria for rolling out your configuration to the designated targets.

Show boto3 documentation Show boto3-stubs documentation

def create_environment( self, *, ApplicationId: str, Name: str, Description: str = Ellipsis, Monitors: Sequence[mypy_boto3_appconfig.type_defs.MonitorTypeDef] = Ellipsis, Tags: Mapping[str, str] = Ellipsis) -> mypy_boto3_appconfig.type_defs.EnvironmentResponseTypeDef:
173    def create_environment(
174        self,
175        *,
176        ApplicationId: str,
177        Name: str,
178        Description: str = ...,
179        Monitors: Sequence[MonitorTypeDef] = ...,
180        Tags: Mapping[str, str] = ...,
181    ) -> EnvironmentResponseTypeDef:
182        """
183        Creates an environment.
184
185        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_environment)
186        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_environment)
187        """
def create_extension( self, *, Name: str, Actions: Mapping[Literal['ON_DEPLOYMENT_BAKING', 'ON_DEPLOYMENT_COMPLETE', 'ON_DEPLOYMENT_ROLLED_BACK', 'ON_DEPLOYMENT_START', 'ON_DEPLOYMENT_STEP', 'PRE_CREATE_HOSTED_CONFIGURATION_VERSION', 'PRE_START_DEPLOYMENT'], Sequence[mypy_boto3_appconfig.type_defs.ActionTypeDef]], Description: str = Ellipsis, Parameters: Mapping[str, mypy_boto3_appconfig.type_defs.ParameterTypeDef] = Ellipsis, Tags: Mapping[str, str] = Ellipsis, LatestVersionNumber: int = Ellipsis) -> mypy_boto3_appconfig.type_defs.ExtensionTypeDef:
189    def create_extension(
190        self,
191        *,
192        Name: str,
193        Actions: Mapping[ActionPointType, Sequence[ActionTypeDef]],
194        Description: str = ...,
195        Parameters: Mapping[str, ParameterTypeDef] = ...,
196        Tags: Mapping[str, str] = ...,
197        LatestVersionNumber: int = ...,
198    ) -> ExtensionTypeDef:
199        """
200        Creates an AppConfig extension.
201
202        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_extension)
203        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_extension)
204        """
def create_extension_association( self, *, ExtensionIdentifier: str, ResourceIdentifier: str, ExtensionVersionNumber: int = Ellipsis, Parameters: Mapping[str, str] = Ellipsis, Tags: Mapping[str, str] = Ellipsis) -> mypy_boto3_appconfig.type_defs.ExtensionAssociationTypeDef:
206    def create_extension_association(
207        self,
208        *,
209        ExtensionIdentifier: str,
210        ResourceIdentifier: str,
211        ExtensionVersionNumber: int = ...,
212        Parameters: Mapping[str, str] = ...,
213        Tags: Mapping[str, str] = ...,
214    ) -> ExtensionAssociationTypeDef:
215        """
216        When you create an extension or configure an Amazon Web Services authored
217        extension, you associate the extension with an AppConfig application,
218        environment, or configuration
219        profile.
220
221        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_extension_association)
222        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_extension_association)
223        """

When you create an extension or configure an Amazon Web Services authored extension, you associate the extension with an AppConfig application, environment, or configuration profile.

Show boto3 documentation Show boto3-stubs documentation

def create_hosted_configuration_version( self, *, ApplicationId: str, ConfigurationProfileId: str, Content: Union[str, bytes, IO[Any], botocore.response.StreamingBody], ContentType: str, Description: str = Ellipsis, LatestVersionNumber: int = Ellipsis, VersionLabel: str = Ellipsis) -> mypy_boto3_appconfig.type_defs.HostedConfigurationVersionTypeDef:
225    def create_hosted_configuration_version(
226        self,
227        *,
228        ApplicationId: str,
229        ConfigurationProfileId: str,
230        Content: BlobTypeDef,
231        ContentType: str,
232        Description: str = ...,
233        LatestVersionNumber: int = ...,
234        VersionLabel: str = ...,
235    ) -> HostedConfigurationVersionTypeDef:
236        """
237        Creates a new configuration in the AppConfig hosted configuration store.
238
239        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.create_hosted_configuration_version)
240        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#create_hosted_configuration_version)
241        """

Creates a new configuration in the AppConfig hosted configuration store.

Show boto3 documentation Show boto3-stubs documentation

def delete_application( self, *, ApplicationId: str) -> mypy_boto3_appconfig.type_defs.EmptyResponseMetadataTypeDef:
243    def delete_application(self, *, ApplicationId: str) -> EmptyResponseMetadataTypeDef:
244        """
245        Deletes an application.
246
247        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_application)
248        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_application)
249        """
def delete_configuration_profile( self, *, ApplicationId: str, ConfigurationProfileId: str) -> mypy_boto3_appconfig.type_defs.EmptyResponseMetadataTypeDef:
251    def delete_configuration_profile(
252        self, *, ApplicationId: str, ConfigurationProfileId: str
253    ) -> EmptyResponseMetadataTypeDef:
254        """
255        Deletes a configuration profile.
256
257        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_configuration_profile)
258        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_configuration_profile)
259        """
def delete_deployment_strategy( self, *, DeploymentStrategyId: str) -> mypy_boto3_appconfig.type_defs.EmptyResponseMetadataTypeDef:
261    def delete_deployment_strategy(
262        self, *, DeploymentStrategyId: str
263    ) -> EmptyResponseMetadataTypeDef:
264        """
265        Deletes a deployment strategy.
266
267        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_deployment_strategy)
268        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_deployment_strategy)
269        """
def delete_environment( self, *, ApplicationId: str, EnvironmentId: str) -> mypy_boto3_appconfig.type_defs.EmptyResponseMetadataTypeDef:
271    def delete_environment(
272        self, *, ApplicationId: str, EnvironmentId: str
273    ) -> EmptyResponseMetadataTypeDef:
274        """
275        Deletes an environment.
276
277        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_environment)
278        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_environment)
279        """
def delete_extension( self, *, ExtensionIdentifier: str, VersionNumber: int = Ellipsis) -> mypy_boto3_appconfig.type_defs.EmptyResponseMetadataTypeDef:
281    def delete_extension(
282        self, *, ExtensionIdentifier: str, VersionNumber: int = ...
283    ) -> EmptyResponseMetadataTypeDef:
284        """
285        Deletes an AppConfig extension.
286
287        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_extension)
288        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_extension)
289        """
def delete_extension_association( self, *, ExtensionAssociationId: str) -> mypy_boto3_appconfig.type_defs.EmptyResponseMetadataTypeDef:
291    def delete_extension_association(
292        self, *, ExtensionAssociationId: str
293    ) -> EmptyResponseMetadataTypeDef:
294        """
295        Deletes an extension association.
296
297        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_extension_association)
298        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_extension_association)
299        """

Deletes an extension association.

Show boto3 documentation Show boto3-stubs documentation

def delete_hosted_configuration_version( self, *, ApplicationId: str, ConfigurationProfileId: str, VersionNumber: int) -> mypy_boto3_appconfig.type_defs.EmptyResponseMetadataTypeDef:
301    def delete_hosted_configuration_version(
302        self, *, ApplicationId: str, ConfigurationProfileId: str, VersionNumber: int
303    ) -> EmptyResponseMetadataTypeDef:
304        """
305        Deletes a version of a configuration from the AppConfig hosted configuration
306        store.
307
308        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.delete_hosted_configuration_version)
309        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#delete_hosted_configuration_version)
310        """

Deletes a version of a configuration from the AppConfig hosted configuration store.

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:
312    def generate_presigned_url(
313        self,
314        ClientMethod: str,
315        Params: Mapping[str, Any] = ...,
316        ExpiresIn: int = 3600,
317        HttpMethod: str = ...,
318    ) -> str:
319        """
320        Generate a presigned url given a client, its method, and arguments.
321
322        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.generate_presigned_url)
323        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#generate_presigned_url)
324        """

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

Show boto3 documentation Show boto3-stubs documentation

def get_application( self, *, ApplicationId: str) -> mypy_boto3_appconfig.type_defs.ApplicationResponseTypeDef:
326    def get_application(self, *, ApplicationId: str) -> ApplicationResponseTypeDef:
327        """
328        Retrieves information about an application.
329
330        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_application)
331        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_application)
332        """

Retrieves information about an application.

Show boto3 documentation Show boto3-stubs documentation

def get_configuration( self, *, Application: str, Environment: str, Configuration: str, ClientId: str, ClientConfigurationVersion: str = Ellipsis) -> mypy_boto3_appconfig.type_defs.ConfigurationTypeDef:
334    def get_configuration(
335        self,
336        *,
337        Application: str,
338        Environment: str,
339        Configuration: str,
340        ClientId: str,
341        ClientConfigurationVersion: str = ...,
342    ) -> ConfigurationTypeDef:
343        """
344        (Deprecated) Retrieves the latest deployed configuration.
345
346        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_configuration)
347        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_configuration)
348        """

(Deprecated) Retrieves the latest deployed configuration.

Show boto3 documentation Show boto3-stubs documentation

def get_configuration_profile( self, *, ApplicationId: str, ConfigurationProfileId: str) -> mypy_boto3_appconfig.type_defs.ConfigurationProfileTypeDef:
350    def get_configuration_profile(
351        self, *, ApplicationId: str, ConfigurationProfileId: str
352    ) -> ConfigurationProfileTypeDef:
353        """
354        Retrieves information about a configuration profile.
355
356        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_configuration_profile)
357        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_configuration_profile)
358        """

Retrieves information about a configuration profile.

Show boto3 documentation Show boto3-stubs documentation

def get_deployment( self, *, ApplicationId: str, EnvironmentId: str, DeploymentNumber: int) -> mypy_boto3_appconfig.type_defs.DeploymentTypeDef:
360    def get_deployment(
361        self, *, ApplicationId: str, EnvironmentId: str, DeploymentNumber: int
362    ) -> DeploymentTypeDef:
363        """
364        Retrieves information about a configuration deployment.
365
366        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_deployment)
367        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_deployment)
368        """

Retrieves information about a configuration deployment.

Show boto3 documentation Show boto3-stubs documentation

def get_deployment_strategy( self, *, DeploymentStrategyId: str) -> mypy_boto3_appconfig.type_defs.DeploymentStrategyResponseTypeDef:
370    def get_deployment_strategy(
371        self, *, DeploymentStrategyId: str
372    ) -> DeploymentStrategyResponseTypeDef:
373        """
374        Retrieves information about a deployment strategy.
375
376        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_deployment_strategy)
377        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_deployment_strategy)
378        """

Retrieves information about a deployment strategy.

Show boto3 documentation Show boto3-stubs documentation

def get_environment( self, *, ApplicationId: str, EnvironmentId: str) -> mypy_boto3_appconfig.type_defs.EnvironmentResponseTypeDef:
380    def get_environment(
381        self, *, ApplicationId: str, EnvironmentId: str
382    ) -> EnvironmentResponseTypeDef:
383        """
384        Retrieves information about an environment.
385
386        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_environment)
387        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_environment)
388        """

Retrieves information about an environment.

Show boto3 documentation Show boto3-stubs documentation

def get_extension( self, *, ExtensionIdentifier: str, VersionNumber: int = Ellipsis) -> mypy_boto3_appconfig.type_defs.ExtensionTypeDef:
390    def get_extension(
391        self, *, ExtensionIdentifier: str, VersionNumber: int = ...
392    ) -> ExtensionTypeDef:
393        """
394        Returns information about an AppConfig extension.
395
396        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_extension)
397        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_extension)
398        """

Returns information about an AppConfig extension.

Show boto3 documentation Show boto3-stubs documentation

def get_extension_association( self, *, ExtensionAssociationId: str) -> mypy_boto3_appconfig.type_defs.ExtensionAssociationTypeDef:
400    def get_extension_association(
401        self, *, ExtensionAssociationId: str
402    ) -> ExtensionAssociationTypeDef:
403        """
404        Returns information about an AppConfig extension association.
405
406        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_extension_association)
407        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_extension_association)
408        """

Returns information about an AppConfig extension association.

Show boto3 documentation Show boto3-stubs documentation

def get_hosted_configuration_version( self, *, ApplicationId: str, ConfigurationProfileId: str, VersionNumber: int) -> mypy_boto3_appconfig.type_defs.HostedConfigurationVersionTypeDef:
410    def get_hosted_configuration_version(
411        self, *, ApplicationId: str, ConfigurationProfileId: str, VersionNumber: int
412    ) -> HostedConfigurationVersionTypeDef:
413        """
414        Retrieves information about a specific configuration version.
415
416        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.get_hosted_configuration_version)
417        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#get_hosted_configuration_version)
418        """

Retrieves information about a specific configuration version.

Show boto3 documentation Show boto3-stubs documentation

def list_applications( self, *, MaxResults: int = Ellipsis, NextToken: str = Ellipsis) -> mypy_boto3_appconfig.type_defs.ApplicationsTypeDef:
420    def list_applications(
421        self, *, MaxResults: int = ..., NextToken: str = ...
422    ) -> ApplicationsTypeDef:
423        """
424        Lists all applications in your Amazon Web Services account.
425
426        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_applications)
427        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_applications)
428        """

Lists all applications in your Amazon Web Services account.

Show boto3 documentation Show boto3-stubs documentation

def list_configuration_profiles( self, *, ApplicationId: str, MaxResults: int = Ellipsis, NextToken: str = Ellipsis, Type: str = Ellipsis) -> mypy_boto3_appconfig.type_defs.ConfigurationProfilesTypeDef:
430    def list_configuration_profiles(
431        self, *, ApplicationId: str, MaxResults: int = ..., NextToken: str = ..., Type: str = ...
432    ) -> ConfigurationProfilesTypeDef:
433        """
434        Lists the configuration profiles for an application.
435
436        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_configuration_profiles)
437        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_configuration_profiles)
438        """

Lists the configuration profiles for an application.

Show boto3 documentation Show boto3-stubs documentation

def list_deployment_strategies( self, *, MaxResults: int = Ellipsis, NextToken: str = Ellipsis) -> mypy_boto3_appconfig.type_defs.DeploymentStrategiesTypeDef:
440    def list_deployment_strategies(
441        self, *, MaxResults: int = ..., NextToken: str = ...
442    ) -> DeploymentStrategiesTypeDef:
443        """
444        Lists deployment strategies.
445
446        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_deployment_strategies)
447        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_deployment_strategies)
448        """
def list_deployments( self, *, ApplicationId: str, EnvironmentId: str, MaxResults: int = Ellipsis, NextToken: str = Ellipsis) -> mypy_boto3_appconfig.type_defs.DeploymentsTypeDef:
450    def list_deployments(
451        self, *, ApplicationId: str, EnvironmentId: str, MaxResults: int = ..., NextToken: str = ...
452    ) -> DeploymentsTypeDef:
453        """
454        Lists the deployments for an environment in descending deployment number order.
455
456        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_deployments)
457        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_deployments)
458        """

Lists the deployments for an environment in descending deployment number order.

Show boto3 documentation Show boto3-stubs documentation

def list_environments( self, *, ApplicationId: str, MaxResults: int = Ellipsis, NextToken: str = Ellipsis) -> mypy_boto3_appconfig.type_defs.EnvironmentsTypeDef:
460    def list_environments(
461        self, *, ApplicationId: str, MaxResults: int = ..., NextToken: str = ...
462    ) -> EnvironmentsTypeDef:
463        """
464        Lists the environments for an application.
465
466        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_environments)
467        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_environments)
468        """

Lists the environments for an application.

Show boto3 documentation Show boto3-stubs documentation

def list_extension_associations( self, *, ResourceIdentifier: str = Ellipsis, ExtensionIdentifier: str = Ellipsis, ExtensionVersionNumber: int = Ellipsis, MaxResults: int = Ellipsis, NextToken: str = Ellipsis) -> mypy_boto3_appconfig.type_defs.ExtensionAssociationsTypeDef:
470    def list_extension_associations(
471        self,
472        *,
473        ResourceIdentifier: str = ...,
474        ExtensionIdentifier: str = ...,
475        ExtensionVersionNumber: int = ...,
476        MaxResults: int = ...,
477        NextToken: str = ...,
478    ) -> ExtensionAssociationsTypeDef:
479        """
480        Lists all AppConfig extension associations in the account.
481
482        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_extension_associations)
483        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_extension_associations)
484        """

Lists all AppConfig extension associations in the account.

Show boto3 documentation Show boto3-stubs documentation

def list_extensions( self, *, MaxResults: int = Ellipsis, NextToken: str = Ellipsis, Name: str = Ellipsis) -> mypy_boto3_appconfig.type_defs.ExtensionsTypeDef:
486    def list_extensions(
487        self, *, MaxResults: int = ..., NextToken: str = ..., Name: str = ...
488    ) -> ExtensionsTypeDef:
489        """
490        Lists all custom and Amazon Web Services authored AppConfig extensions in the
491        account.
492
493        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_extensions)
494        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_extensions)
495        """

Lists all custom and Amazon Web Services authored AppConfig extensions in the account.

Show boto3 documentation Show boto3-stubs documentation

def list_hosted_configuration_versions( self, *, ApplicationId: str, ConfigurationProfileId: str, MaxResults: int = Ellipsis, NextToken: str = Ellipsis, VersionLabel: str = Ellipsis) -> mypy_boto3_appconfig.type_defs.HostedConfigurationVersionsTypeDef:
497    def list_hosted_configuration_versions(
498        self,
499        *,
500        ApplicationId: str,
501        ConfigurationProfileId: str,
502        MaxResults: int = ...,
503        NextToken: str = ...,
504        VersionLabel: str = ...,
505    ) -> HostedConfigurationVersionsTypeDef:
506        """
507        Lists configurations stored in the AppConfig hosted configuration store by
508        version.
509
510        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_hosted_configuration_versions)
511        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_hosted_configuration_versions)
512        """

Lists configurations stored in the AppConfig hosted configuration store by version.

Show boto3 documentation Show boto3-stubs documentation

def list_tags_for_resource( self, *, ResourceArn: str) -> mypy_boto3_appconfig.type_defs.ResourceTagsTypeDef:
514    def list_tags_for_resource(self, *, ResourceArn: str) -> ResourceTagsTypeDef:
515        """
516        Retrieves the list of key-value tags assigned to the resource.
517
518        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.list_tags_for_resource)
519        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#list_tags_for_resource)
520        """

Retrieves the list of key-value tags assigned to the resource.

Show boto3 documentation Show boto3-stubs documentation

def start_deployment( self, *, ApplicationId: str, EnvironmentId: str, DeploymentStrategyId: str, ConfigurationProfileId: str, ConfigurationVersion: str, Description: str = Ellipsis, Tags: Mapping[str, str] = Ellipsis, KmsKeyIdentifier: str = Ellipsis, DynamicExtensionParameters: Mapping[str, str] = Ellipsis) -> mypy_boto3_appconfig.type_defs.DeploymentTypeDef:
522    def start_deployment(
523        self,
524        *,
525        ApplicationId: str,
526        EnvironmentId: str,
527        DeploymentStrategyId: str,
528        ConfigurationProfileId: str,
529        ConfigurationVersion: str,
530        Description: str = ...,
531        Tags: Mapping[str, str] = ...,
532        KmsKeyIdentifier: str = ...,
533        DynamicExtensionParameters: Mapping[str, str] = ...,
534    ) -> DeploymentTypeDef:
535        """
536        Starts a deployment.
537
538        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.start_deployment)
539        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#start_deployment)
540        """
def stop_deployment( self, *, ApplicationId: str, EnvironmentId: str, DeploymentNumber: int) -> mypy_boto3_appconfig.type_defs.DeploymentTypeDef:
542    def stop_deployment(
543        self, *, ApplicationId: str, EnvironmentId: str, DeploymentNumber: int
544    ) -> DeploymentTypeDef:
545        """
546        Stops a deployment.
547
548        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.stop_deployment)
549        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#stop_deployment)
550        """
def tag_resource( self, *, ResourceArn: str, Tags: Mapping[str, str]) -> mypy_boto3_appconfig.type_defs.EmptyResponseMetadataTypeDef:
552    def tag_resource(
553        self, *, ResourceArn: str, Tags: Mapping[str, str]
554    ) -> EmptyResponseMetadataTypeDef:
555        """
556        Assigns metadata to an AppConfig resource.
557
558        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.tag_resource)
559        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#tag_resource)
560        """

Assigns metadata to an AppConfig resource.

Show boto3 documentation Show boto3-stubs documentation

def untag_resource( self, *, ResourceArn: str, TagKeys: Sequence[str]) -> mypy_boto3_appconfig.type_defs.EmptyResponseMetadataTypeDef:
562    def untag_resource(
563        self, *, ResourceArn: str, TagKeys: Sequence[str]
564    ) -> EmptyResponseMetadataTypeDef:
565        """
566        Deletes a tag key and value from an AppConfig resource.
567
568        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.untag_resource)
569        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#untag_resource)
570        """

Deletes a tag key and value from an AppConfig resource.

Show boto3 documentation Show boto3-stubs documentation

def update_application( self, *, ApplicationId: str, Name: str = Ellipsis, Description: str = Ellipsis) -> mypy_boto3_appconfig.type_defs.ApplicationResponseTypeDef:
572    def update_application(
573        self, *, ApplicationId: str, Name: str = ..., Description: str = ...
574    ) -> ApplicationResponseTypeDef:
575        """
576        Updates an application.
577
578        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.update_application)
579        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#update_application)
580        """
def update_configuration_profile( self, *, ApplicationId: str, ConfigurationProfileId: str, Name: str = Ellipsis, Description: str = Ellipsis, RetrievalRoleArn: str = Ellipsis, Validators: Sequence[mypy_boto3_appconfig.type_defs.ValidatorTypeDef] = Ellipsis, KmsKeyIdentifier: str = Ellipsis) -> mypy_boto3_appconfig.type_defs.ConfigurationProfileTypeDef:
582    def update_configuration_profile(
583        self,
584        *,
585        ApplicationId: str,
586        ConfigurationProfileId: str,
587        Name: str = ...,
588        Description: str = ...,
589        RetrievalRoleArn: str = ...,
590        Validators: Sequence[ValidatorTypeDef] = ...,
591        KmsKeyIdentifier: str = ...,
592    ) -> ConfigurationProfileTypeDef:
593        """
594        Updates a configuration profile.
595
596        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.update_configuration_profile)
597        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#update_configuration_profile)
598        """
def update_deployment_strategy( self, *, DeploymentStrategyId: str, Description: str = Ellipsis, DeploymentDurationInMinutes: int = Ellipsis, FinalBakeTimeInMinutes: int = Ellipsis, GrowthFactor: float = Ellipsis, GrowthType: Literal['EXPONENTIAL', 'LINEAR'] = Ellipsis) -> mypy_boto3_appconfig.type_defs.DeploymentStrategyResponseTypeDef:
600    def update_deployment_strategy(
601        self,
602        *,
603        DeploymentStrategyId: str,
604        Description: str = ...,
605        DeploymentDurationInMinutes: int = ...,
606        FinalBakeTimeInMinutes: int = ...,
607        GrowthFactor: float = ...,
608        GrowthType: GrowthTypeType = ...,
609    ) -> DeploymentStrategyResponseTypeDef:
610        """
611        Updates a deployment strategy.
612
613        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.update_deployment_strategy)
614        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#update_deployment_strategy)
615        """
def update_environment( self, *, ApplicationId: str, EnvironmentId: str, Name: str = Ellipsis, Description: str = Ellipsis, Monitors: Sequence[mypy_boto3_appconfig.type_defs.MonitorTypeDef] = Ellipsis) -> mypy_boto3_appconfig.type_defs.EnvironmentResponseTypeDef:
617    def update_environment(
618        self,
619        *,
620        ApplicationId: str,
621        EnvironmentId: str,
622        Name: str = ...,
623        Description: str = ...,
624        Monitors: Sequence[MonitorTypeDef] = ...,
625    ) -> EnvironmentResponseTypeDef:
626        """
627        Updates an environment.
628
629        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.update_environment)
630        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#update_environment)
631        """
def update_extension( self, *, ExtensionIdentifier: str, Description: str = Ellipsis, Actions: Mapping[Literal['ON_DEPLOYMENT_BAKING', 'ON_DEPLOYMENT_COMPLETE', 'ON_DEPLOYMENT_ROLLED_BACK', 'ON_DEPLOYMENT_START', 'ON_DEPLOYMENT_STEP', 'PRE_CREATE_HOSTED_CONFIGURATION_VERSION', 'PRE_START_DEPLOYMENT'], Sequence[mypy_boto3_appconfig.type_defs.ActionTypeDef]] = Ellipsis, Parameters: Mapping[str, mypy_boto3_appconfig.type_defs.ParameterTypeDef] = Ellipsis, VersionNumber: int = Ellipsis) -> mypy_boto3_appconfig.type_defs.ExtensionTypeDef:
633    def update_extension(
634        self,
635        *,
636        ExtensionIdentifier: str,
637        Description: str = ...,
638        Actions: Mapping[ActionPointType, Sequence[ActionTypeDef]] = ...,
639        Parameters: Mapping[str, ParameterTypeDef] = ...,
640        VersionNumber: int = ...,
641    ) -> ExtensionTypeDef:
642        """
643        Updates an AppConfig extension.
644
645        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.update_extension)
646        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#update_extension)
647        """
def update_extension_association( self, *, ExtensionAssociationId: str, Parameters: Mapping[str, str] = Ellipsis) -> mypy_boto3_appconfig.type_defs.ExtensionAssociationTypeDef:
649    def update_extension_association(
650        self, *, ExtensionAssociationId: str, Parameters: Mapping[str, str] = ...
651    ) -> ExtensionAssociationTypeDef:
652        """
653        Updates an association.
654
655        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.update_extension_association)
656        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#update_extension_association)
657        """
def validate_configuration( self, *, ApplicationId: str, ConfigurationProfileId: str, ConfigurationVersion: str) -> mypy_boto3_appconfig.type_defs.EmptyResponseMetadataTypeDef:
659    def validate_configuration(
660        self, *, ApplicationId: str, ConfigurationProfileId: str, ConfigurationVersion: str
661    ) -> EmptyResponseMetadataTypeDef:
662        """
663        Uses the validators in a configuration profile to validate a configuration.
664
665        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Client.validate_configuration)
666        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/client/#validate_configuration)
667        """

Uses the validators in a configuration profile to validate a configuration.

Show boto3 documentation Show boto3-stubs documentation

def get_paginator(*args, **kwds):
2684def _overload_dummy(*args, **kwds):
2685    """Helper for @overload to raise when called."""
2686    raise NotImplementedError(
2687        "You should not call an overloaded function. "
2688        "A series of @overload-decorated functions "
2689        "outside a stub module should always be followed "
2690        "by an implementation that is not @overload-ed.")

Helper for @overload to raise when called.

Inherited Members
botocore.client.BaseClient
BaseClient
get_waiter
waiter_names
Client = <class 'AppConfigClient'>
class ListApplicationsPaginator(botocore.paginate.Paginator):
75class ListApplicationsPaginator(Paginator):
76    """
77    [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListApplications)
78    [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listapplicationspaginator)
79    """
80
81    def paginate(
82        self, *, PaginationConfig: PaginatorConfigTypeDef = ...
83    ) -> _PageIterator[ApplicationsTypeDef]:
84        """
85        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListApplications.paginate)
86        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listapplicationspaginator)
87        """
def paginate( self, *, PaginationConfig: mypy_boto3_appconfig.type_defs.PaginatorConfigTypeDef = Ellipsis) -> mypy_boto3_appconfig.paginator._PageIterator[mypy_boto3_appconfig.type_defs.ApplicationsTypeDef]:
81    def paginate(
82        self, *, PaginationConfig: PaginatorConfigTypeDef = ...
83    ) -> _PageIterator[ApplicationsTypeDef]:
84        """
85        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListApplications.paginate)
86        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listapplicationspaginator)
87        """
Inherited Members
botocore.paginate.Paginator
Paginator
PAGE_ITERATOR_CLS
result_keys
class ListConfigurationProfilesPaginator(botocore.paginate.Paginator):
 90class ListConfigurationProfilesPaginator(Paginator):
 91    """
 92    [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListConfigurationProfiles)
 93    [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listconfigurationprofilespaginator)
 94    """
 95
 96    def paginate(
 97        self, *, ApplicationId: str, Type: str = ..., PaginationConfig: PaginatorConfigTypeDef = ...
 98    ) -> _PageIterator[ConfigurationProfilesTypeDef]:
 99        """
100        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListConfigurationProfiles.paginate)
101        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listconfigurationprofilespaginator)
102        """
def paginate( self, *, ApplicationId: str, Type: str = Ellipsis, PaginationConfig: mypy_boto3_appconfig.type_defs.PaginatorConfigTypeDef = Ellipsis) -> mypy_boto3_appconfig.paginator._PageIterator[mypy_boto3_appconfig.type_defs.ConfigurationProfilesTypeDef]:
 96    def paginate(
 97        self, *, ApplicationId: str, Type: str = ..., PaginationConfig: PaginatorConfigTypeDef = ...
 98    ) -> _PageIterator[ConfigurationProfilesTypeDef]:
 99        """
100        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListConfigurationProfiles.paginate)
101        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listconfigurationprofilespaginator)
102        """
Inherited Members
botocore.paginate.Paginator
Paginator
PAGE_ITERATOR_CLS
result_keys
class ListDeploymentStrategiesPaginator(botocore.paginate.Paginator):
105class ListDeploymentStrategiesPaginator(Paginator):
106    """
107    [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListDeploymentStrategies)
108    [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listdeploymentstrategiespaginator)
109    """
110
111    def paginate(
112        self, *, PaginationConfig: PaginatorConfigTypeDef = ...
113    ) -> _PageIterator[DeploymentStrategiesTypeDef]:
114        """
115        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListDeploymentStrategies.paginate)
116        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listdeploymentstrategiespaginator)
117        """
def paginate( self, *, PaginationConfig: mypy_boto3_appconfig.type_defs.PaginatorConfigTypeDef = Ellipsis) -> mypy_boto3_appconfig.paginator._PageIterator[mypy_boto3_appconfig.type_defs.DeploymentStrategiesTypeDef]:
111    def paginate(
112        self, *, PaginationConfig: PaginatorConfigTypeDef = ...
113    ) -> _PageIterator[DeploymentStrategiesTypeDef]:
114        """
115        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListDeploymentStrategies.paginate)
116        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listdeploymentstrategiespaginator)
117        """
Inherited Members
botocore.paginate.Paginator
Paginator
PAGE_ITERATOR_CLS
result_keys
class ListDeploymentsPaginator(botocore.paginate.Paginator):
120class ListDeploymentsPaginator(Paginator):
121    """
122    [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListDeployments)
123    [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listdeploymentspaginator)
124    """
125
126    def paginate(
127        self,
128        *,
129        ApplicationId: str,
130        EnvironmentId: str,
131        PaginationConfig: PaginatorConfigTypeDef = ...,
132    ) -> _PageIterator[DeploymentsTypeDef]:
133        """
134        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListDeployments.paginate)
135        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listdeploymentspaginator)
136        """
def paginate( self, *, ApplicationId: str, EnvironmentId: str, PaginationConfig: mypy_boto3_appconfig.type_defs.PaginatorConfigTypeDef = Ellipsis) -> mypy_boto3_appconfig.paginator._PageIterator[mypy_boto3_appconfig.type_defs.DeploymentsTypeDef]:
126    def paginate(
127        self,
128        *,
129        ApplicationId: str,
130        EnvironmentId: str,
131        PaginationConfig: PaginatorConfigTypeDef = ...,
132    ) -> _PageIterator[DeploymentsTypeDef]:
133        """
134        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListDeployments.paginate)
135        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listdeploymentspaginator)
136        """
Inherited Members
botocore.paginate.Paginator
Paginator
PAGE_ITERATOR_CLS
result_keys
class ListEnvironmentsPaginator(botocore.paginate.Paginator):
139class ListEnvironmentsPaginator(Paginator):
140    """
141    [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListEnvironments)
142    [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listenvironmentspaginator)
143    """
144
145    def paginate(
146        self, *, ApplicationId: str, PaginationConfig: PaginatorConfigTypeDef = ...
147    ) -> _PageIterator[EnvironmentsTypeDef]:
148        """
149        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListEnvironments.paginate)
150        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listenvironmentspaginator)
151        """
def paginate( self, *, ApplicationId: str, PaginationConfig: mypy_boto3_appconfig.type_defs.PaginatorConfigTypeDef = Ellipsis) -> mypy_boto3_appconfig.paginator._PageIterator[mypy_boto3_appconfig.type_defs.EnvironmentsTypeDef]:
145    def paginate(
146        self, *, ApplicationId: str, PaginationConfig: PaginatorConfigTypeDef = ...
147    ) -> _PageIterator[EnvironmentsTypeDef]:
148        """
149        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListEnvironments.paginate)
150        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listenvironmentspaginator)
151        """
Inherited Members
botocore.paginate.Paginator
Paginator
PAGE_ITERATOR_CLS
result_keys
class ListExtensionAssociationsPaginator(botocore.paginate.Paginator):
154class ListExtensionAssociationsPaginator(Paginator):
155    """
156    [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListExtensionAssociations)
157    [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listextensionassociationspaginator)
158    """
159
160    def paginate(
161        self,
162        *,
163        ResourceIdentifier: str = ...,
164        ExtensionIdentifier: str = ...,
165        ExtensionVersionNumber: int = ...,
166        PaginationConfig: PaginatorConfigTypeDef = ...,
167    ) -> _PageIterator[ExtensionAssociationsTypeDef]:
168        """
169        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListExtensionAssociations.paginate)
170        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listextensionassociationspaginator)
171        """
def paginate( self, *, ResourceIdentifier: str = Ellipsis, ExtensionIdentifier: str = Ellipsis, ExtensionVersionNumber: int = Ellipsis, PaginationConfig: mypy_boto3_appconfig.type_defs.PaginatorConfigTypeDef = Ellipsis) -> mypy_boto3_appconfig.paginator._PageIterator[mypy_boto3_appconfig.type_defs.ExtensionAssociationsTypeDef]:
160    def paginate(
161        self,
162        *,
163        ResourceIdentifier: str = ...,
164        ExtensionIdentifier: str = ...,
165        ExtensionVersionNumber: int = ...,
166        PaginationConfig: PaginatorConfigTypeDef = ...,
167    ) -> _PageIterator[ExtensionAssociationsTypeDef]:
168        """
169        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListExtensionAssociations.paginate)
170        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listextensionassociationspaginator)
171        """
Inherited Members
botocore.paginate.Paginator
Paginator
PAGE_ITERATOR_CLS
result_keys
class ListExtensionsPaginator(botocore.paginate.Paginator):
174class ListExtensionsPaginator(Paginator):
175    """
176    [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListExtensions)
177    [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listextensionspaginator)
178    """
179
180    def paginate(
181        self, *, Name: str = ..., PaginationConfig: PaginatorConfigTypeDef = ...
182    ) -> _PageIterator[ExtensionsTypeDef]:
183        """
184        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListExtensions.paginate)
185        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listextensionspaginator)
186        """
def paginate( self, *, Name: str = Ellipsis, PaginationConfig: mypy_boto3_appconfig.type_defs.PaginatorConfigTypeDef = Ellipsis) -> mypy_boto3_appconfig.paginator._PageIterator[mypy_boto3_appconfig.type_defs.ExtensionsTypeDef]:
180    def paginate(
181        self, *, Name: str = ..., PaginationConfig: PaginatorConfigTypeDef = ...
182    ) -> _PageIterator[ExtensionsTypeDef]:
183        """
184        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListExtensions.paginate)
185        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listextensionspaginator)
186        """
Inherited Members
botocore.paginate.Paginator
Paginator
PAGE_ITERATOR_CLS
result_keys
class ListHostedConfigurationVersionsPaginator(botocore.paginate.Paginator):
189class ListHostedConfigurationVersionsPaginator(Paginator):
190    """
191    [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListHostedConfigurationVersions)
192    [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listhostedconfigurationversionspaginator)
193    """
194
195    def paginate(
196        self,
197        *,
198        ApplicationId: str,
199        ConfigurationProfileId: str,
200        VersionLabel: str = ...,
201        PaginationConfig: PaginatorConfigTypeDef = ...,
202    ) -> _PageIterator[HostedConfigurationVersionsTypeDef]:
203        """
204        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListHostedConfigurationVersions.paginate)
205        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listhostedconfigurationversionspaginator)
206        """
def paginate( self, *, ApplicationId: str, ConfigurationProfileId: str, VersionLabel: str = Ellipsis, PaginationConfig: mypy_boto3_appconfig.type_defs.PaginatorConfigTypeDef = Ellipsis) -> mypy_boto3_appconfig.paginator._PageIterator[mypy_boto3_appconfig.type_defs.HostedConfigurationVersionsTypeDef]:
195    def paginate(
196        self,
197        *,
198        ApplicationId: str,
199        ConfigurationProfileId: str,
200        VersionLabel: str = ...,
201        PaginationConfig: PaginatorConfigTypeDef = ...,
202    ) -> _PageIterator[HostedConfigurationVersionsTypeDef]:
203        """
204        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/appconfig.html#AppConfig.Paginator.ListHostedConfigurationVersions.paginate)
205        [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/paginators/#listhostedconfigurationversionspaginator)
206        """
Inherited Members
botocore.paginate.Paginator
Paginator
PAGE_ITERATOR_CLS
result_keys