@aws-sdk/client-elastic-beanstalk 3.299.0 → 3.301.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-types/commands/AbortEnvironmentUpdateCommand.d.ts +4 -0
- package/dist-types/commands/ApplyEnvironmentManagedActionCommand.d.ts +5 -0
- package/dist-types/commands/AssociateEnvironmentOperationsRoleCommand.d.ts +4 -0
- package/dist-types/commands/CheckDNSAvailabilityCommand.d.ts +3 -0
- package/dist-types/commands/ComposeEnvironmentsCommand.d.ts +7 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +25 -0
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +29 -0
- package/dist-types/commands/CreateConfigurationTemplateCommand.d.ts +26 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +38 -0
- package/dist-types/commands/CreatePlatformVersionCommand.d.ts +23 -0
- package/dist-types/commands/CreateStorageLocationCommand.d.ts +1 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteApplicationVersionCommand.d.ts +5 -0
- package/dist-types/commands/DeleteConfigurationTemplateCommand.d.ts +4 -0
- package/dist-types/commands/DeleteEnvironmentConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/DeletePlatformVersionCommand.d.ts +3 -0
- package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeApplicationVersionsCommand.d.ts +8 -0
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeConfigurationOptionsCommand.d.ts +14 -0
- package/dist-types/commands/DescribeConfigurationSettingsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeEnvironmentHealthCommand.d.ts +7 -0
- package/dist-types/commands/DescribeEnvironmentManagedActionHistoryCommand.d.ts +6 -0
- package/dist-types/commands/DescribeEnvironmentManagedActionsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeEnvironmentResourcesCommand.d.ts +4 -0
- package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +14 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +14 -0
- package/dist-types/commands/DescribeInstancesHealthCommand.d.ts +8 -0
- package/dist-types/commands/DescribePlatformVersionCommand.d.ts +3 -0
- package/dist-types/commands/DisassociateEnvironmentOperationsRoleCommand.d.ts +3 -0
- package/dist-types/commands/ListAvailableSolutionStacksCommand.d.ts +1 -0
- package/dist-types/commands/ListPlatformBranchesCommand.d.ts +13 -0
- package/dist-types/commands/ListPlatformVersionsCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/RebuildEnvironmentCommand.d.ts +4 -0
- package/dist-types/commands/RequestEnvironmentInfoCommand.d.ts +5 -0
- package/dist-types/commands/RestartAppServerCommand.d.ts +4 -0
- package/dist-types/commands/RetrieveEnvironmentInfoCommand.d.ts +5 -0
- package/dist-types/commands/SwapEnvironmentCNAMEsCommand.d.ts +6 -0
- package/dist-types/commands/TerminateEnvironmentCommand.d.ts +6 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +4 -0
- package/dist-types/commands/UpdateApplicationResourceLifecycleCommand.d.ts +18 -0
- package/dist-types/commands/UpdateApplicationVersionCommand.d.ts +5 -0
- package/dist-types/commands/UpdateConfigurationTemplateCommand.d.ts +20 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +31 -0
- package/dist-types/commands/UpdateTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/ValidateConfigurationSettingsCommand.d.ts +13 -0
- package/package.json +8 -8
|
@@ -27,6 +27,10 @@ export interface AbortEnvironmentUpdateCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { ElasticBeanstalkClient, AbortEnvironmentUpdateCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
28
28
|
* // const { ElasticBeanstalkClient, AbortEnvironmentUpdateCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
29
29
|
* const client = new ElasticBeanstalkClient(config);
|
|
30
|
+
* const input = { // AbortEnvironmentUpdateMessage
|
|
31
|
+
* EnvironmentId: "STRING_VALUE",
|
|
32
|
+
* EnvironmentName: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new AbortEnvironmentUpdateCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -28,6 +28,11 @@ export interface ApplyEnvironmentManagedActionCommandOutput extends ApplyEnviron
|
|
|
28
28
|
* import { ElasticBeanstalkClient, ApplyEnvironmentManagedActionCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
29
29
|
* // const { ElasticBeanstalkClient, ApplyEnvironmentManagedActionCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
30
30
|
* const client = new ElasticBeanstalkClient(config);
|
|
31
|
+
* const input = { // ApplyEnvironmentManagedActionRequest
|
|
32
|
+
* EnvironmentName: "STRING_VALUE",
|
|
33
|
+
* EnvironmentId: "STRING_VALUE",
|
|
34
|
+
* ActionId: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
31
36
|
* const command = new ApplyEnvironmentManagedActionCommand(input);
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
@@ -29,6 +29,10 @@ export interface AssociateEnvironmentOperationsRoleCommandOutput extends __Metad
|
|
|
29
29
|
* import { ElasticBeanstalkClient, AssociateEnvironmentOperationsRoleCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
30
30
|
* // const { ElasticBeanstalkClient, AssociateEnvironmentOperationsRoleCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
31
31
|
* const client = new ElasticBeanstalkClient(config);
|
|
32
|
+
* const input = { // AssociateEnvironmentOperationsRoleMessage
|
|
33
|
+
* EnvironmentName: "STRING_VALUE", // required
|
|
34
|
+
* OperationsRole: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
32
36
|
* const command = new AssociateEnvironmentOperationsRoleCommand(input);
|
|
33
37
|
* const response = await client.send(command);
|
|
34
38
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface CheckDNSAvailabilityCommandOutput extends CheckDNSAvailabilityR
|
|
|
26
26
|
* import { ElasticBeanstalkClient, CheckDNSAvailabilityCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
27
27
|
* // const { ElasticBeanstalkClient, CheckDNSAvailabilityCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
28
28
|
* const client = new ElasticBeanstalkClient(config);
|
|
29
|
+
* const input = { // CheckDNSAvailabilityMessage
|
|
30
|
+
* CNAMEPrefix: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new CheckDNSAvailabilityCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -31,6 +31,13 @@ export interface ComposeEnvironmentsCommandOutput extends EnvironmentDescription
|
|
|
31
31
|
* import { ElasticBeanstalkClient, ComposeEnvironmentsCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
32
32
|
* // const { ElasticBeanstalkClient, ComposeEnvironmentsCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
33
33
|
* const client = new ElasticBeanstalkClient(config);
|
|
34
|
+
* const input = { // ComposeEnvironmentsMessage
|
|
35
|
+
* ApplicationName: "STRING_VALUE",
|
|
36
|
+
* GroupName: "STRING_VALUE",
|
|
37
|
+
* VersionLabels: [ // VersionLabels
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
34
41
|
* const command = new ComposeEnvironmentsCommand(input);
|
|
35
42
|
* const response = await client.send(command);
|
|
36
43
|
* ```
|
|
@@ -27,6 +27,31 @@ export interface CreateApplicationCommandOutput extends ApplicationDescriptionMe
|
|
|
27
27
|
* import { ElasticBeanstalkClient, CreateApplicationCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
28
28
|
* // const { ElasticBeanstalkClient, CreateApplicationCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
29
29
|
* const client = new ElasticBeanstalkClient(config);
|
|
30
|
+
* const input = { // CreateApplicationMessage
|
|
31
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
32
|
+
* Description: "STRING_VALUE",
|
|
33
|
+
* ResourceLifecycleConfig: { // ApplicationResourceLifecycleConfig
|
|
34
|
+
* ServiceRole: "STRING_VALUE",
|
|
35
|
+
* VersionLifecycleConfig: { // ApplicationVersionLifecycleConfig
|
|
36
|
+
* MaxCountRule: { // MaxCountRule
|
|
37
|
+
* Enabled: true || false, // required
|
|
38
|
+
* MaxCount: Number("int"),
|
|
39
|
+
* DeleteSourceFromS3: true || false,
|
|
40
|
+
* },
|
|
41
|
+
* MaxAgeRule: { // MaxAgeRule
|
|
42
|
+
* Enabled: true || false, // required
|
|
43
|
+
* MaxAgeInDays: Number("int"),
|
|
44
|
+
* DeleteSourceFromS3: true || false,
|
|
45
|
+
* },
|
|
46
|
+
* },
|
|
47
|
+
* },
|
|
48
|
+
* Tags: [ // Tags
|
|
49
|
+
* { // Tag
|
|
50
|
+
* Key: "STRING_VALUE",
|
|
51
|
+
* Value: "STRING_VALUE",
|
|
52
|
+
* },
|
|
53
|
+
* ],
|
|
54
|
+
* };
|
|
30
55
|
* const command = new CreateApplicationCommand(input);
|
|
31
56
|
* const response = await client.send(command);
|
|
32
57
|
* ```
|
|
@@ -42,6 +42,35 @@ export interface CreateApplicationVersionCommandOutput extends ApplicationVersio
|
|
|
42
42
|
* import { ElasticBeanstalkClient, CreateApplicationVersionCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
43
43
|
* // const { ElasticBeanstalkClient, CreateApplicationVersionCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
44
44
|
* const client = new ElasticBeanstalkClient(config);
|
|
45
|
+
* const input = { // CreateApplicationVersionMessage
|
|
46
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
47
|
+
* VersionLabel: "STRING_VALUE", // required
|
|
48
|
+
* Description: "STRING_VALUE",
|
|
49
|
+
* SourceBuildInformation: { // SourceBuildInformation
|
|
50
|
+
* SourceType: "Git" || "Zip", // required
|
|
51
|
+
* SourceRepository: "CodeCommit" || "S3", // required
|
|
52
|
+
* SourceLocation: "STRING_VALUE", // required
|
|
53
|
+
* },
|
|
54
|
+
* SourceBundle: { // S3Location
|
|
55
|
+
* S3Bucket: "STRING_VALUE",
|
|
56
|
+
* S3Key: "STRING_VALUE",
|
|
57
|
+
* },
|
|
58
|
+
* BuildConfiguration: { // BuildConfiguration
|
|
59
|
+
* ArtifactName: "STRING_VALUE",
|
|
60
|
+
* CodeBuildServiceRole: "STRING_VALUE", // required
|
|
61
|
+
* ComputeType: "BUILD_GENERAL1_SMALL" || "BUILD_GENERAL1_MEDIUM" || "BUILD_GENERAL1_LARGE",
|
|
62
|
+
* Image: "STRING_VALUE", // required
|
|
63
|
+
* TimeoutInMinutes: Number("int"),
|
|
64
|
+
* },
|
|
65
|
+
* AutoCreateApplication: true || false,
|
|
66
|
+
* Process: true || false,
|
|
67
|
+
* Tags: [ // Tags
|
|
68
|
+
* { // Tag
|
|
69
|
+
* Key: "STRING_VALUE",
|
|
70
|
+
* Value: "STRING_VALUE",
|
|
71
|
+
* },
|
|
72
|
+
* ],
|
|
73
|
+
* };
|
|
45
74
|
* const command = new CreateApplicationVersionCommand(input);
|
|
46
75
|
* const response = await client.send(command);
|
|
47
76
|
* ```
|
|
@@ -49,6 +49,32 @@ export interface CreateConfigurationTemplateCommandOutput extends ConfigurationS
|
|
|
49
49
|
* import { ElasticBeanstalkClient, CreateConfigurationTemplateCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
50
50
|
* // const { ElasticBeanstalkClient, CreateConfigurationTemplateCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
51
51
|
* const client = new ElasticBeanstalkClient(config);
|
|
52
|
+
* const input = { // CreateConfigurationTemplateMessage
|
|
53
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
54
|
+
* TemplateName: "STRING_VALUE", // required
|
|
55
|
+
* SolutionStackName: "STRING_VALUE",
|
|
56
|
+
* PlatformArn: "STRING_VALUE",
|
|
57
|
+
* SourceConfiguration: { // SourceConfiguration
|
|
58
|
+
* ApplicationName: "STRING_VALUE",
|
|
59
|
+
* TemplateName: "STRING_VALUE",
|
|
60
|
+
* },
|
|
61
|
+
* EnvironmentId: "STRING_VALUE",
|
|
62
|
+
* Description: "STRING_VALUE",
|
|
63
|
+
* OptionSettings: [ // ConfigurationOptionSettingsList
|
|
64
|
+
* { // ConfigurationOptionSetting
|
|
65
|
+
* ResourceName: "STRING_VALUE",
|
|
66
|
+
* Namespace: "STRING_VALUE",
|
|
67
|
+
* OptionName: "STRING_VALUE",
|
|
68
|
+
* Value: "STRING_VALUE",
|
|
69
|
+
* },
|
|
70
|
+
* ],
|
|
71
|
+
* Tags: [ // Tags
|
|
72
|
+
* { // Tag
|
|
73
|
+
* Key: "STRING_VALUE",
|
|
74
|
+
* Value: "STRING_VALUE",
|
|
75
|
+
* },
|
|
76
|
+
* ],
|
|
77
|
+
* };
|
|
52
78
|
* const command = new CreateConfigurationTemplateCommand(input);
|
|
53
79
|
* const response = await client.send(command);
|
|
54
80
|
* ```
|
|
@@ -27,6 +27,44 @@ export interface CreateEnvironmentCommandOutput extends EnvironmentDescription,
|
|
|
27
27
|
* import { ElasticBeanstalkClient, CreateEnvironmentCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
28
28
|
* // const { ElasticBeanstalkClient, CreateEnvironmentCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
29
29
|
* const client = new ElasticBeanstalkClient(config);
|
|
30
|
+
* const input = { // CreateEnvironmentMessage
|
|
31
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
32
|
+
* EnvironmentName: "STRING_VALUE",
|
|
33
|
+
* GroupName: "STRING_VALUE",
|
|
34
|
+
* Description: "STRING_VALUE",
|
|
35
|
+
* CNAMEPrefix: "STRING_VALUE",
|
|
36
|
+
* Tier: { // EnvironmentTier
|
|
37
|
+
* Name: "STRING_VALUE",
|
|
38
|
+
* Type: "STRING_VALUE",
|
|
39
|
+
* Version: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* Tags: [ // Tags
|
|
42
|
+
* { // Tag
|
|
43
|
+
* Key: "STRING_VALUE",
|
|
44
|
+
* Value: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* ],
|
|
47
|
+
* VersionLabel: "STRING_VALUE",
|
|
48
|
+
* TemplateName: "STRING_VALUE",
|
|
49
|
+
* SolutionStackName: "STRING_VALUE",
|
|
50
|
+
* PlatformArn: "STRING_VALUE",
|
|
51
|
+
* OptionSettings: [ // ConfigurationOptionSettingsList
|
|
52
|
+
* { // ConfigurationOptionSetting
|
|
53
|
+
* ResourceName: "STRING_VALUE",
|
|
54
|
+
* Namespace: "STRING_VALUE",
|
|
55
|
+
* OptionName: "STRING_VALUE",
|
|
56
|
+
* Value: "STRING_VALUE",
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* OptionsToRemove: [ // OptionsSpecifierList
|
|
60
|
+
* { // OptionSpecification
|
|
61
|
+
* ResourceName: "STRING_VALUE",
|
|
62
|
+
* Namespace: "STRING_VALUE",
|
|
63
|
+
* OptionName: "STRING_VALUE",
|
|
64
|
+
* },
|
|
65
|
+
* ],
|
|
66
|
+
* OperationsRole: "STRING_VALUE",
|
|
67
|
+
* };
|
|
30
68
|
* const command = new CreateEnvironmentCommand(input);
|
|
31
69
|
* const response = await client.send(command);
|
|
32
70
|
* ```
|
|
@@ -26,6 +26,29 @@ export interface CreatePlatformVersionCommandOutput extends CreatePlatformVersio
|
|
|
26
26
|
* import { ElasticBeanstalkClient, CreatePlatformVersionCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
27
27
|
* // const { ElasticBeanstalkClient, CreatePlatformVersionCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
28
28
|
* const client = new ElasticBeanstalkClient(config);
|
|
29
|
+
* const input = { // CreatePlatformVersionRequest
|
|
30
|
+
* PlatformName: "STRING_VALUE", // required
|
|
31
|
+
* PlatformVersion: "STRING_VALUE", // required
|
|
32
|
+
* PlatformDefinitionBundle: { // S3Location
|
|
33
|
+
* S3Bucket: "STRING_VALUE",
|
|
34
|
+
* S3Key: "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* EnvironmentName: "STRING_VALUE",
|
|
37
|
+
* OptionSettings: [ // ConfigurationOptionSettingsList
|
|
38
|
+
* { // ConfigurationOptionSetting
|
|
39
|
+
* ResourceName: "STRING_VALUE",
|
|
40
|
+
* Namespace: "STRING_VALUE",
|
|
41
|
+
* OptionName: "STRING_VALUE",
|
|
42
|
+
* Value: "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* ],
|
|
45
|
+
* Tags: [ // Tags
|
|
46
|
+
* { // Tag
|
|
47
|
+
* Key: "STRING_VALUE",
|
|
48
|
+
* Value: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* };
|
|
29
52
|
* const command = new CreatePlatformVersionCommand(input);
|
|
30
53
|
* const response = await client.send(command);
|
|
31
54
|
* ```
|
|
@@ -30,6 +30,7 @@ export interface CreateStorageLocationCommandOutput extends CreateStorageLocatio
|
|
|
30
30
|
* import { ElasticBeanstalkClient, CreateStorageLocationCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
31
31
|
* // const { ElasticBeanstalkClient, CreateStorageLocationCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
32
32
|
* const client = new ElasticBeanstalkClient(config);
|
|
33
|
+
* const input = {};
|
|
33
34
|
* const command = new CreateStorageLocationCommand(input);
|
|
34
35
|
* const response = await client.send(command);
|
|
35
36
|
* ```
|
|
@@ -31,6 +31,10 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* import { ElasticBeanstalkClient, DeleteApplicationCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
32
32
|
* // const { ElasticBeanstalkClient, DeleteApplicationCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
33
33
|
* const client = new ElasticBeanstalkClient(config);
|
|
34
|
+
* const input = { // DeleteApplicationMessage
|
|
35
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
36
|
+
* TerminateEnvByForce: true || false,
|
|
37
|
+
* };
|
|
34
38
|
* const command = new DeleteApplicationCommand(input);
|
|
35
39
|
* const response = await client.send(command);
|
|
36
40
|
* ```
|
|
@@ -30,6 +30,11 @@ export interface DeleteApplicationVersionCommandOutput extends __MetadataBearer
|
|
|
30
30
|
* import { ElasticBeanstalkClient, DeleteApplicationVersionCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
31
31
|
* // const { ElasticBeanstalkClient, DeleteApplicationVersionCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
32
32
|
* const client = new ElasticBeanstalkClient(config);
|
|
33
|
+
* const input = { // DeleteApplicationVersionMessage
|
|
34
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
35
|
+
* VersionLabel: "STRING_VALUE", // required
|
|
36
|
+
* DeleteSourceBundle: true || false,
|
|
37
|
+
* };
|
|
33
38
|
* const command = new DeleteApplicationVersionCommand(input);
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
@@ -31,6 +31,10 @@ export interface DeleteConfigurationTemplateCommandOutput extends __MetadataBear
|
|
|
31
31
|
* import { ElasticBeanstalkClient, DeleteConfigurationTemplateCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
32
32
|
* // const { ElasticBeanstalkClient, DeleteConfigurationTemplateCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
33
33
|
* const client = new ElasticBeanstalkClient(config);
|
|
34
|
+
* const input = { // DeleteConfigurationTemplateMessage
|
|
35
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
36
|
+
* TemplateName: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
34
38
|
* const command = new DeleteConfigurationTemplateCommand(input);
|
|
35
39
|
* const response = await client.send(command);
|
|
36
40
|
* ```
|
|
@@ -31,6 +31,10 @@ export interface DeleteEnvironmentConfigurationCommandOutput extends __MetadataB
|
|
|
31
31
|
* import { ElasticBeanstalkClient, DeleteEnvironmentConfigurationCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
32
32
|
* // const { ElasticBeanstalkClient, DeleteEnvironmentConfigurationCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
33
33
|
* const client = new ElasticBeanstalkClient(config);
|
|
34
|
+
* const input = { // DeleteEnvironmentConfigurationMessage
|
|
35
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
36
|
+
* EnvironmentName: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
34
38
|
* const command = new DeleteEnvironmentConfigurationCommand(input);
|
|
35
39
|
* const response = await client.send(command);
|
|
36
40
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeletePlatformVersionCommandOutput extends DeletePlatformVersio
|
|
|
26
26
|
* import { ElasticBeanstalkClient, DeletePlatformVersionCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
27
27
|
* // const { ElasticBeanstalkClient, DeletePlatformVersionCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
28
28
|
* const client = new ElasticBeanstalkClient(config);
|
|
29
|
+
* const input = { // DeletePlatformVersionRequest
|
|
30
|
+
* PlatformArn: "STRING_VALUE",
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeletePlatformVersionCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -28,6 +28,7 @@ export interface DescribeAccountAttributesCommandOutput extends DescribeAccountA
|
|
|
28
28
|
* import { ElasticBeanstalkClient, DescribeAccountAttributesCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
29
29
|
* // const { ElasticBeanstalkClient, DescribeAccountAttributesCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
30
30
|
* const client = new ElasticBeanstalkClient(config);
|
|
31
|
+
* const input = {};
|
|
31
32
|
* const command = new DescribeAccountAttributesCommand(input);
|
|
32
33
|
* const response = await client.send(command);
|
|
33
34
|
* ```
|
|
@@ -26,6 +26,14 @@ export interface DescribeApplicationVersionsCommandOutput extends ApplicationVer
|
|
|
26
26
|
* import { ElasticBeanstalkClient, DescribeApplicationVersionsCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
27
27
|
* // const { ElasticBeanstalkClient, DescribeApplicationVersionsCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
28
28
|
* const client = new ElasticBeanstalkClient(config);
|
|
29
|
+
* const input = { // DescribeApplicationVersionsMessage
|
|
30
|
+
* ApplicationName: "STRING_VALUE",
|
|
31
|
+
* VersionLabels: [ // VersionLabelsList
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* MaxRecords: Number("int"),
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
29
37
|
* const command = new DescribeApplicationVersionsCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DescribeApplicationsCommandOutput extends ApplicationDescriptio
|
|
|
26
26
|
* import { ElasticBeanstalkClient, DescribeApplicationsCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
27
27
|
* // const { ElasticBeanstalkClient, DescribeApplicationsCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
28
28
|
* const client = new ElasticBeanstalkClient(config);
|
|
29
|
+
* const input = { // DescribeApplicationsMessage
|
|
30
|
+
* ApplicationNames: [ // ApplicationNamesList
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeApplicationsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -29,6 +29,20 @@ export interface DescribeConfigurationOptionsCommandOutput extends Configuration
|
|
|
29
29
|
* import { ElasticBeanstalkClient, DescribeConfigurationOptionsCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
30
30
|
* // const { ElasticBeanstalkClient, DescribeConfigurationOptionsCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
31
31
|
* const client = new ElasticBeanstalkClient(config);
|
|
32
|
+
* const input = { // DescribeConfigurationOptionsMessage
|
|
33
|
+
* ApplicationName: "STRING_VALUE",
|
|
34
|
+
* TemplateName: "STRING_VALUE",
|
|
35
|
+
* EnvironmentName: "STRING_VALUE",
|
|
36
|
+
* SolutionStackName: "STRING_VALUE",
|
|
37
|
+
* PlatformArn: "STRING_VALUE",
|
|
38
|
+
* Options: [ // OptionsSpecifierList
|
|
39
|
+
* { // OptionSpecification
|
|
40
|
+
* ResourceName: "STRING_VALUE",
|
|
41
|
+
* Namespace: "STRING_VALUE",
|
|
42
|
+
* OptionName: "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* ],
|
|
45
|
+
* };
|
|
32
46
|
* const command = new DescribeConfigurationOptionsCommand(input);
|
|
33
47
|
* const response = await client.send(command);
|
|
34
48
|
* ```
|
|
@@ -40,6 +40,11 @@ export interface DescribeConfigurationSettingsCommandOutput extends Configuratio
|
|
|
40
40
|
* import { ElasticBeanstalkClient, DescribeConfigurationSettingsCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
41
41
|
* // const { ElasticBeanstalkClient, DescribeConfigurationSettingsCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
42
42
|
* const client = new ElasticBeanstalkClient(config);
|
|
43
|
+
* const input = { // DescribeConfigurationSettingsMessage
|
|
44
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
45
|
+
* TemplateName: "STRING_VALUE",
|
|
46
|
+
* EnvironmentName: "STRING_VALUE",
|
|
47
|
+
* };
|
|
43
48
|
* const command = new DescribeConfigurationSettingsCommand(input);
|
|
44
49
|
* const response = await client.send(command);
|
|
45
50
|
* ```
|
|
@@ -28,6 +28,13 @@ export interface DescribeEnvironmentHealthCommandOutput extends DescribeEnvironm
|
|
|
28
28
|
* import { ElasticBeanstalkClient, DescribeEnvironmentHealthCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
29
29
|
* // const { ElasticBeanstalkClient, DescribeEnvironmentHealthCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
30
30
|
* const client = new ElasticBeanstalkClient(config);
|
|
31
|
+
* const input = { // DescribeEnvironmentHealthRequest
|
|
32
|
+
* EnvironmentName: "STRING_VALUE",
|
|
33
|
+
* EnvironmentId: "STRING_VALUE",
|
|
34
|
+
* AttributeNames: [ // EnvironmentHealthAttributes
|
|
35
|
+
* "Status" || "Color" || "Causes" || "ApplicationMetrics" || "InstancesHealth" || "All" || "HealthStatus" || "RefreshedAt",
|
|
36
|
+
* ],
|
|
37
|
+
* };
|
|
31
38
|
* const command = new DescribeEnvironmentHealthCommand(input);
|
|
32
39
|
* const response = await client.send(command);
|
|
33
40
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface DescribeEnvironmentManagedActionHistoryCommandOutput extends De
|
|
|
26
26
|
* import { ElasticBeanstalkClient, DescribeEnvironmentManagedActionHistoryCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
27
27
|
* // const { ElasticBeanstalkClient, DescribeEnvironmentManagedActionHistoryCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
28
28
|
* const client = new ElasticBeanstalkClient(config);
|
|
29
|
+
* const input = { // DescribeEnvironmentManagedActionHistoryRequest
|
|
30
|
+
* EnvironmentId: "STRING_VALUE",
|
|
31
|
+
* EnvironmentName: "STRING_VALUE",
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* MaxItems: Number("int"),
|
|
34
|
+
* };
|
|
29
35
|
* const command = new DescribeEnvironmentManagedActionHistoryCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DescribeEnvironmentManagedActionsCommandOutput extends Describe
|
|
|
26
26
|
* import { ElasticBeanstalkClient, DescribeEnvironmentManagedActionsCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
27
27
|
* // const { ElasticBeanstalkClient, DescribeEnvironmentManagedActionsCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
28
28
|
* const client = new ElasticBeanstalkClient(config);
|
|
29
|
+
* const input = { // DescribeEnvironmentManagedActionsRequest
|
|
30
|
+
* EnvironmentName: "STRING_VALUE",
|
|
31
|
+
* EnvironmentId: "STRING_VALUE",
|
|
32
|
+
* Status: "Scheduled" || "Pending" || "Running" || "Unknown",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeEnvironmentManagedActionsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DescribeEnvironmentResourcesCommandOutput extends EnvironmentRe
|
|
|
26
26
|
* import { ElasticBeanstalkClient, DescribeEnvironmentResourcesCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
27
27
|
* // const { ElasticBeanstalkClient, DescribeEnvironmentResourcesCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
28
28
|
* const client = new ElasticBeanstalkClient(config);
|
|
29
|
+
* const input = { // DescribeEnvironmentResourcesMessage
|
|
30
|
+
* EnvironmentId: "STRING_VALUE",
|
|
31
|
+
* EnvironmentName: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DescribeEnvironmentResourcesCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,20 @@ export interface DescribeEnvironmentsCommandOutput extends EnvironmentDescriptio
|
|
|
26
26
|
* import { ElasticBeanstalkClient, DescribeEnvironmentsCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
27
27
|
* // const { ElasticBeanstalkClient, DescribeEnvironmentsCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
28
28
|
* const client = new ElasticBeanstalkClient(config);
|
|
29
|
+
* const input = { // DescribeEnvironmentsMessage
|
|
30
|
+
* ApplicationName: "STRING_VALUE",
|
|
31
|
+
* VersionLabel: "STRING_VALUE",
|
|
32
|
+
* EnvironmentIds: [ // EnvironmentIdList
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* EnvironmentNames: [ // EnvironmentNamesList
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* IncludeDeleted: true || false,
|
|
39
|
+
* IncludedDeletedBackTo: new Date("TIMESTAMP"),
|
|
40
|
+
* MaxRecords: Number("int"),
|
|
41
|
+
* NextToken: "STRING_VALUE",
|
|
42
|
+
* };
|
|
29
43
|
* const command = new DescribeEnvironmentsCommand(input);
|
|
30
44
|
* const response = await client.send(command);
|
|
31
45
|
* ```
|
|
@@ -30,6 +30,20 @@ export interface DescribeEventsCommandOutput extends EventDescriptionsMessage, _
|
|
|
30
30
|
* import { ElasticBeanstalkClient, DescribeEventsCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
31
31
|
* // const { ElasticBeanstalkClient, DescribeEventsCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
32
32
|
* const client = new ElasticBeanstalkClient(config);
|
|
33
|
+
* const input = { // DescribeEventsMessage
|
|
34
|
+
* ApplicationName: "STRING_VALUE",
|
|
35
|
+
* VersionLabel: "STRING_VALUE",
|
|
36
|
+
* TemplateName: "STRING_VALUE",
|
|
37
|
+
* EnvironmentId: "STRING_VALUE",
|
|
38
|
+
* EnvironmentName: "STRING_VALUE",
|
|
39
|
+
* PlatformArn: "STRING_VALUE",
|
|
40
|
+
* RequestId: "STRING_VALUE",
|
|
41
|
+
* Severity: "TRACE" || "DEBUG" || "INFO" || "WARN" || "ERROR" || "FATAL",
|
|
42
|
+
* StartTime: new Date("TIMESTAMP"),
|
|
43
|
+
* EndTime: new Date("TIMESTAMP"),
|
|
44
|
+
* MaxRecords: Number("int"),
|
|
45
|
+
* NextToken: "STRING_VALUE",
|
|
46
|
+
* };
|
|
33
47
|
* const command = new DescribeEventsCommand(input);
|
|
34
48
|
* const response = await client.send(command);
|
|
35
49
|
* ```
|
|
@@ -28,6 +28,14 @@ export interface DescribeInstancesHealthCommandOutput extends DescribeInstancesH
|
|
|
28
28
|
* import { ElasticBeanstalkClient, DescribeInstancesHealthCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
29
29
|
* // const { ElasticBeanstalkClient, DescribeInstancesHealthCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
30
30
|
* const client = new ElasticBeanstalkClient(config);
|
|
31
|
+
* const input = { // DescribeInstancesHealthRequest
|
|
32
|
+
* EnvironmentName: "STRING_VALUE",
|
|
33
|
+
* EnvironmentId: "STRING_VALUE",
|
|
34
|
+
* AttributeNames: [ // InstancesHealthAttributes
|
|
35
|
+
* "HealthStatus" || "Color" || "Causes" || "ApplicationMetrics" || "RefreshedAt" || "LaunchedAt" || "System" || "Deployment" || "AvailabilityZone" || "InstanceType" || "All",
|
|
36
|
+
* ],
|
|
37
|
+
* NextToken: "STRING_VALUE",
|
|
38
|
+
* };
|
|
31
39
|
* const command = new DescribeInstancesHealthCommand(input);
|
|
32
40
|
* const response = await client.send(command);
|
|
33
41
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface DescribePlatformVersionCommandOutput extends DescribePlatformVe
|
|
|
29
29
|
* import { ElasticBeanstalkClient, DescribePlatformVersionCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
30
30
|
* // const { ElasticBeanstalkClient, DescribePlatformVersionCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
31
31
|
* const client = new ElasticBeanstalkClient(config);
|
|
32
|
+
* const input = { // DescribePlatformVersionRequest
|
|
33
|
+
* PlatformArn: "STRING_VALUE",
|
|
34
|
+
* };
|
|
32
35
|
* const command = new DescribePlatformVersionCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface DisassociateEnvironmentOperationsRoleCommandOutput extends __Me
|
|
|
29
29
|
* import { ElasticBeanstalkClient, DisassociateEnvironmentOperationsRoleCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
30
30
|
* // const { ElasticBeanstalkClient, DisassociateEnvironmentOperationsRoleCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
31
31
|
* const client = new ElasticBeanstalkClient(config);
|
|
32
|
+
* const input = { // DisassociateEnvironmentOperationsRoleMessage
|
|
33
|
+
* EnvironmentName: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new DisassociateEnvironmentOperationsRoleCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
|
@@ -27,6 +27,7 @@ export interface ListAvailableSolutionStacksCommandOutput extends ListAvailableS
|
|
|
27
27
|
* import { ElasticBeanstalkClient, ListAvailableSolutionStacksCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
28
28
|
* // const { ElasticBeanstalkClient, ListAvailableSolutionStacksCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
29
29
|
* const client = new ElasticBeanstalkClient(config);
|
|
30
|
+
* const input = {};
|
|
30
31
|
* const command = new ListAvailableSolutionStacksCommand(input);
|
|
31
32
|
* const response = await client.send(command);
|
|
32
33
|
* ```
|
|
@@ -29,6 +29,19 @@ export interface ListPlatformBranchesCommandOutput extends ListPlatformBranchesR
|
|
|
29
29
|
* import { ElasticBeanstalkClient, ListPlatformBranchesCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
30
30
|
* // const { ElasticBeanstalkClient, ListPlatformBranchesCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
31
31
|
* const client = new ElasticBeanstalkClient(config);
|
|
32
|
+
* const input = { // ListPlatformBranchesRequest
|
|
33
|
+
* Filters: [ // SearchFilters
|
|
34
|
+
* { // SearchFilter
|
|
35
|
+
* Attribute: "STRING_VALUE",
|
|
36
|
+
* Operator: "STRING_VALUE",
|
|
37
|
+
* Values: [ // SearchFilterValues
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* MaxRecords: Number("int"),
|
|
43
|
+
* NextToken: "STRING_VALUE",
|
|
44
|
+
* };
|
|
32
45
|
* const command = new ListPlatformBranchesCommand(input);
|
|
33
46
|
* const response = await client.send(command);
|
|
34
47
|
* ```
|
|
@@ -30,6 +30,19 @@ export interface ListPlatformVersionsCommandOutput extends ListPlatformVersionsR
|
|
|
30
30
|
* import { ElasticBeanstalkClient, ListPlatformVersionsCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
31
31
|
* // const { ElasticBeanstalkClient, ListPlatformVersionsCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
32
32
|
* const client = new ElasticBeanstalkClient(config);
|
|
33
|
+
* const input = { // ListPlatformVersionsRequest
|
|
34
|
+
* Filters: [ // PlatformFilters
|
|
35
|
+
* { // PlatformFilter
|
|
36
|
+
* Type: "STRING_VALUE",
|
|
37
|
+
* Operator: "STRING_VALUE",
|
|
38
|
+
* Values: [ // PlatformFilterValueList
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* MaxRecords: Number("int"),
|
|
44
|
+
* NextToken: "STRING_VALUE",
|
|
45
|
+
* };
|
|
33
46
|
* const command = new ListPlatformVersionsCommand(input);
|
|
34
47
|
* const response = await client.send(command);
|
|
35
48
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface ListTagsForResourceCommandOutput extends ResourceTagsDescriptio
|
|
|
29
29
|
* import { ElasticBeanstalkClient, ListTagsForResourceCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
30
30
|
* // const { ElasticBeanstalkClient, ListTagsForResourceCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
31
31
|
* const client = new ElasticBeanstalkClient(config);
|
|
32
|
+
* const input = { // ListTagsForResourceMessage
|
|
33
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface RebuildEnvironmentCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { ElasticBeanstalkClient, RebuildEnvironmentCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
28
28
|
* // const { ElasticBeanstalkClient, RebuildEnvironmentCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
29
29
|
* const client = new ElasticBeanstalkClient(config);
|
|
30
|
+
* const input = { // RebuildEnvironmentMessage
|
|
31
|
+
* EnvironmentId: "STRING_VALUE",
|
|
32
|
+
* EnvironmentName: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new RebuildEnvironmentCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -41,6 +41,11 @@ export interface RequestEnvironmentInfoCommandOutput extends __MetadataBearer {
|
|
|
41
41
|
* import { ElasticBeanstalkClient, RequestEnvironmentInfoCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
42
42
|
* // const { ElasticBeanstalkClient, RequestEnvironmentInfoCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
43
43
|
* const client = new ElasticBeanstalkClient(config);
|
|
44
|
+
* const input = { // RequestEnvironmentInfoMessage
|
|
45
|
+
* EnvironmentId: "STRING_VALUE",
|
|
46
|
+
* EnvironmentName: "STRING_VALUE",
|
|
47
|
+
* InfoType: "tail" || "bundle", // required
|
|
48
|
+
* };
|
|
44
49
|
* const command = new RequestEnvironmentInfoCommand(input);
|
|
45
50
|
* const response = await client.send(command);
|
|
46
51
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface RestartAppServerCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { ElasticBeanstalkClient, RestartAppServerCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
28
28
|
* // const { ElasticBeanstalkClient, RestartAppServerCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
29
29
|
* const client = new ElasticBeanstalkClient(config);
|
|
30
|
+
* const input = { // RestartAppServerMessage
|
|
31
|
+
* EnvironmentId: "STRING_VALUE",
|
|
32
|
+
* EnvironmentName: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new RestartAppServerCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -35,6 +35,11 @@ export interface RetrieveEnvironmentInfoCommandOutput extends RetrieveEnvironmen
|
|
|
35
35
|
* import { ElasticBeanstalkClient, RetrieveEnvironmentInfoCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
36
36
|
* // const { ElasticBeanstalkClient, RetrieveEnvironmentInfoCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
37
37
|
* const client = new ElasticBeanstalkClient(config);
|
|
38
|
+
* const input = { // RetrieveEnvironmentInfoMessage
|
|
39
|
+
* EnvironmentId: "STRING_VALUE",
|
|
40
|
+
* EnvironmentName: "STRING_VALUE",
|
|
41
|
+
* InfoType: "tail" || "bundle", // required
|
|
42
|
+
* };
|
|
38
43
|
* const command = new RetrieveEnvironmentInfoCommand(input);
|
|
39
44
|
* const response = await client.send(command);
|
|
40
45
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface SwapEnvironmentCNAMEsCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { ElasticBeanstalkClient, SwapEnvironmentCNAMEsCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
27
27
|
* // const { ElasticBeanstalkClient, SwapEnvironmentCNAMEsCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
28
28
|
* const client = new ElasticBeanstalkClient(config);
|
|
29
|
+
* const input = { // SwapEnvironmentCNAMEsMessage
|
|
30
|
+
* SourceEnvironmentId: "STRING_VALUE",
|
|
31
|
+
* SourceEnvironmentName: "STRING_VALUE",
|
|
32
|
+
* DestinationEnvironmentId: "STRING_VALUE",
|
|
33
|
+
* DestinationEnvironmentName: "STRING_VALUE",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new SwapEnvironmentCNAMEsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface TerminateEnvironmentCommandOutput extends EnvironmentDescriptio
|
|
|
26
26
|
* import { ElasticBeanstalkClient, TerminateEnvironmentCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
27
27
|
* // const { ElasticBeanstalkClient, TerminateEnvironmentCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
28
28
|
* const client = new ElasticBeanstalkClient(config);
|
|
29
|
+
* const input = { // TerminateEnvironmentMessage
|
|
30
|
+
* EnvironmentId: "STRING_VALUE",
|
|
31
|
+
* EnvironmentName: "STRING_VALUE",
|
|
32
|
+
* TerminateResources: true || false,
|
|
33
|
+
* ForceTerminate: true || false,
|
|
34
|
+
* };
|
|
29
35
|
* const command = new TerminateEnvironmentCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -30,6 +30,10 @@ export interface UpdateApplicationCommandOutput extends ApplicationDescriptionMe
|
|
|
30
30
|
* import { ElasticBeanstalkClient, UpdateApplicationCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
31
31
|
* // const { ElasticBeanstalkClient, UpdateApplicationCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
32
32
|
* const client = new ElasticBeanstalkClient(config);
|
|
33
|
+
* const input = { // UpdateApplicationMessage
|
|
34
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
35
|
+
* Description: "STRING_VALUE",
|
|
36
|
+
* };
|
|
33
37
|
* const command = new UpdateApplicationCommand(input);
|
|
34
38
|
* const response = await client.send(command);
|
|
35
39
|
* ```
|
|
@@ -26,6 +26,24 @@ export interface UpdateApplicationResourceLifecycleCommandOutput extends Applica
|
|
|
26
26
|
* import { ElasticBeanstalkClient, UpdateApplicationResourceLifecycleCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
27
27
|
* // const { ElasticBeanstalkClient, UpdateApplicationResourceLifecycleCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
28
28
|
* const client = new ElasticBeanstalkClient(config);
|
|
29
|
+
* const input = { // UpdateApplicationResourceLifecycleMessage
|
|
30
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
31
|
+
* ResourceLifecycleConfig: { // ApplicationResourceLifecycleConfig
|
|
32
|
+
* ServiceRole: "STRING_VALUE",
|
|
33
|
+
* VersionLifecycleConfig: { // ApplicationVersionLifecycleConfig
|
|
34
|
+
* MaxCountRule: { // MaxCountRule
|
|
35
|
+
* Enabled: true || false, // required
|
|
36
|
+
* MaxCount: Number("int"),
|
|
37
|
+
* DeleteSourceFromS3: true || false,
|
|
38
|
+
* },
|
|
39
|
+
* MaxAgeRule: { // MaxAgeRule
|
|
40
|
+
* Enabled: true || false, // required
|
|
41
|
+
* MaxAgeInDays: Number("int"),
|
|
42
|
+
* DeleteSourceFromS3: true || false,
|
|
43
|
+
* },
|
|
44
|
+
* },
|
|
45
|
+
* },
|
|
46
|
+
* };
|
|
29
47
|
* const command = new UpdateApplicationResourceLifecycleCommand(input);
|
|
30
48
|
* const response = await client.send(command);
|
|
31
49
|
* ```
|
|
@@ -30,6 +30,11 @@ export interface UpdateApplicationVersionCommandOutput extends ApplicationVersio
|
|
|
30
30
|
* import { ElasticBeanstalkClient, UpdateApplicationVersionCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
31
31
|
* // const { ElasticBeanstalkClient, UpdateApplicationVersionCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
32
32
|
* const client = new ElasticBeanstalkClient(config);
|
|
33
|
+
* const input = { // UpdateApplicationVersionMessage
|
|
34
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
35
|
+
* VersionLabel: "STRING_VALUE", // required
|
|
36
|
+
* Description: "STRING_VALUE",
|
|
37
|
+
* };
|
|
33
38
|
* const command = new UpdateApplicationVersionCommand(input);
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
@@ -39,6 +39,26 @@ export interface UpdateConfigurationTemplateCommandOutput extends ConfigurationS
|
|
|
39
39
|
* import { ElasticBeanstalkClient, UpdateConfigurationTemplateCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
40
40
|
* // const { ElasticBeanstalkClient, UpdateConfigurationTemplateCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
41
41
|
* const client = new ElasticBeanstalkClient(config);
|
|
42
|
+
* const input = { // UpdateConfigurationTemplateMessage
|
|
43
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
44
|
+
* TemplateName: "STRING_VALUE", // required
|
|
45
|
+
* Description: "STRING_VALUE",
|
|
46
|
+
* OptionSettings: [ // ConfigurationOptionSettingsList
|
|
47
|
+
* { // ConfigurationOptionSetting
|
|
48
|
+
* ResourceName: "STRING_VALUE",
|
|
49
|
+
* Namespace: "STRING_VALUE",
|
|
50
|
+
* OptionName: "STRING_VALUE",
|
|
51
|
+
* Value: "STRING_VALUE",
|
|
52
|
+
* },
|
|
53
|
+
* ],
|
|
54
|
+
* OptionsToRemove: [ // OptionsSpecifierList
|
|
55
|
+
* { // OptionSpecification
|
|
56
|
+
* ResourceName: "STRING_VALUE",
|
|
57
|
+
* Namespace: "STRING_VALUE",
|
|
58
|
+
* OptionName: "STRING_VALUE",
|
|
59
|
+
* },
|
|
60
|
+
* ],
|
|
61
|
+
* };
|
|
42
62
|
* const command = new UpdateConfigurationTemplateCommand(input);
|
|
43
63
|
* const response = await client.send(command);
|
|
44
64
|
* ```
|
|
@@ -34,6 +34,37 @@ export interface UpdateEnvironmentCommandOutput extends EnvironmentDescription,
|
|
|
34
34
|
* import { ElasticBeanstalkClient, UpdateEnvironmentCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
35
35
|
* // const { ElasticBeanstalkClient, UpdateEnvironmentCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
36
36
|
* const client = new ElasticBeanstalkClient(config);
|
|
37
|
+
* const input = { // UpdateEnvironmentMessage
|
|
38
|
+
* ApplicationName: "STRING_VALUE",
|
|
39
|
+
* EnvironmentId: "STRING_VALUE",
|
|
40
|
+
* EnvironmentName: "STRING_VALUE",
|
|
41
|
+
* GroupName: "STRING_VALUE",
|
|
42
|
+
* Description: "STRING_VALUE",
|
|
43
|
+
* Tier: { // EnvironmentTier
|
|
44
|
+
* Name: "STRING_VALUE",
|
|
45
|
+
* Type: "STRING_VALUE",
|
|
46
|
+
* Version: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* VersionLabel: "STRING_VALUE",
|
|
49
|
+
* TemplateName: "STRING_VALUE",
|
|
50
|
+
* SolutionStackName: "STRING_VALUE",
|
|
51
|
+
* PlatformArn: "STRING_VALUE",
|
|
52
|
+
* OptionSettings: [ // ConfigurationOptionSettingsList
|
|
53
|
+
* { // ConfigurationOptionSetting
|
|
54
|
+
* ResourceName: "STRING_VALUE",
|
|
55
|
+
* Namespace: "STRING_VALUE",
|
|
56
|
+
* OptionName: "STRING_VALUE",
|
|
57
|
+
* Value: "STRING_VALUE",
|
|
58
|
+
* },
|
|
59
|
+
* ],
|
|
60
|
+
* OptionsToRemove: [ // OptionsSpecifierList
|
|
61
|
+
* { // OptionSpecification
|
|
62
|
+
* ResourceName: "STRING_VALUE",
|
|
63
|
+
* Namespace: "STRING_VALUE",
|
|
64
|
+
* OptionName: "STRING_VALUE",
|
|
65
|
+
* },
|
|
66
|
+
* ],
|
|
67
|
+
* };
|
|
37
68
|
* const command = new UpdateEnvironmentCommand(input);
|
|
38
69
|
* const response = await client.send(command);
|
|
39
70
|
* ```
|
|
@@ -45,6 +45,18 @@ export interface UpdateTagsForResourceCommandOutput extends __MetadataBearer {
|
|
|
45
45
|
* import { ElasticBeanstalkClient, UpdateTagsForResourceCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
46
46
|
* // const { ElasticBeanstalkClient, UpdateTagsForResourceCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
47
47
|
* const client = new ElasticBeanstalkClient(config);
|
|
48
|
+
* const input = { // UpdateTagsForResourceMessage
|
|
49
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
50
|
+
* TagsToAdd: [ // TagList
|
|
51
|
+
* { // Tag
|
|
52
|
+
* Key: "STRING_VALUE",
|
|
53
|
+
* Value: "STRING_VALUE",
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
56
|
+
* TagsToRemove: [ // TagKeyList
|
|
57
|
+
* "STRING_VALUE",
|
|
58
|
+
* ],
|
|
59
|
+
* };
|
|
48
60
|
* const command = new UpdateTagsForResourceCommand(input);
|
|
49
61
|
* const response = await client.send(command);
|
|
50
62
|
* ```
|
|
@@ -29,6 +29,19 @@ export interface ValidateConfigurationSettingsCommandOutput extends Configuratio
|
|
|
29
29
|
* import { ElasticBeanstalkClient, ValidateConfigurationSettingsCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
|
|
30
30
|
* // const { ElasticBeanstalkClient, ValidateConfigurationSettingsCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
|
|
31
31
|
* const client = new ElasticBeanstalkClient(config);
|
|
32
|
+
* const input = { // ValidateConfigurationSettingsMessage
|
|
33
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
34
|
+
* TemplateName: "STRING_VALUE",
|
|
35
|
+
* EnvironmentName: "STRING_VALUE",
|
|
36
|
+
* OptionSettings: [ // ConfigurationOptionSettingsList // required
|
|
37
|
+
* { // ConfigurationOptionSetting
|
|
38
|
+
* ResourceName: "STRING_VALUE",
|
|
39
|
+
* Namespace: "STRING_VALUE",
|
|
40
|
+
* OptionName: "STRING_VALUE",
|
|
41
|
+
* Value: "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* };
|
|
32
45
|
* const command = new ValidateConfigurationSettingsCommand(input);
|
|
33
46
|
* const response = await client.send(command);
|
|
34
47
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elastic-beanstalk",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elastic Beanstalk Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"@aws-sdk/util-waiter": "3.296.0",
|
|
57
57
|
"fast-xml-parser": "4.1.2",
|