@aws-sdk/client-appconfig 3.42.0 → 3.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +50 -0
- package/README.md +19 -24
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +28 -38
- package/dist-cjs/protocols/Aws_restJson1.js +49 -0
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +27 -24
- package/dist-es/protocols/Aws_restJson1.js +51 -4
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/AppConfig.d.ts +75 -70
- package/dist-types/AppConfigClient.d.ts +24 -24
- package/dist-types/commands/CreateApplicationCommand.d.ts +5 -4
- package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +13 -9
- package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +4 -4
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +8 -7
- package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConfigurationProfileCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDeploymentStrategyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteHostedConfigurationVersionCommand.d.ts +2 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +1 -1
- package/dist-types/commands/GetConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/GetConfigurationProfileCommand.d.ts +1 -1
- package/dist-types/commands/GetDeploymentCommand.d.ts +1 -1
- package/dist-types/commands/GetDeploymentStrategyCommand.d.ts +2 -2
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/GetHostedConfigurationVersionCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +1 -1
- package/dist-types/commands/ListDeploymentStrategiesCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListHostedConfigurationVersionsCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +5 -3
- package/dist-types/models/models_0.d.ts +150 -80
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/AppConfigClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +52 -24
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +38 -45
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
10
10
|
import { CreateConfigurationProfileCommandInput, CreateConfigurationProfileCommandOutput } from "./commands/CreateConfigurationProfileCommand";
|
|
@@ -141,6 +141,10 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
141
141
|
* @internal
|
|
142
142
|
*/
|
|
143
143
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
144
|
+
/**
|
|
145
|
+
* The {@link DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
146
|
+
*/
|
|
147
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
144
148
|
}
|
|
145
149
|
declare type AppConfigClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
146
150
|
/**
|
|
@@ -155,29 +159,25 @@ declare type AppConfigClientResolvedConfigType = __SmithyResolvedConfiguration<_
|
|
|
155
159
|
export interface AppConfigClientResolvedConfig extends AppConfigClientResolvedConfigType {
|
|
156
160
|
}
|
|
157
161
|
/**
|
|
158
|
-
* <
|
|
159
|
-
*
|
|
160
|
-
*
|
|
161
|
-
*
|
|
162
|
-
* applications hosted on Amazon EC2 instances, AWS Lambda, containers, mobile applications, or IoT
|
|
162
|
+
* <p>Use AppConfig, a capability of Amazon Web Services Systems Manager, to create, manage, and quickly deploy
|
|
163
|
+
* application configurations. AppConfig supports controlled deployments to applications of
|
|
164
|
+
* any size and includes built-in validation checks and monitoring. You can use AppConfig with
|
|
165
|
+
* applications hosted on Amazon EC2 instances, Lambda, containers, mobile applications, or IoT
|
|
163
166
|
* devices.</p>
|
|
164
|
-
*
|
|
165
167
|
* <p>To prevent errors when deploying application configurations, especially for production
|
|
166
|
-
* systems where a simple typo could cause an unexpected outage, AppConfig includes
|
|
167
|
-
* A validator provides a syntactic or semantic check to ensure that the
|
|
168
|
-
* want to deploy works as intended. To validate your application
|
|
169
|
-
* provide a schema or a Lambda function that runs against the
|
|
170
|
-
* configuration deployment or update can only proceed when the
|
|
171
|
-
* valid.</p>
|
|
172
|
-
*
|
|
168
|
+
* systems where a simple typo could cause an unexpected outage, AppConfig includes
|
|
169
|
+
* validators. A validator provides a syntactic or semantic check to ensure that the
|
|
170
|
+
* configuration you want to deploy works as intended. To validate your application
|
|
171
|
+
* configuration data, you provide a schema or a Lambda function that runs against the
|
|
172
|
+
* configuration. The configuration deployment or update can only proceed when the
|
|
173
|
+
* configuration data is valid.</p>
|
|
173
174
|
* <p>During a configuration deployment, AppConfig monitors the application to ensure that the
|
|
174
|
-
* deployment is successful. If the system encounters an error, AppConfig rolls back the
|
|
175
|
-
* to minimize impact for your application users. You can configure a deployment
|
|
176
|
-
* each application or environment that includes deployment criteria, including
|
|
177
|
-
* time, and alarms to monitor. Similar to error monitoring, if a deployment
|
|
178
|
-
* alarm, AppConfig automatically rolls back to the previous version. </p>
|
|
179
|
-
*
|
|
180
|
-
* <p>AppConfig supports multiple use cases. Here are some examples.</p>
|
|
175
|
+
* deployment is successful. If the system encounters an error, AppConfig rolls back the
|
|
176
|
+
* change to minimize impact for your application users. You can configure a deployment
|
|
177
|
+
* strategy for each application or environment that includes deployment criteria, including
|
|
178
|
+
* velocity, bake time, and alarms to monitor. Similar to error monitoring, if a deployment
|
|
179
|
+
* triggers an alarm, AppConfig automatically rolls back to the previous version. </p>
|
|
180
|
+
* <p>AppConfig supports multiple use cases. Here are some examples:</p>
|
|
181
181
|
* <ul>
|
|
182
182
|
* <li>
|
|
183
183
|
* <p>
|
|
@@ -198,12 +198,12 @@ export interface AppConfigClientResolvedConfig extends AppConfigClientResolvedCo
|
|
|
198
198
|
* </li>
|
|
199
199
|
* <li>
|
|
200
200
|
* <p>
|
|
201
|
-
* <b>Operational issues</b>: Use AppConfig to reduce
|
|
202
|
-
* on your application when a dependency or other external factor impacts the
|
|
201
|
+
* <b>Operational issues</b>: Use AppConfig to reduce
|
|
202
|
+
* stress on your application when a dependency or other external factor impacts the
|
|
203
203
|
* system.</p>
|
|
204
204
|
* </li>
|
|
205
205
|
* </ul>
|
|
206
|
-
* <p>This reference is intended to be used with the <a href="http://docs.aws.amazon.com/
|
|
206
|
+
* <p>This reference is intended to be used with the <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html">AppConfig User Guide</a>.</p>
|
|
207
207
|
*/
|
|
208
208
|
export declare class AppConfigClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AppConfigClientResolvedConfig> {
|
|
209
209
|
/**
|
|
@@ -7,10 +7,11 @@ export interface CreateApplicationCommandInput extends CreateApplicationRequest
|
|
|
7
7
|
export interface CreateApplicationCommandOutput extends Application, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>An application in AppConfig is a logical unit of code that
|
|
11
|
-
* customers. For example, an application can be a microservice
|
|
12
|
-
* a mobile application installed by your users, a serverless
|
|
13
|
-
* Gateway and
|
|
10
|
+
* <p>Creates an application. An application in AppConfig is a logical unit of code that
|
|
11
|
+
* provides capabilities for your customers. For example, an application can be a microservice
|
|
12
|
+
* that runs on Amazon EC2 instances, a mobile application installed by your users, a serverless
|
|
13
|
+
* application using Amazon API Gateway and Lambda, or any system you run on behalf of
|
|
14
|
+
* others.</p>
|
|
14
15
|
* @example
|
|
15
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
17
|
* ```javascript
|
|
@@ -7,24 +7,28 @@ export interface CreateConfigurationProfileCommandInput extends CreateConfigurat
|
|
|
7
7
|
export interface CreateConfigurationProfileCommandOutput extends ConfigurationProfile, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
11
|
-
* configuration
|
|
12
|
-
* Amazon
|
|
10
|
+
* <p>Creates a configuration profile, which is information that enables AppConfig to access
|
|
11
|
+
* the configuration source. Valid configuration sources include the AppConfig hosted
|
|
12
|
+
* configuration store, Amazon Web Services Systems Manager (SSM) documents, SSM Parameter Store parameters, Amazon S3
|
|
13
|
+
* objects, or any <a href="http://docs.aws.amazon.com/codepipeline/latest/userguide/integrations-action-type.html#integrations-source">integration source
|
|
14
|
+
* action</a> supported by CodePipeline. A configuration profile includes the following
|
|
15
|
+
* information:</p>
|
|
16
|
+
*
|
|
13
17
|
* <ul>
|
|
14
18
|
* <li>
|
|
15
|
-
* <p>The
|
|
19
|
+
* <p>The URI location of the configuration data.</p>
|
|
16
20
|
* </li>
|
|
17
21
|
* <li>
|
|
18
|
-
* <p>The
|
|
22
|
+
* <p>The Identity and Access Management (IAM) role that provides access to the configuration data.</p>
|
|
19
23
|
* </li>
|
|
20
24
|
* <li>
|
|
21
25
|
* <p>A validator for the configuration data. Available validators include either a JSON
|
|
22
|
-
* Schema or an
|
|
26
|
+
* Schema or an Lambda function.</p>
|
|
23
27
|
* </li>
|
|
24
28
|
* </ul>
|
|
25
|
-
* <p>For more information, see <a href="http://docs.aws.amazon.com/
|
|
26
|
-
* Configuration and a Configuration Profile</a> in the
|
|
27
|
-
*
|
|
29
|
+
* <p>For more information, see <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-creating-configuration-and-profile.html">Create a
|
|
30
|
+
* Configuration and a Configuration Profile</a> in the <i>AppConfig User
|
|
31
|
+
* Guide</i>.</p>
|
|
28
32
|
* @example
|
|
29
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
34
|
* ```javascript
|
|
@@ -7,10 +7,10 @@ export interface CreateDeploymentStrategyCommandInput extends CreateDeploymentSt
|
|
|
7
7
|
export interface CreateDeploymentStrategyCommandOutput extends DeploymentStrategy, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
11
|
-
* the designated targets. A deployment strategy includes
|
|
12
|
-
* percentage of targets to receive the deployment during each interval,
|
|
13
|
-
* defines how percentage grows, and bake time.</p>
|
|
10
|
+
* <p>Creates a deployment strategy that defines important criteria for rolling out your
|
|
11
|
+
* configuration to the designated targets. A deployment strategy includes the overall
|
|
12
|
+
* duration required, a percentage of targets to receive the deployment during each interval,
|
|
13
|
+
* an algorithm that defines how percentage grows, and bake time.</p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -7,13 +7,14 @@ export interface CreateEnvironmentCommandInput extends CreateEnvironmentRequest
|
|
|
7
7
|
export interface CreateEnvironmentCommandOutput extends Environment, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>For each application, you define one or more environments. An
|
|
11
|
-
* deployment group of AppConfig targets, such as applications in a
|
|
12
|
-
* <code>Production</code> environment. You can also define
|
|
13
|
-
* subcomponents such as the <code>Web</code>,
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
* system rolls back the
|
|
10
|
+
* <p>Creates an environment. For each application, you define one or more environments. An
|
|
11
|
+
* environment is a logical deployment group of AppConfig targets, such as applications in a
|
|
12
|
+
* <code>Beta</code> or <code>Production</code> environment. You can also define
|
|
13
|
+
* environments for application subcomponents such as the <code>Web</code>,
|
|
14
|
+
* <code>Mobile</code> and <code>Back-end</code> components for your application. You can
|
|
15
|
+
* configure Amazon CloudWatch alarms for each environment. The system monitors alarms during a
|
|
16
|
+
* configuration deployment. If an alarm is triggered, the system rolls back the
|
|
17
|
+
* configuration.</p>
|
|
17
18
|
* @example
|
|
18
19
|
* Use a bare-bones client and the command you need to make an API call.
|
|
19
20
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface CreateHostedConfigurationVersionCommandInput extends CreateHost
|
|
|
7
7
|
export interface CreateHostedConfigurationVersionCommandOutput extends HostedConfigurationVersion, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Creates a new configuration in the AppConfig hosted configuration store.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface DeleteApplicationCommandInput extends DeleteApplicationRequest
|
|
|
7
7
|
export interface DeleteApplicationCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Deletes an application. Deleting an application does not delete a configuration from a
|
|
11
11
|
* host.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,7 +7,7 @@ export interface DeleteConfigurationProfileCommandInput extends DeleteConfigurat
|
|
|
7
7
|
export interface DeleteConfigurationProfileCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Deletes a configuration profile. Deleting a configuration profile does not delete a
|
|
11
11
|
* configuration from a host.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,7 +7,7 @@ export interface DeleteDeploymentStrategyCommandInput extends DeleteDeploymentSt
|
|
|
7
7
|
export interface DeleteDeploymentStrategyCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Deletes a deployment strategy. Deleting a deployment strategy does not delete a
|
|
11
11
|
* configuration from a host.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,7 +7,7 @@ export interface DeleteEnvironmentCommandInput extends DeleteEnvironmentRequest
|
|
|
7
7
|
export interface DeleteEnvironmentCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Deletes an environment. Deleting an environment does not delete a configuration from a
|
|
11
11
|
* host.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,7 +7,8 @@ export interface DeleteHostedConfigurationVersionCommandInput extends DeleteHost
|
|
|
7
7
|
export interface DeleteHostedConfigurationVersionCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Deletes a version of a configuration from the AppConfig hosted configuration
|
|
11
|
+
* store.</p>
|
|
11
12
|
* @example
|
|
12
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
14
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface GetApplicationCommandInput extends GetApplicationRequest {
|
|
|
7
7
|
export interface GetApplicationCommandOutput extends Application, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about an application.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,10 +7,10 @@ export interface GetConfigurationCommandInput extends GetConfigurationRequest {
|
|
|
7
7
|
export interface GetConfigurationCommandOutput extends Configuration, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about a configuration.</p>
|
|
11
11
|
* <important>
|
|
12
|
-
* <p>
|
|
13
|
-
*
|
|
12
|
+
* <p>AppConfig uses the value of the <code>ClientConfigurationVersion</code> parameter to
|
|
13
|
+
* identify the configuration version on your clients. If you don’t send
|
|
14
14
|
* <code>ClientConfigurationVersion</code> with each call to
|
|
15
15
|
* <code>GetConfiguration</code>, your clients receive the current configuration. You
|
|
16
16
|
* are charged each time your clients receive a configuration.</p>
|
|
@@ -7,7 +7,7 @@ export interface GetConfigurationProfileCommandInput extends GetConfigurationPro
|
|
|
7
7
|
export interface GetConfigurationProfileCommandOutput extends ConfigurationProfile, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about a configuration profile.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface GetDeploymentCommandInput extends GetDeploymentRequest {
|
|
|
7
7
|
export interface GetDeploymentCommandOutput extends Deployment, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about a configuration deployment.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,9 +7,9 @@ export interface GetDeploymentStrategyCommandInput extends GetDeploymentStrategy
|
|
|
7
7
|
export interface GetDeploymentStrategyCommandOutput extends DeploymentStrategy, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about a deployment strategy. A deployment strategy defines
|
|
11
11
|
* important criteria for rolling out your configuration to the designated targets. A
|
|
12
|
-
* deployment strategy includes
|
|
12
|
+
* deployment strategy includes the overall duration required, a percentage of targets to
|
|
13
13
|
* receive the deployment during each interval, an algorithm that defines how percentage
|
|
14
14
|
* grows, and bake time.</p>
|
|
15
15
|
* @example
|
|
@@ -7,7 +7,7 @@ export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {
|
|
|
7
7
|
export interface GetEnvironmentCommandOutput extends Environment, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about an environment. An environment is a logical deployment group
|
|
11
11
|
* of AppConfig applications, such as applications in a <code>Production</code> environment or
|
|
12
12
|
* in an <code>EU_Region</code> environment. Each configuration deployment targets an
|
|
13
13
|
* environment. You can enable one or more Amazon CloudWatch alarms for an environment. If an alarm is
|
|
@@ -7,7 +7,7 @@ export interface GetHostedConfigurationVersionCommandInput extends GetHostedConf
|
|
|
7
7
|
export interface GetHostedConfigurationVersionCommandOutput extends HostedConfigurationVersion, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Retrieves information about a specific configuration version.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface ListApplicationsCommandInput extends ListApplicationsRequest {
|
|
|
7
7
|
export interface ListApplicationsCommandOutput extends Applications, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Lists all applications in your Amazon Web Services account.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface ListDeploymentStrategiesCommandInput extends ListDeploymentStra
|
|
|
7
7
|
export interface ListDeploymentStrategiesCommandOutput extends DeploymentStrategies, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Lists deployment strategies.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface ListEnvironmentsCommandInput extends ListEnvironmentsRequest {
|
|
|
7
7
|
export interface ListEnvironmentsCommandOutput extends Environments, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Lists the environments for an application.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface ListHostedConfigurationVersionsCommandInput extends ListHostedC
|
|
|
7
7
|
export interface ListHostedConfigurationVersionsCommandOutput extends HostedConfigurationVersions, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
10
|
+
* <p>Lists configurations stored in the AppConfig hosted configuration store by
|
|
11
11
|
* version.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,9 +7,11 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
7
7
|
export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>
|
|
11
|
-
*
|
|
12
|
-
*
|
|
10
|
+
* <p>Assigns
|
|
11
|
+
* metadata
|
|
12
|
+
* to an AppConfig resource. Tags help organize and categorize your AppConfig resources. Each
|
|
13
|
+
* tag consists of a key and an optional value, both of which you define. You can specify a
|
|
14
|
+
* maximum of 50 tags for a resource.</p>
|
|
13
15
|
* @example
|
|
14
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
17
|
* ```javascript
|