@ThreadSafe @Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class AmazonAppConfigClient extends AmazonWebServiceClient implements AmazonAppConfig
Use AppConfig, a capability of Amazon Web Services Systems Manager, to create, manage, and quickly deploy application configurations. AppConfig supports controlled deployments to applications of any size and includes built-in validation checks and monitoring. You can use AppConfig with applications hosted on Amazon EC2 instances, Lambda, containers, mobile applications, or IoT devices.
To prevent errors when deploying application configurations, especially for production systems where a simple typo could cause an unexpected outage, AppConfig includes validators. A validator provides a syntactic or semantic check to ensure that the configuration you want to deploy works as intended. To validate your application configuration data, you provide a schema or an Amazon Web Services Lambda function that runs against the configuration. The configuration deployment or update can only proceed when the configuration data is valid.
During a configuration deployment, AppConfig monitors the application to ensure that the deployment is successful. If the system encounters an error, AppConfig rolls back the change to minimize impact for your application users. You can configure a deployment strategy for each application or environment that includes deployment criteria, including velocity, bake time, and alarms to monitor. Similar to error monitoring, if a deployment triggers an alarm, AppConfig automatically rolls back to the previous version.
AppConfig supports multiple use cases. Here are some examples:
Feature flags: Use AppConfig to turn on new features that require a timely deployment, such as a product launch or announcement.
Application tuning: Use AppConfig to carefully introduce changes to your application that can only be tested with production traffic.
Allow list: Use AppConfig to allow premium subscribers to access paid content.
Operational issues: Use AppConfig to reduce stress on your application when a dependency or other external factor impacts the system.
This reference is intended to be used with the AppConfig User Guide.
| Modifier and Type | Field and Description |
|---|---|
protected static ClientConfigurationFactory |
configFactory
Client configuration factory providing ClientConfigurations tailored to this client
|
client, clientConfiguration, endpoint, isEndpointOverridden, LOGGING_AWS_REQUEST_METRIC, requestHandler2s, timeOffsetENDPOINT_PREFIXaddRequestHandler, addRequestHandler, beforeClientExecution, beforeMarshalling, calculateCRC32FromCompressedData, checkMutability, configureRegion, createExecutionContext, createExecutionContext, createExecutionContext, createSignerProvider, endClientExecution, endClientExecution, getClientConfiguration, getClientId, getEndpointPrefix, getMonitoringListeners, getRequestMetricsCollector, getServiceAbbreviation, getServiceName, getServiceNameIntern, getSigner, getSignerByURI, getSignerOverride, getSignerProvider, getSignerRegionOverride, getSigningRegion, getTimeOffset, isCsmEnabled, isEndpointOverridden, isProfilingEnabled, isRequestMetricsEnabled, makeImmutable, removeRequestHandler, removeRequestHandler, requestMetricCollector, setEndpoint, setEndpoint, setEndpointPrefix, setRegion, setServiceNameIntern, setSignerRegionOverride, setTimeOffset, shouldGenerateClientSideMonitoringEvents, useStrictHostNameVerification, withEndpoint, withRegion, withRegion, withTimeOffsetprotected static final ClientConfigurationFactory configFactory
public static AmazonAppConfigClientBuilder builder()
public CreateApplicationResult createApplication(CreateApplicationRequest request)
Creates an application. In AppConfig, an application is simply an organizational construct like a folder. This organizational construct has a relationship with some unit of executable code. For example, you could create an application called MyMobileApp to organize and manage configuration data for a mobile application installed by your users.
createApplication in interface AmazonAppConfigcreateApplicationRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ServiceQuotaExceededException - The number of one more AppConfig resources exceeds the maximum allowed. Verify that your environment
doesn't exceed the following service quotas:
Applications: 100 max
Deployment strategies: 20 max
Configuration profiles: 100 max per application
Environments: 20 max per application
To resolve this issue, you can delete one or more resources and try again. Or, you can request a quota increase. For more information about quotas and to request an increase, see Service quotas for AppConfig in the Amazon Web Services General Reference.
InternalServerException - There was an internal failure in the AppConfig service.public CreateConfigurationProfileResult createConfigurationProfile(CreateConfigurationProfileRequest request)
Creates a configuration profile, which is information that enables AppConfig to access the configuration source. Valid configuration sources include the following:
Configuration data in YAML, JSON, and other formats stored in the AppConfig hosted configuration store
Configuration data stored as objects in an Amazon Simple Storage Service (Amazon S3) bucket
Pipelines stored in CodePipeline
Secrets stored in Secrets Manager
Standard and secure string parameters stored in Amazon Web Services Systems Manager Parameter Store
Configuration data in SSM documents stored in the Systems Manager document store
A configuration profile includes the following information:
The URI location of the configuration data.
The Identity and Access Management (IAM) role that provides access to the configuration data.
A validator for the configuration data. Available validators include either a JSON Schema or an Amazon Web Services Lambda function.
For more information, see Create a Configuration and a Configuration Profile in the AppConfig User Guide.
createConfigurationProfile in interface AmazonAppConfigcreateConfigurationProfileRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.ServiceQuotaExceededException - The number of one more AppConfig resources exceeds the maximum allowed. Verify that your environment
doesn't exceed the following service quotas:
Applications: 100 max
Deployment strategies: 20 max
Configuration profiles: 100 max per application
Environments: 20 max per application
To resolve this issue, you can delete one or more resources and try again. Or, you can request a quota increase. For more information about quotas and to request an increase, see Service quotas for AppConfig in the Amazon Web Services General Reference.
public CreateDeploymentStrategyResult createDeploymentStrategy(CreateDeploymentStrategyRequest request)
Creates a deployment strategy that defines important criteria for rolling out your configuration to the designated targets. A deployment strategy includes the overall duration required, a percentage of targets to receive the deployment during each interval, an algorithm that defines how percentage grows, and bake time.
createDeploymentStrategy in interface AmazonAppConfigcreateDeploymentStrategyRequest - InternalServerException - There was an internal failure in the AppConfig service.ServiceQuotaExceededException - The number of one more AppConfig resources exceeds the maximum allowed. Verify that your environment
doesn't exceed the following service quotas:
Applications: 100 max
Deployment strategies: 20 max
Configuration profiles: 100 max per application
Environments: 20 max per application
To resolve this issue, you can delete one or more resources and try again. Or, you can request a quota increase. For more information about quotas and to request an increase, see Service quotas for AppConfig in the Amazon Web Services General Reference.
BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public CreateEnvironmentResult createEnvironment(CreateEnvironmentRequest request)
Creates an environment. For each application, you define one or more environments. An environment is a deployment
group of AppConfig targets, such as applications in a Beta or Production environment.
You can also define environments for application subcomponents such as the Web, Mobile
and Back-end components for your application. You can configure Amazon CloudWatch alarms for each
environment. The system monitors alarms during a configuration deployment. If an alarm is triggered, the system
rolls back the configuration.
createEnvironment in interface AmazonAppConfigcreateEnvironmentRequest - InternalServerException - There was an internal failure in the AppConfig service.ResourceNotFoundException - The requested resource could not be found.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ServiceQuotaExceededException - The number of one more AppConfig resources exceeds the maximum allowed. Verify that your environment
doesn't exceed the following service quotas:
Applications: 100 max
Deployment strategies: 20 max
Configuration profiles: 100 max per application
Environments: 20 max per application
To resolve this issue, you can delete one or more resources and try again. Or, you can request a quota increase. For more information about quotas and to request an increase, see Service quotas for AppConfig in the Amazon Web Services General Reference.
public CreateExtensionResult createExtension(CreateExtensionRequest request)
Creates an AppConfig extension. An extension augments your ability to inject logic or behavior at different points during the AppConfig workflow of creating or deploying a configuration.
You can create your own extensions or use the Amazon Web Services authored extensions provided by AppConfig. For
an AppConfig extension that uses Lambda, you must create a Lambda function to perform any computation and
processing defined in the extension. If you plan to create custom versions of the Amazon Web Services authored
notification extensions, you only need to specify an Amazon Resource Name (ARN) in the Uri field for
the new extension version.
For a custom EventBridge notification extension, enter the ARN of the EventBridge default events in the
Uri field.
For a custom Amazon SNS notification extension, enter the ARN of an Amazon SNS topic in the Uri
field.
For a custom Amazon SQS notification extension, enter the ARN of an Amazon SQS message queue in the
Uri field.
For more information about extensions, see Working with AppConfig extensions in the AppConfig User Guide.
createExtension in interface AmazonAppConfigcreateExtensionRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ConflictException - The request could not be processed because of conflict in the current state of the resource.ServiceQuotaExceededException - The number of one more AppConfig resources exceeds the maximum allowed. Verify that your environment
doesn't exceed the following service quotas:
Applications: 100 max
Deployment strategies: 20 max
Configuration profiles: 100 max per application
Environments: 20 max per application
To resolve this issue, you can delete one or more resources and try again. Or, you can request a quota increase. For more information about quotas and to request an increase, see Service quotas for AppConfig in the Amazon Web Services General Reference.
InternalServerException - There was an internal failure in the AppConfig service.public CreateExtensionAssociationResult createExtensionAssociation(CreateExtensionAssociationRequest request)
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. For example, you can choose to run the
AppConfig deployment events to Amazon SNS Amazon Web Services authored extension and receive
notifications on an Amazon SNS topic anytime a configuration deployment is started for a specific application.
Defining which extension to associate with an AppConfig resource is called an extension association. An
extension association is a specified relationship between an extension and an AppConfig resource, such as an
application or a configuration profile. For more information about extensions and associations, see Working with
AppConfig extensions in the AppConfig User Guide.
createExtensionAssociation in interface AmazonAppConfigcreateExtensionAssociationRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.ServiceQuotaExceededException - The number of one more AppConfig resources exceeds the maximum allowed. Verify that your environment
doesn't exceed the following service quotas:
Applications: 100 max
Deployment strategies: 20 max
Configuration profiles: 100 max per application
Environments: 20 max per application
To resolve this issue, you can delete one or more resources and try again. Or, you can request a quota increase. For more information about quotas and to request an increase, see Service quotas for AppConfig in the Amazon Web Services General Reference.
public CreateHostedConfigurationVersionResult createHostedConfigurationVersion(CreateHostedConfigurationVersionRequest request)
Creates a new configuration in the AppConfig hosted configuration store.
createHostedConfigurationVersion in interface AmazonAppConfigcreateHostedConfigurationVersionRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ServiceQuotaExceededException - The number of one more AppConfig resources exceeds the maximum allowed. Verify that your environment
doesn't exceed the following service quotas:
Applications: 100 max
Deployment strategies: 20 max
Configuration profiles: 100 max per application
Environments: 20 max per application
To resolve this issue, you can delete one or more resources and try again. Or, you can request a quota increase. For more information about quotas and to request an increase, see Service quotas for AppConfig in the Amazon Web Services General Reference.
ResourceNotFoundException - The requested resource could not be found.ConflictException - The request could not be processed because of conflict in the current state of the resource.PayloadTooLargeException - The configuration size is too large.InternalServerException - There was an internal failure in the AppConfig service.public DeleteApplicationResult deleteApplication(DeleteApplicationRequest request)
Deletes an application. Deleting an application does not delete a configuration from a host.
deleteApplication in interface AmazonAppConfigdeleteApplicationRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public DeleteConfigurationProfileResult deleteConfigurationProfile(DeleteConfigurationProfileRequest request)
Deletes a configuration profile. Deleting a configuration profile does not delete a configuration from a host.
deleteConfigurationProfile in interface AmazonAppConfigdeleteConfigurationProfileRequest - ResourceNotFoundException - The requested resource could not be found.ConflictException - The request could not be processed because of conflict in the current state of the resource.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public DeleteDeploymentStrategyResult deleteDeploymentStrategy(DeleteDeploymentStrategyRequest request)
Deletes a deployment strategy. Deleting a deployment strategy does not delete a configuration from a host.
deleteDeploymentStrategy in interface AmazonAppConfigdeleteDeploymentStrategyRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public DeleteEnvironmentResult deleteEnvironment(DeleteEnvironmentRequest request)
Deletes an environment. Deleting an environment does not delete a configuration from a host.
deleteEnvironment in interface AmazonAppConfigdeleteEnvironmentRequest - ResourceNotFoundException - The requested resource could not be found.ConflictException - The request could not be processed because of conflict in the current state of the resource.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public DeleteExtensionResult deleteExtension(DeleteExtensionRequest request)
Deletes an AppConfig extension. You must delete all associations to an extension before you delete the extension.
deleteExtension in interface AmazonAppConfigdeleteExtensionRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public DeleteExtensionAssociationResult deleteExtensionAssociation(DeleteExtensionAssociationRequest request)
Deletes an extension association. This action doesn't delete extensions defined in the association.
deleteExtensionAssociation in interface AmazonAppConfigdeleteExtensionAssociationRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.public DeleteHostedConfigurationVersionResult deleteHostedConfigurationVersion(DeleteHostedConfigurationVersionRequest request)
Deletes a version of a configuration from the AppConfig hosted configuration store.
deleteHostedConfigurationVersion in interface AmazonAppConfigdeleteHostedConfigurationVersionRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.public GetApplicationResult getApplication(GetApplicationRequest request)
Retrieves information about an application.
getApplication in interface AmazonAppConfiggetApplicationRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.@Deprecated public GetConfigurationResult getConfiguration(GetConfigurationRequest request)
(Deprecated) Retrieves the latest deployed configuration.
Note the following important information.
This API action is deprecated. Calls to receive configuration data should use the StartConfigurationSession and GetLatestConfiguration APIs instead.
GetConfiguration is a priced call. For more information, see Pricing.
getConfiguration in interface AmazonAppConfiggetConfigurationRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public GetConfigurationProfileResult getConfigurationProfile(GetConfigurationProfileRequest request)
Retrieves information about a configuration profile.
getConfigurationProfile in interface AmazonAppConfiggetConfigurationProfileRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public GetDeploymentResult getDeployment(GetDeploymentRequest request)
Retrieves information about a configuration deployment.
getDeployment in interface AmazonAppConfiggetDeploymentRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public GetDeploymentStrategyResult getDeploymentStrategy(GetDeploymentStrategyRequest request)
Retrieves information about a deployment strategy. A deployment strategy defines important criteria for rolling out your configuration to the designated targets. A deployment strategy includes the overall duration required, a percentage of targets to receive the deployment during each interval, an algorithm that defines how percentage grows, and bake time.
getDeploymentStrategy in interface AmazonAppConfiggetDeploymentStrategyRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public GetEnvironmentResult getEnvironment(GetEnvironmentRequest request)
Retrieves information about an environment. An environment is a deployment group of AppConfig applications, such
as applications in a Production environment or in an EU_Region environment. Each
configuration deployment targets an environment. You can enable one or more Amazon CloudWatch alarms for an
environment. If an alarm is triggered during a deployment, AppConfig roles back the configuration.
getEnvironment in interface AmazonAppConfiggetEnvironmentRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public GetExtensionResult getExtension(GetExtensionRequest request)
Returns information about an AppConfig extension.
getExtension in interface AmazonAppConfiggetExtensionRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public GetExtensionAssociationResult getExtensionAssociation(GetExtensionAssociationRequest request)
Returns information about an AppConfig extension association. For more information about extensions and associations, see Working with AppConfig extensions in the AppConfig User Guide.
getExtensionAssociation in interface AmazonAppConfiggetExtensionAssociationRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.public GetHostedConfigurationVersionResult getHostedConfigurationVersion(GetHostedConfigurationVersionRequest request)
Retrieves information about a specific configuration version.
getHostedConfigurationVersion in interface AmazonAppConfiggetHostedConfigurationVersionRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.public ListApplicationsResult listApplications(ListApplicationsRequest request)
Lists all applications in your Amazon Web Services account.
listApplications in interface AmazonAppConfiglistApplicationsRequest - InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public ListConfigurationProfilesResult listConfigurationProfiles(ListConfigurationProfilesRequest request)
Lists the configuration profiles for an application.
listConfigurationProfiles in interface AmazonAppConfiglistConfigurationProfilesRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public ListDeploymentStrategiesResult listDeploymentStrategies(ListDeploymentStrategiesRequest request)
Lists deployment strategies.
listDeploymentStrategies in interface AmazonAppConfiglistDeploymentStrategiesRequest - InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public ListDeploymentsResult listDeployments(ListDeploymentsRequest request)
Lists the deployments for an environment in descending deployment number order.
listDeployments in interface AmazonAppConfiglistDeploymentsRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public ListEnvironmentsResult listEnvironments(ListEnvironmentsRequest request)
Lists the environments for an application.
listEnvironments in interface AmazonAppConfiglistEnvironmentsRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public ListExtensionAssociationsResult listExtensionAssociations(ListExtensionAssociationsRequest request)
Lists all AppConfig extension associations in the account. For more information about extensions and associations, see Working with AppConfig extensions in the AppConfig User Guide.
listExtensionAssociations in interface AmazonAppConfiglistExtensionAssociationsRequest - InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public ListExtensionsResult listExtensions(ListExtensionsRequest request)
Lists all custom and Amazon Web Services authored AppConfig extensions in the account. For more information about extensions, see Working with AppConfig extensions in the AppConfig User Guide.
listExtensions in interface AmazonAppConfiglistExtensionsRequest - InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public ListHostedConfigurationVersionsResult listHostedConfigurationVersions(ListHostedConfigurationVersionsRequest request)
Lists configurations stored in the AppConfig hosted configuration store by version.
listHostedConfigurationVersions in interface AmazonAppConfiglistHostedConfigurationVersionsRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.public ListTagsForResourceResult listTagsForResource(ListTagsForResourceRequest request)
Retrieves the list of key-value tags assigned to the resource.
listTagsForResource in interface AmazonAppConfiglistTagsForResourceRequest - ResourceNotFoundException - The requested resource could not be found.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.InternalServerException - There was an internal failure in the AppConfig service.public StartDeploymentResult startDeployment(StartDeploymentRequest request)
Starts a deployment.
startDeployment in interface AmazonAppConfigstartDeploymentRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.ConflictException - The request could not be processed because of conflict in the current state of the resource.InternalServerException - There was an internal failure in the AppConfig service.public StopDeploymentResult stopDeployment(StopDeploymentRequest request)
Stops a deployment. This API action works only on deployments that have a status of DEPLOYING. This
action moves the deployment to a status of ROLLED_BACK.
stopDeployment in interface AmazonAppConfigstopDeploymentRequest - ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.public TagResourceResult tagResource(TagResourceRequest request)
Assigns metadata to an AppConfig resource. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define. You can specify a maximum of 50 tags for a resource.
tagResource in interface AmazonAppConfigtagResourceRequest - ResourceNotFoundException - The requested resource could not be found.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.InternalServerException - There was an internal failure in the AppConfig service.public UntagResourceResult untagResource(UntagResourceRequest request)
Deletes a tag key and value from an AppConfig resource.
untagResource in interface AmazonAppConfiguntagResourceRequest - ResourceNotFoundException - The requested resource could not be found.BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.InternalServerException - There was an internal failure in the AppConfig service.public UpdateApplicationResult updateApplication(UpdateApplicationRequest request)
Updates an application.
updateApplication in interface AmazonAppConfigupdateApplicationRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.public UpdateConfigurationProfileResult updateConfigurationProfile(UpdateConfigurationProfileRequest request)
Updates a configuration profile.
updateConfigurationProfile in interface AmazonAppConfigupdateConfigurationProfileRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.public UpdateDeploymentStrategyResult updateDeploymentStrategy(UpdateDeploymentStrategyRequest request)
Updates a deployment strategy.
updateDeploymentStrategy in interface AmazonAppConfigupdateDeploymentStrategyRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.public UpdateEnvironmentResult updateEnvironment(UpdateEnvironmentRequest request)
Updates an environment.
updateEnvironment in interface AmazonAppConfigupdateEnvironmentRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.public UpdateExtensionResult updateExtension(UpdateExtensionRequest request)
Updates an AppConfig extension. For more information about extensions, see Working with AppConfig extensions in the AppConfig User Guide.
updateExtension in interface AmazonAppConfigupdateExtensionRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.ConflictException - The request could not be processed because of conflict in the current state of the resource.InternalServerException - There was an internal failure in the AppConfig service.public UpdateExtensionAssociationResult updateExtensionAssociation(UpdateExtensionAssociationRequest request)
Updates an association. For more information about extensions and associations, see Working with AppConfig extensions in the AppConfig User Guide.
updateExtensionAssociation in interface AmazonAppConfigupdateExtensionAssociationRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.public ValidateConfigurationResult validateConfiguration(ValidateConfigurationRequest request)
Uses the validators in a configuration profile to validate a configuration.
validateConfiguration in interface AmazonAppConfigvalidateConfigurationRequest - BadRequestException - The input fails to satisfy the constraints specified by an Amazon Web Services service.ResourceNotFoundException - The requested resource could not be found.InternalServerException - There was an internal failure in the AppConfig service.public ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request)
Response metadata is only cached for a limited period of time, so if you need to access this extra diagnostic information for an executed request, you should use this method to retrieve it as soon as possible after executing the request.
getCachedResponseMetadata in interface AmazonAppConfigrequest - The originally executed requestpublic void shutdown()
AmazonAppConfigshutdown in interface AmazonAppConfigshutdown in class AmazonWebServiceClientCopyright © 2024. All rights reserved.