@aws-sdk/client-appconfig 3.300.0 → 3.303.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/dist-cjs/models/models_0.js +55 -65
- package/dist-es/models/models_0.js +55 -65
- package/dist-types/commands/CreateApplicationCommand.d.ts +2 -2
- package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +4 -4
- package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +2 -2
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +4 -4
- package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +3 -3
- package/dist-types/commands/CreateExtensionCommand.d.ts +7 -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/DeleteExtensionAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteExtensionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteHostedConfigurationVersionCommand.d.ts +1 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +1 -1
- package/dist-types/commands/GetConfigurationCommand.d.ts +1 -1
- 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 +1 -1
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/GetExtensionAssociationCommand.d.ts +1 -1
- package/dist-types/commands/GetExtensionCommand.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/ListConfigurationProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListDeploymentStrategiesCommand.d.ts +1 -1
- package/dist-types/commands/ListDeploymentsCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListExtensionsCommand.d.ts +1 -1
- package/dist-types/commands/ListHostedConfigurationVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartDeploymentCommand.d.ts +2 -2
- package/dist-types/commands/StopDeploymentCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConfigurationProfileCommand.d.ts +3 -3
- package/dist-types/commands/UpdateDeploymentStrategyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +3 -3
- package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +2 -2
- package/dist-types/commands/UpdateExtensionCommand.d.ts +6 -6
- package/dist-types/commands/ValidateConfigurationCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +105 -55
- package/dist-types/ts3.4/models/models_0.d.ts +69 -55
- package/package.json +34 -34
|
@@ -26,7 +26,7 @@ export interface GetHostedConfigurationVersionCommandOutput extends HostedConfig
|
|
|
26
26
|
* import { AppConfigClient, GetHostedConfigurationVersionCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, GetHostedConfigurationVersionCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetHostedConfigurationVersionRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
32
32
|
* VersionNumber: Number("int"), // required
|
|
@@ -26,7 +26,7 @@ export interface ListApplicationsCommandOutput extends Applications, __MetadataB
|
|
|
26
26
|
* import { AppConfigClient, ListApplicationsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ListApplicationsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListApplicationsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListConfigurationProfilesCommandOutput extends ConfigurationPro
|
|
|
26
26
|
* import { AppConfigClient, ListConfigurationProfilesCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ListConfigurationProfilesCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListConfigurationProfilesRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListDeploymentStrategiesCommandOutput extends DeploymentStrateg
|
|
|
26
26
|
* import { AppConfigClient, ListDeploymentStrategiesCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ListDeploymentStrategiesCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListDeploymentStrategiesRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListDeploymentsCommandOutput extends Deployments, __MetadataBea
|
|
|
26
26
|
* import { AppConfigClient, ListDeploymentsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ListDeploymentsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListDeploymentsRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* EnvironmentId: "STRING_VALUE", // required
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListEnvironmentsCommandOutput extends Environments, __MetadataB
|
|
|
26
26
|
* import { AppConfigClient, ListEnvironmentsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ListEnvironmentsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListEnvironmentsRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -29,7 +29,7 @@ export interface ListExtensionAssociationsCommandOutput extends ExtensionAssocia
|
|
|
29
29
|
* import { AppConfigClient, ListExtensionAssociationsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
30
30
|
* // const { AppConfigClient, ListExtensionAssociationsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
31
31
|
* const client = new AppConfigClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListExtensionAssociationsRequest
|
|
33
33
|
* ResourceIdentifier: "STRING_VALUE",
|
|
34
34
|
* ExtensionIdentifier: "STRING_VALUE",
|
|
35
35
|
* ExtensionVersionNumber: Number("int"),
|
|
@@ -29,7 +29,7 @@ export interface ListExtensionsCommandOutput extends Extensions, __MetadataBeare
|
|
|
29
29
|
* import { AppConfigClient, ListExtensionsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
30
30
|
* // const { AppConfigClient, ListExtensionsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
31
31
|
* const client = new AppConfigClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListExtensionsRequest
|
|
33
33
|
* MaxResults: Number("int"),
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
35
35
|
* Name: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface ListHostedConfigurationVersionsCommandOutput extends HostedConf
|
|
|
27
27
|
* import { AppConfigClient, ListHostedConfigurationVersionsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
28
28
|
* // const { AppConfigClient, ListHostedConfigurationVersionsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
29
29
|
* const client = new AppConfigClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListHostedConfigurationVersionsRequest
|
|
31
31
|
* ApplicationId: "STRING_VALUE", // required
|
|
32
32
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
33
33
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ResourceTags, __Metada
|
|
|
26
26
|
* import { AppConfigClient, ListTagsForResourceCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ListTagsForResourceCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,14 +26,14 @@ export interface StartDeploymentCommandOutput extends Deployment, __MetadataBear
|
|
|
26
26
|
* import { AppConfigClient, StartDeploymentCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, StartDeploymentCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StartDeploymentRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* EnvironmentId: "STRING_VALUE", // required
|
|
32
32
|
* DeploymentStrategyId: "STRING_VALUE", // required
|
|
33
33
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
34
34
|
* ConfigurationVersion: "STRING_VALUE", // required
|
|
35
35
|
* Description: "STRING_VALUE",
|
|
36
|
-
* Tags: {
|
|
36
|
+
* Tags: { // TagMap
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* KmsKeyIdentifier: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface StopDeploymentCommandOutput extends Deployment, __MetadataBeare
|
|
|
28
28
|
* import { AppConfigClient, StopDeploymentCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
29
29
|
* // const { AppConfigClient, StopDeploymentCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
30
30
|
* const client = new AppConfigClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // StopDeploymentRequest
|
|
32
32
|
* ApplicationId: "STRING_VALUE", // required
|
|
33
33
|
* EnvironmentId: "STRING_VALUE", // required
|
|
34
34
|
* DeploymentNumber: Number("int"), // required
|
|
@@ -28,9 +28,9 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { AppConfigClient, TagResourceCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
29
29
|
* // const { AppConfigClient, TagResourceCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
30
30
|
* const client = new AppConfigClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // TagResourceRequest
|
|
32
32
|
* ResourceArn: "STRING_VALUE", // required
|
|
33
|
-
* Tags: { // required
|
|
33
|
+
* Tags: { // TagMap // required
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
36
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { AppConfigClient, UntagResourceCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, UntagResourceCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateApplicationCommandOutput extends Application, __MetadataB
|
|
|
26
26
|
* import { AppConfigClient, UpdateApplicationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, UpdateApplicationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateApplicationRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* Name: "STRING_VALUE",
|
|
32
32
|
* Description: "STRING_VALUE",
|
|
@@ -26,14 +26,14 @@ export interface UpdateConfigurationProfileCommandOutput extends ConfigurationPr
|
|
|
26
26
|
* import { AppConfigClient, UpdateConfigurationProfileCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, UpdateConfigurationProfileCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateConfigurationProfileRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
32
32
|
* Name: "STRING_VALUE",
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
34
34
|
* RetrievalRoleArn: "STRING_VALUE",
|
|
35
|
-
* Validators: [
|
|
36
|
-
* {
|
|
35
|
+
* Validators: [ // ValidatorList
|
|
36
|
+
* { // Validator
|
|
37
37
|
* Type: "JSON_SCHEMA" || "LAMBDA", // required
|
|
38
38
|
* Content: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
@@ -26,7 +26,7 @@ export interface UpdateDeploymentStrategyCommandOutput extends DeploymentStrateg
|
|
|
26
26
|
* import { AppConfigClient, UpdateDeploymentStrategyCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, UpdateDeploymentStrategyCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateDeploymentStrategyRequest
|
|
30
30
|
* DeploymentStrategyId: "STRING_VALUE", // required
|
|
31
31
|
* Description: "STRING_VALUE",
|
|
32
32
|
* DeploymentDurationInMinutes: Number("int"),
|
|
@@ -26,13 +26,13 @@ export interface UpdateEnvironmentCommandOutput extends Environment, __MetadataB
|
|
|
26
26
|
* import { AppConfigClient, UpdateEnvironmentCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, UpdateEnvironmentCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateEnvironmentRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* EnvironmentId: "STRING_VALUE", // required
|
|
32
32
|
* Name: "STRING_VALUE",
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
34
|
-
* Monitors: [
|
|
35
|
-
* {
|
|
34
|
+
* Monitors: [ // MonitorList
|
|
35
|
+
* { // Monitor
|
|
36
36
|
* AlarmArn: "STRING_VALUE", // required
|
|
37
37
|
* AlarmRoleArn: "STRING_VALUE",
|
|
38
38
|
* },
|
|
@@ -29,9 +29,9 @@ export interface UpdateExtensionAssociationCommandOutput extends ExtensionAssoci
|
|
|
29
29
|
* import { AppConfigClient, UpdateExtensionAssociationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
30
30
|
* // const { AppConfigClient, UpdateExtensionAssociationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
31
31
|
* const client = new AppConfigClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // UpdateExtensionAssociationRequest
|
|
33
33
|
* ExtensionAssociationId: "STRING_VALUE", // required
|
|
34
|
-
* Parameters: {
|
|
34
|
+
* Parameters: { // ParameterValueMap
|
|
35
35
|
* "<keys>": "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* };
|
|
@@ -29,12 +29,12 @@ export interface UpdateExtensionCommandOutput extends Extension, __MetadataBeare
|
|
|
29
29
|
* import { AppConfigClient, UpdateExtensionCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
30
30
|
* // const { AppConfigClient, UpdateExtensionCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
31
31
|
* const client = new AppConfigClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // UpdateExtensionRequest
|
|
33
33
|
* ExtensionIdentifier: "STRING_VALUE", // required
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
35
|
-
* Actions: {
|
|
36
|
-
* "<keys>": [
|
|
37
|
-
* {
|
|
35
|
+
* Actions: { // ActionsMap
|
|
36
|
+
* "<keys>": [ // ActionList
|
|
37
|
+
* { // Action
|
|
38
38
|
* Name: "STRING_VALUE",
|
|
39
39
|
* Description: "STRING_VALUE",
|
|
40
40
|
* Uri: "STRING_VALUE",
|
|
@@ -42,8 +42,8 @@ export interface UpdateExtensionCommandOutput extends Extension, __MetadataBeare
|
|
|
42
42
|
* },
|
|
43
43
|
* ],
|
|
44
44
|
* },
|
|
45
|
-
* Parameters: {
|
|
46
|
-
* "<keys>": {
|
|
45
|
+
* Parameters: { // ParameterMap
|
|
46
|
+
* "<keys>": { // Parameter
|
|
47
47
|
* Description: "STRING_VALUE",
|
|
48
48
|
* Required: true || false,
|
|
49
49
|
* },
|
|
@@ -26,7 +26,7 @@ export interface ValidateConfigurationCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { AppConfigClient, ValidateConfigurationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ValidateConfigurationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ValidateConfigurationRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
32
32
|
* ConfigurationVersion: "STRING_VALUE", // required
|
|
@@ -104,16 +104,21 @@ export interface ActionInvocation {
|
|
|
104
104
|
}
|
|
105
105
|
/**
|
|
106
106
|
* @public
|
|
107
|
+
* @enum
|
|
107
108
|
*/
|
|
108
|
-
export declare
|
|
109
|
-
ON_DEPLOYMENT_BAKING
|
|
110
|
-
ON_DEPLOYMENT_COMPLETE
|
|
111
|
-
ON_DEPLOYMENT_ROLLED_BACK
|
|
112
|
-
ON_DEPLOYMENT_START
|
|
113
|
-
ON_DEPLOYMENT_STEP
|
|
114
|
-
PRE_CREATE_HOSTED_CONFIGURATION_VERSION
|
|
115
|
-
PRE_START_DEPLOYMENT
|
|
116
|
-
}
|
|
109
|
+
export declare const ActionPoint: {
|
|
110
|
+
readonly ON_DEPLOYMENT_BAKING: "ON_DEPLOYMENT_BAKING";
|
|
111
|
+
readonly ON_DEPLOYMENT_COMPLETE: "ON_DEPLOYMENT_COMPLETE";
|
|
112
|
+
readonly ON_DEPLOYMENT_ROLLED_BACK: "ON_DEPLOYMENT_ROLLED_BACK";
|
|
113
|
+
readonly ON_DEPLOYMENT_START: "ON_DEPLOYMENT_START";
|
|
114
|
+
readonly ON_DEPLOYMENT_STEP: "ON_DEPLOYMENT_STEP";
|
|
115
|
+
readonly PRE_CREATE_HOSTED_CONFIGURATION_VERSION: "PRE_CREATE_HOSTED_CONFIGURATION_VERSION";
|
|
116
|
+
readonly PRE_START_DEPLOYMENT: "PRE_START_DEPLOYMENT";
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
export type ActionPoint = (typeof ActionPoint)[keyof typeof ActionPoint];
|
|
117
122
|
/**
|
|
118
123
|
* @public
|
|
119
124
|
*/
|
|
@@ -191,10 +196,15 @@ export declare namespace BadRequestDetails {
|
|
|
191
196
|
}
|
|
192
197
|
/**
|
|
193
198
|
* @public
|
|
199
|
+
* @enum
|
|
194
200
|
*/
|
|
195
|
-
export declare
|
|
196
|
-
INVALID_CONFIGURATION
|
|
197
|
-
}
|
|
201
|
+
export declare const BadRequestReason: {
|
|
202
|
+
readonly INVALID_CONFIGURATION: "InvalidConfiguration";
|
|
203
|
+
};
|
|
204
|
+
/**
|
|
205
|
+
* @public
|
|
206
|
+
*/
|
|
207
|
+
export type BadRequestReason = (typeof BadRequestReason)[keyof typeof BadRequestReason];
|
|
198
208
|
/**
|
|
199
209
|
* @public
|
|
200
210
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
@@ -247,11 +257,16 @@ export declare class InternalServerException extends __BaseException {
|
|
|
247
257
|
}
|
|
248
258
|
/**
|
|
249
259
|
* @public
|
|
260
|
+
* @enum
|
|
250
261
|
*/
|
|
251
|
-
export declare
|
|
252
|
-
JSON_SCHEMA
|
|
253
|
-
LAMBDA
|
|
254
|
-
}
|
|
262
|
+
export declare const ValidatorType: {
|
|
263
|
+
readonly JSON_SCHEMA: "JSON_SCHEMA";
|
|
264
|
+
readonly LAMBDA: "LAMBDA";
|
|
265
|
+
};
|
|
266
|
+
/**
|
|
267
|
+
* @public
|
|
268
|
+
*/
|
|
269
|
+
export type ValidatorType = (typeof ValidatorType)[keyof typeof ValidatorType];
|
|
255
270
|
/**
|
|
256
271
|
* @public
|
|
257
272
|
* <p>A validator provides a syntactic or semantic check to ensure the configuration that you
|
|
@@ -416,18 +431,28 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
416
431
|
}
|
|
417
432
|
/**
|
|
418
433
|
* @public
|
|
434
|
+
* @enum
|
|
419
435
|
*/
|
|
420
|
-
export declare
|
|
421
|
-
EXPONENTIAL
|
|
422
|
-
LINEAR
|
|
423
|
-
}
|
|
436
|
+
export declare const GrowthType: {
|
|
437
|
+
readonly EXPONENTIAL: "EXPONENTIAL";
|
|
438
|
+
readonly LINEAR: "LINEAR";
|
|
439
|
+
};
|
|
424
440
|
/**
|
|
425
441
|
* @public
|
|
426
442
|
*/
|
|
427
|
-
export
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
443
|
+
export type GrowthType = (typeof GrowthType)[keyof typeof GrowthType];
|
|
444
|
+
/**
|
|
445
|
+
* @public
|
|
446
|
+
* @enum
|
|
447
|
+
*/
|
|
448
|
+
export declare const ReplicateTo: {
|
|
449
|
+
readonly NONE: "NONE";
|
|
450
|
+
readonly SSM_DOCUMENT: "SSM_DOCUMENT";
|
|
451
|
+
};
|
|
452
|
+
/**
|
|
453
|
+
* @public
|
|
454
|
+
*/
|
|
455
|
+
export type ReplicateTo = (typeof ReplicateTo)[keyof typeof ReplicateTo];
|
|
431
456
|
/**
|
|
432
457
|
* @public
|
|
433
458
|
*/
|
|
@@ -583,13 +608,18 @@ export interface CreateEnvironmentRequest {
|
|
|
583
608
|
}
|
|
584
609
|
/**
|
|
585
610
|
* @public
|
|
611
|
+
* @enum
|
|
586
612
|
*/
|
|
587
|
-
export declare
|
|
588
|
-
DEPLOYING
|
|
589
|
-
READY_FOR_DEPLOYMENT
|
|
590
|
-
ROLLED_BACK
|
|
591
|
-
ROLLING_BACK
|
|
592
|
-
}
|
|
613
|
+
export declare const EnvironmentState: {
|
|
614
|
+
readonly DEPLOYING: "DEPLOYING";
|
|
615
|
+
readonly READY_FOR_DEPLOYMENT: "READY_FOR_DEPLOYMENT";
|
|
616
|
+
readonly ROLLED_BACK: "ROLLED_BACK";
|
|
617
|
+
readonly ROLLING_BACK: "ROLLING_BACK";
|
|
618
|
+
};
|
|
619
|
+
/**
|
|
620
|
+
* @public
|
|
621
|
+
*/
|
|
622
|
+
export type EnvironmentState = (typeof EnvironmentState)[keyof typeof EnvironmentState];
|
|
593
623
|
/**
|
|
594
624
|
* @public
|
|
595
625
|
*/
|
|
@@ -873,10 +903,15 @@ export interface HostedConfigurationVersion {
|
|
|
873
903
|
}
|
|
874
904
|
/**
|
|
875
905
|
* @public
|
|
906
|
+
* @enum
|
|
876
907
|
*/
|
|
877
|
-
export declare
|
|
878
|
-
KILOBYTES
|
|
879
|
-
}
|
|
908
|
+
export declare const BytesMeasure: {
|
|
909
|
+
readonly KILOBYTES: "KILOBYTES";
|
|
910
|
+
};
|
|
911
|
+
/**
|
|
912
|
+
* @public
|
|
913
|
+
*/
|
|
914
|
+
export type BytesMeasure = (typeof BytesMeasure)[keyof typeof BytesMeasure];
|
|
880
915
|
/**
|
|
881
916
|
* @public
|
|
882
917
|
* <p>The configuration size is too large.</p>
|
|
@@ -1097,24 +1132,34 @@ export interface AppliedExtension {
|
|
|
1097
1132
|
}
|
|
1098
1133
|
/**
|
|
1099
1134
|
* @public
|
|
1135
|
+
* @enum
|
|
1100
1136
|
*/
|
|
1101
|
-
export declare
|
|
1102
|
-
BAKE_TIME_STARTED
|
|
1103
|
-
DEPLOYMENT_COMPLETED
|
|
1104
|
-
DEPLOYMENT_STARTED
|
|
1105
|
-
PERCENTAGE_UPDATED
|
|
1106
|
-
ROLLBACK_COMPLETED
|
|
1107
|
-
ROLLBACK_STARTED
|
|
1108
|
-
}
|
|
1137
|
+
export declare const DeploymentEventType: {
|
|
1138
|
+
readonly BAKE_TIME_STARTED: "BAKE_TIME_STARTED";
|
|
1139
|
+
readonly DEPLOYMENT_COMPLETED: "DEPLOYMENT_COMPLETED";
|
|
1140
|
+
readonly DEPLOYMENT_STARTED: "DEPLOYMENT_STARTED";
|
|
1141
|
+
readonly PERCENTAGE_UPDATED: "PERCENTAGE_UPDATED";
|
|
1142
|
+
readonly ROLLBACK_COMPLETED: "ROLLBACK_COMPLETED";
|
|
1143
|
+
readonly ROLLBACK_STARTED: "ROLLBACK_STARTED";
|
|
1144
|
+
};
|
|
1109
1145
|
/**
|
|
1110
1146
|
* @public
|
|
1111
1147
|
*/
|
|
1112
|
-
export
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1148
|
+
export type DeploymentEventType = (typeof DeploymentEventType)[keyof typeof DeploymentEventType];
|
|
1149
|
+
/**
|
|
1150
|
+
* @public
|
|
1151
|
+
* @enum
|
|
1152
|
+
*/
|
|
1153
|
+
export declare const TriggeredBy: {
|
|
1154
|
+
readonly APPCONFIG: "APPCONFIG";
|
|
1155
|
+
readonly CLOUDWATCH_ALARM: "CLOUDWATCH_ALARM";
|
|
1156
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
1157
|
+
readonly USER: "USER";
|
|
1158
|
+
};
|
|
1159
|
+
/**
|
|
1160
|
+
* @public
|
|
1161
|
+
*/
|
|
1162
|
+
export type TriggeredBy = (typeof TriggeredBy)[keyof typeof TriggeredBy];
|
|
1118
1163
|
/**
|
|
1119
1164
|
* @public
|
|
1120
1165
|
* <p>An object that describes a deployment event.</p>
|
|
@@ -1149,15 +1194,20 @@ export interface DeploymentEvent {
|
|
|
1149
1194
|
}
|
|
1150
1195
|
/**
|
|
1151
1196
|
* @public
|
|
1197
|
+
* @enum
|
|
1152
1198
|
*/
|
|
1153
|
-
export declare
|
|
1154
|
-
BAKING
|
|
1155
|
-
COMPLETE
|
|
1156
|
-
DEPLOYING
|
|
1157
|
-
ROLLED_BACK
|
|
1158
|
-
ROLLING_BACK
|
|
1159
|
-
VALIDATING
|
|
1160
|
-
}
|
|
1199
|
+
export declare const DeploymentState: {
|
|
1200
|
+
readonly BAKING: "BAKING";
|
|
1201
|
+
readonly COMPLETE: "COMPLETE";
|
|
1202
|
+
readonly DEPLOYING: "DEPLOYING";
|
|
1203
|
+
readonly ROLLED_BACK: "ROLLED_BACK";
|
|
1204
|
+
readonly ROLLING_BACK: "ROLLING_BACK";
|
|
1205
|
+
readonly VALIDATING: "VALIDATING";
|
|
1206
|
+
};
|
|
1207
|
+
/**
|
|
1208
|
+
* @public
|
|
1209
|
+
*/
|
|
1210
|
+
export type DeploymentState = (typeof DeploymentState)[keyof typeof DeploymentState];
|
|
1161
1211
|
/**
|
|
1162
1212
|
* @public
|
|
1163
1213
|
*/
|