@aws-sdk/client-apprunner 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.
Files changed (40) hide show
  1. package/dist-cjs/models/models_0.js +104 -122
  2. package/dist-es/models/models_0.js +104 -122
  3. package/dist-types/commands/AssociateCustomDomainCommand.d.ts +1 -1
  4. package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +3 -3
  5. package/dist-types/commands/CreateConnectionCommand.d.ts +3 -3
  6. package/dist-types/commands/CreateObservabilityConfigurationCommand.d.ts +4 -4
  7. package/dist-types/commands/CreateServiceCommand.d.ts +20 -20
  8. package/dist-types/commands/CreateVpcConnectorCommand.d.ts +4 -4
  9. package/dist-types/commands/CreateVpcIngressConnectionCommand.d.ts +4 -4
  10. package/dist-types/commands/DeleteAutoScalingConfigurationCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteConnectionCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteObservabilityConfigurationCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteServiceCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteVpcConnectorCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteVpcIngressConnectionCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeAutoScalingConfigurationCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeCustomDomainsCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeObservabilityConfigurationCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeServiceCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeVpcConnectorCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeVpcIngressConnectionCommand.d.ts +1 -1
  22. package/dist-types/commands/DisassociateCustomDomainCommand.d.ts +1 -1
  23. package/dist-types/commands/ListAutoScalingConfigurationsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListConnectionsCommand.d.ts +1 -1
  25. package/dist-types/commands/ListObservabilityConfigurationsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListOperationsCommand.d.ts +1 -1
  27. package/dist-types/commands/ListServicesCommand.d.ts +1 -1
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  29. package/dist-types/commands/ListVpcConnectorsCommand.d.ts +1 -1
  30. package/dist-types/commands/ListVpcIngressConnectionsCommand.d.ts +2 -2
  31. package/dist-types/commands/PauseServiceCommand.d.ts +1 -1
  32. package/dist-types/commands/ResumeServiceCommand.d.ts +1 -1
  33. package/dist-types/commands/StartDeploymentCommand.d.ts +1 -1
  34. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  35. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  36. package/dist-types/commands/UpdateServiceCommand.d.ts +17 -17
  37. package/dist-types/commands/UpdateVpcIngressConnectionCommand.d.ts +2 -2
  38. package/dist-types/models/models_0.d.ts +194 -104
  39. package/dist-types/ts3.4/models/models_0.d.ts +134 -104
  40. package/package.json +34 -34
@@ -27,34 +27,34 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
27
27
  * import { AppRunnerClient, CreateServiceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
28
28
  * // const { AppRunnerClient, CreateServiceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
29
29
  * const client = new AppRunnerClient(config);
30
- * const input = {
30
+ * const input = { // CreateServiceRequest
31
31
  * ServiceName: "STRING_VALUE", // required
32
- * SourceConfiguration: {
33
- * CodeRepository: {
32
+ * SourceConfiguration: { // SourceConfiguration
33
+ * CodeRepository: { // CodeRepository
34
34
  * RepositoryUrl: "STRING_VALUE", // required
35
- * SourceCodeVersion: {
35
+ * SourceCodeVersion: { // SourceCodeVersion
36
36
  * Type: "BRANCH", // required
37
37
  * Value: "STRING_VALUE", // required
38
38
  * },
39
- * CodeConfiguration: {
39
+ * CodeConfiguration: { // CodeConfiguration
40
40
  * ConfigurationSource: "REPOSITORY" || "API", // required
41
- * CodeConfigurationValues: {
41
+ * CodeConfigurationValues: { // CodeConfigurationValues
42
42
  * Runtime: "PYTHON_3" || "NODEJS_12" || "NODEJS_14" || "CORRETTO_8" || "CORRETTO_11" || "NODEJS_16" || "GO_1" || "DOTNET_6" || "PHP_81" || "RUBY_31", // required
43
43
  * BuildCommand: "STRING_VALUE",
44
44
  * StartCommand: "STRING_VALUE",
45
45
  * Port: "STRING_VALUE",
46
- * RuntimeEnvironmentVariables: {
46
+ * RuntimeEnvironmentVariables: { // RuntimeEnvironmentVariables
47
47
  * "<keys>": "STRING_VALUE",
48
48
  * },
49
- * RuntimeEnvironmentSecrets: {
49
+ * RuntimeEnvironmentSecrets: { // RuntimeEnvironmentSecrets
50
50
  * "<keys>": "STRING_VALUE",
51
51
  * },
52
52
  * },
53
53
  * },
54
54
  * },
55
- * ImageRepository: {
55
+ * ImageRepository: { // ImageRepository
56
56
  * ImageIdentifier: "STRING_VALUE", // required
57
- * ImageConfiguration: {
57
+ * ImageConfiguration: { // ImageConfiguration
58
58
  * RuntimeEnvironmentVariables: {
59
59
  * "<keys>": "STRING_VALUE",
60
60
  * },
@@ -67,26 +67,26 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
67
67
  * ImageRepositoryType: "ECR" || "ECR_PUBLIC", // required
68
68
  * },
69
69
  * AutoDeploymentsEnabled: true || false,
70
- * AuthenticationConfiguration: {
70
+ * AuthenticationConfiguration: { // AuthenticationConfiguration
71
71
  * ConnectionArn: "STRING_VALUE",
72
72
  * AccessRoleArn: "STRING_VALUE",
73
73
  * },
74
74
  * },
75
- * InstanceConfiguration: {
75
+ * InstanceConfiguration: { // InstanceConfiguration
76
76
  * Cpu: "STRING_VALUE",
77
77
  * Memory: "STRING_VALUE",
78
78
  * InstanceRoleArn: "STRING_VALUE",
79
79
  * },
80
- * Tags: [
81
- * {
80
+ * Tags: [ // TagList
81
+ * { // Tag
82
82
  * Key: "STRING_VALUE",
83
83
  * Value: "STRING_VALUE",
84
84
  * },
85
85
  * ],
86
- * EncryptionConfiguration: {
86
+ * EncryptionConfiguration: { // EncryptionConfiguration
87
87
  * KmsKey: "STRING_VALUE", // required
88
88
  * },
89
- * HealthCheckConfiguration: {
89
+ * HealthCheckConfiguration: { // HealthCheckConfiguration
90
90
  * Protocol: "TCP" || "HTTP",
91
91
  * Path: "STRING_VALUE",
92
92
  * Interval: Number("int"),
@@ -95,16 +95,16 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
95
95
  * UnhealthyThreshold: Number("int"),
96
96
  * },
97
97
  * AutoScalingConfigurationArn: "STRING_VALUE",
98
- * NetworkConfiguration: {
99
- * EgressConfiguration: {
98
+ * NetworkConfiguration: { // NetworkConfiguration
99
+ * EgressConfiguration: { // EgressConfiguration
100
100
  * EgressType: "DEFAULT" || "VPC",
101
101
  * VpcConnectorArn: "STRING_VALUE",
102
102
  * },
103
- * IngressConfiguration: {
103
+ * IngressConfiguration: { // IngressConfiguration
104
104
  * IsPubliclyAccessible: true || false,
105
105
  * },
106
106
  * },
107
- * ObservabilityConfiguration: {
107
+ * ObservabilityConfiguration: { // ServiceObservabilityConfiguration
108
108
  * ObservabilityEnabled: true || false, // required
109
109
  * ObservabilityConfigurationArn: "STRING_VALUE",
110
110
  * },
@@ -27,16 +27,16 @@ export interface CreateVpcConnectorCommandOutput extends CreateVpcConnectorRespo
27
27
  * import { AppRunnerClient, CreateVpcConnectorCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
28
28
  * // const { AppRunnerClient, CreateVpcConnectorCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
29
29
  * const client = new AppRunnerClient(config);
30
- * const input = {
30
+ * const input = { // CreateVpcConnectorRequest
31
31
  * VpcConnectorName: "STRING_VALUE", // required
32
- * Subnets: [ // required
32
+ * Subnets: [ // StringList // required
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * SecurityGroups: [
36
36
  * "STRING_VALUE",
37
37
  * ],
38
- * Tags: [
39
- * {
38
+ * Tags: [ // TagList
39
+ * { // Tag
40
40
  * Key: "STRING_VALUE",
41
41
  * Value: "STRING_VALUE",
42
42
  * },
@@ -26,15 +26,15 @@ export interface CreateVpcIngressConnectionCommandOutput extends CreateVpcIngres
26
26
  * import { AppRunnerClient, CreateVpcIngressConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, CreateVpcIngressConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
- * const input = {
29
+ * const input = { // CreateVpcIngressConnectionRequest
30
30
  * ServiceArn: "STRING_VALUE", // required
31
31
  * VpcIngressConnectionName: "STRING_VALUE", // required
32
- * IngressVpcConfiguration: {
32
+ * IngressVpcConfiguration: { // IngressVpcConfiguration
33
33
  * VpcId: "STRING_VALUE",
34
34
  * VpcEndpointId: "STRING_VALUE",
35
35
  * },
36
- * Tags: [
37
- * {
36
+ * Tags: [ // TagList
37
+ * { // Tag
38
38
  * Key: "STRING_VALUE",
39
39
  * Value: "STRING_VALUE",
40
40
  * },
@@ -27,7 +27,7 @@ export interface DeleteAutoScalingConfigurationCommandOutput extends DeleteAutoS
27
27
  * import { AppRunnerClient, DeleteAutoScalingConfigurationCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
28
28
  * // const { AppRunnerClient, DeleteAutoScalingConfigurationCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
29
29
  * const client = new AppRunnerClient(config);
30
- * const input = {
30
+ * const input = { // DeleteAutoScalingConfigurationRequest
31
31
  * AutoScalingConfigurationArn: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeleteAutoScalingConfigurationCommand(input);
@@ -27,7 +27,7 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse,
27
27
  * import { AppRunnerClient, DeleteConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
28
28
  * // const { AppRunnerClient, DeleteConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
29
29
  * const client = new AppRunnerClient(config);
30
- * const input = {
30
+ * const input = { // DeleteConnectionRequest
31
31
  * ConnectionArn: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeleteConnectionCommand(input);
@@ -27,7 +27,7 @@ export interface DeleteObservabilityConfigurationCommandOutput extends DeleteObs
27
27
  * import { AppRunnerClient, DeleteObservabilityConfigurationCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
28
28
  * // const { AppRunnerClient, DeleteObservabilityConfigurationCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
29
29
  * const client = new AppRunnerClient(config);
30
- * const input = {
30
+ * const input = { // DeleteObservabilityConfigurationRequest
31
31
  * ObservabilityConfigurationArn: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeleteObservabilityConfigurationCommand(input);
@@ -32,7 +32,7 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
32
32
  * import { AppRunnerClient, DeleteServiceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
33
33
  * // const { AppRunnerClient, DeleteServiceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
34
34
  * const client = new AppRunnerClient(config);
35
- * const input = {
35
+ * const input = { // DeleteServiceRequest
36
36
  * ServiceArn: "STRING_VALUE", // required
37
37
  * };
38
38
  * const command = new DeleteServiceCommand(input);
@@ -27,7 +27,7 @@ export interface DeleteVpcConnectorCommandOutput extends DeleteVpcConnectorRespo
27
27
  * import { AppRunnerClient, DeleteVpcConnectorCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
28
28
  * // const { AppRunnerClient, DeleteVpcConnectorCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
29
29
  * const client = new AppRunnerClient(config);
30
- * const input = {
30
+ * const input = { // DeleteVpcConnectorRequest
31
31
  * VpcConnectorArn: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeleteVpcConnectorCommand(input);
@@ -49,7 +49,7 @@ export interface DeleteVpcIngressConnectionCommandOutput extends DeleteVpcIngres
49
49
  * import { AppRunnerClient, DeleteVpcIngressConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
50
50
  * // const { AppRunnerClient, DeleteVpcIngressConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
51
51
  * const client = new AppRunnerClient(config);
52
- * const input = {
52
+ * const input = { // DeleteVpcIngressConnectionRequest
53
53
  * VpcIngressConnectionArn: "STRING_VALUE", // required
54
54
  * };
55
55
  * const command = new DeleteVpcIngressConnectionCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeAutoScalingConfigurationCommandOutput extends DescribeA
26
26
  * import { AppRunnerClient, DescribeAutoScalingConfigurationCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, DescribeAutoScalingConfigurationCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
- * const input = {
29
+ * const input = { // DescribeAutoScalingConfigurationRequest
30
30
  * AutoScalingConfigurationArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeAutoScalingConfigurationCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeCustomDomainsCommandOutput extends DescribeCustomDomain
26
26
  * import { AppRunnerClient, DescribeCustomDomainsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, DescribeCustomDomainsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
- * const input = {
29
+ * const input = { // DescribeCustomDomainsRequest
30
30
  * ServiceArn: "STRING_VALUE", // required
31
31
  * NextToken: "STRING_VALUE",
32
32
  * MaxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface DescribeObservabilityConfigurationCommandOutput extends Describ
26
26
  * import { AppRunnerClient, DescribeObservabilityConfigurationCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, DescribeObservabilityConfigurationCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
- * const input = {
29
+ * const input = { // DescribeObservabilityConfigurationRequest
30
30
  * ObservabilityConfigurationArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeObservabilityConfigurationCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeServiceCommandOutput extends DescribeServiceResponse, _
26
26
  * import { AppRunnerClient, DescribeServiceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, DescribeServiceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
- * const input = {
29
+ * const input = { // DescribeServiceRequest
30
30
  * ServiceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeServiceCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeVpcConnectorCommandOutput extends DescribeVpcConnectorR
26
26
  * import { AppRunnerClient, DescribeVpcConnectorCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, DescribeVpcConnectorCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
- * const input = {
29
+ * const input = { // DescribeVpcConnectorRequest
30
30
  * VpcConnectorArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeVpcConnectorCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeVpcIngressConnectionCommandOutput extends DescribeVpcIn
26
26
  * import { AppRunnerClient, DescribeVpcIngressConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, DescribeVpcIngressConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
- * const input = {
29
+ * const input = { // DescribeVpcIngressConnectionRequest
30
30
  * VpcIngressConnectionArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeVpcIngressConnectionCommand(input);
@@ -29,7 +29,7 @@ export interface DisassociateCustomDomainCommandOutput extends DisassociateCusto
29
29
  * import { AppRunnerClient, DisassociateCustomDomainCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
30
30
  * // const { AppRunnerClient, DisassociateCustomDomainCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
31
31
  * const client = new AppRunnerClient(config);
32
- * const input = {
32
+ * const input = { // DisassociateCustomDomainRequest
33
33
  * ServiceArn: "STRING_VALUE", // required
34
34
  * DomainName: "STRING_VALUE", // required
35
35
  * };
@@ -30,7 +30,7 @@ export interface ListAutoScalingConfigurationsCommandOutput extends ListAutoScal
30
30
  * import { AppRunnerClient, ListAutoScalingConfigurationsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
31
31
  * // const { AppRunnerClient, ListAutoScalingConfigurationsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
32
32
  * const client = new AppRunnerClient(config);
33
- * const input = {
33
+ * const input = { // ListAutoScalingConfigurationsRequest
34
34
  * AutoScalingConfigurationName: "STRING_VALUE",
35
35
  * LatestOnly: true || false,
36
36
  * MaxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface ListConnectionsCommandOutput extends ListConnectionsResponse, _
26
26
  * import { AppRunnerClient, ListConnectionsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, ListConnectionsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
- * const input = {
29
+ * const input = { // ListConnectionsRequest
30
30
  * ConnectionName: "STRING_VALUE",
31
31
  * MaxResults: Number("int"),
32
32
  * NextToken: "STRING_VALUE",
@@ -30,7 +30,7 @@ export interface ListObservabilityConfigurationsCommandOutput extends ListObserv
30
30
  * import { AppRunnerClient, ListObservabilityConfigurationsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
31
31
  * // const { AppRunnerClient, ListObservabilityConfigurationsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
32
32
  * const client = new AppRunnerClient(config);
33
- * const input = {
33
+ * const input = { // ListObservabilityConfigurationsRequest
34
34
  * ObservabilityConfigurationName: "STRING_VALUE",
35
35
  * LatestOnly: true || false,
36
36
  * MaxResults: Number("int"),
@@ -28,7 +28,7 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M
28
28
  * import { AppRunnerClient, ListOperationsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
29
29
  * // const { AppRunnerClient, ListOperationsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
30
30
  * const client = new AppRunnerClient(config);
31
- * const input = {
31
+ * const input = { // ListOperationsRequest
32
32
  * ServiceArn: "STRING_VALUE", // required
33
33
  * NextToken: "STRING_VALUE",
34
34
  * MaxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
26
26
  * import { AppRunnerClient, ListServicesCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, ListServicesCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
- * const input = {
29
+ * const input = { // ListServicesRequest
30
30
  * NextToken: "STRING_VALUE",
31
31
  * MaxResults: Number("int"),
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { AppRunnerClient, ListTagsForResourceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, ListTagsForResourceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * ResourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -26,7 +26,7 @@ export interface ListVpcConnectorsCommandOutput extends ListVpcConnectorsRespons
26
26
  * import { AppRunnerClient, ListVpcConnectorsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, ListVpcConnectorsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
- * const input = {
29
+ * const input = { // ListVpcConnectorsRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * };
@@ -26,8 +26,8 @@ export interface ListVpcIngressConnectionsCommandOutput extends ListVpcIngressCo
26
26
  * import { AppRunnerClient, ListVpcIngressConnectionsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, ListVpcIngressConnectionsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
- * const input = {
30
- * Filter: {
29
+ * const input = { // ListVpcIngressConnectionsRequest
30
+ * Filter: { // ListVpcIngressConnectionsFilter
31
31
  * ServiceArn: "STRING_VALUE",
32
32
  * VpcEndpointId: "STRING_VALUE",
33
33
  * },
@@ -29,7 +29,7 @@ export interface PauseServiceCommandOutput extends PauseServiceResponse, __Metad
29
29
  * import { AppRunnerClient, PauseServiceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
30
30
  * // const { AppRunnerClient, PauseServiceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
31
31
  * const client = new AppRunnerClient(config);
32
- * const input = {
32
+ * const input = { // PauseServiceRequest
33
33
  * ServiceArn: "STRING_VALUE", // required
34
34
  * };
35
35
  * const command = new PauseServiceCommand(input);
@@ -28,7 +28,7 @@ export interface ResumeServiceCommandOutput extends ResumeServiceResponse, __Met
28
28
  * import { AppRunnerClient, ResumeServiceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
29
29
  * // const { AppRunnerClient, ResumeServiceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
30
30
  * const client = new AppRunnerClient(config);
31
- * const input = {
31
+ * const input = { // ResumeServiceRequest
32
32
  * ServiceArn: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new ResumeServiceCommand(input);
@@ -31,7 +31,7 @@ export interface StartDeploymentCommandOutput extends StartDeploymentResponse, _
31
31
  * import { AppRunnerClient, StartDeploymentCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
32
32
  * // const { AppRunnerClient, StartDeploymentCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
33
33
  * const client = new AppRunnerClient(config);
34
- * const input = {
34
+ * const input = { // StartDeploymentRequest
35
35
  * ServiceArn: "STRING_VALUE", // required
36
36
  * };
37
37
  * const command = new StartDeploymentCommand(input);
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { AppRunnerClient, TagResourceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, TagResourceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * ResourceArn: "STRING_VALUE", // required
31
- * Tags: [ // required
32
- * {
31
+ * Tags: [ // TagList // required
32
+ * { // Tag
33
33
  * Key: "STRING_VALUE",
34
34
  * Value: "STRING_VALUE",
35
35
  * },
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { AppRunnerClient, UntagResourceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, UntagResourceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(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
  * };
@@ -31,34 +31,34 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met
31
31
  * import { AppRunnerClient, UpdateServiceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
32
32
  * // const { AppRunnerClient, UpdateServiceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
33
33
  * const client = new AppRunnerClient(config);
34
- * const input = {
34
+ * const input = { // UpdateServiceRequest
35
35
  * ServiceArn: "STRING_VALUE", // required
36
- * SourceConfiguration: {
37
- * CodeRepository: {
36
+ * SourceConfiguration: { // SourceConfiguration
37
+ * CodeRepository: { // CodeRepository
38
38
  * RepositoryUrl: "STRING_VALUE", // required
39
- * SourceCodeVersion: {
39
+ * SourceCodeVersion: { // SourceCodeVersion
40
40
  * Type: "BRANCH", // required
41
41
  * Value: "STRING_VALUE", // required
42
42
  * },
43
- * CodeConfiguration: {
43
+ * CodeConfiguration: { // CodeConfiguration
44
44
  * ConfigurationSource: "REPOSITORY" || "API", // required
45
- * CodeConfigurationValues: {
45
+ * CodeConfigurationValues: { // CodeConfigurationValues
46
46
  * Runtime: "PYTHON_3" || "NODEJS_12" || "NODEJS_14" || "CORRETTO_8" || "CORRETTO_11" || "NODEJS_16" || "GO_1" || "DOTNET_6" || "PHP_81" || "RUBY_31", // required
47
47
  * BuildCommand: "STRING_VALUE",
48
48
  * StartCommand: "STRING_VALUE",
49
49
  * Port: "STRING_VALUE",
50
- * RuntimeEnvironmentVariables: {
50
+ * RuntimeEnvironmentVariables: { // RuntimeEnvironmentVariables
51
51
  * "<keys>": "STRING_VALUE",
52
52
  * },
53
- * RuntimeEnvironmentSecrets: {
53
+ * RuntimeEnvironmentSecrets: { // RuntimeEnvironmentSecrets
54
54
  * "<keys>": "STRING_VALUE",
55
55
  * },
56
56
  * },
57
57
  * },
58
58
  * },
59
- * ImageRepository: {
59
+ * ImageRepository: { // ImageRepository
60
60
  * ImageIdentifier: "STRING_VALUE", // required
61
- * ImageConfiguration: {
61
+ * ImageConfiguration: { // ImageConfiguration
62
62
  * RuntimeEnvironmentVariables: {
63
63
  * "<keys>": "STRING_VALUE",
64
64
  * },
@@ -71,18 +71,18 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met
71
71
  * ImageRepositoryType: "ECR" || "ECR_PUBLIC", // required
72
72
  * },
73
73
  * AutoDeploymentsEnabled: true || false,
74
- * AuthenticationConfiguration: {
74
+ * AuthenticationConfiguration: { // AuthenticationConfiguration
75
75
  * ConnectionArn: "STRING_VALUE",
76
76
  * AccessRoleArn: "STRING_VALUE",
77
77
  * },
78
78
  * },
79
- * InstanceConfiguration: {
79
+ * InstanceConfiguration: { // InstanceConfiguration
80
80
  * Cpu: "STRING_VALUE",
81
81
  * Memory: "STRING_VALUE",
82
82
  * InstanceRoleArn: "STRING_VALUE",
83
83
  * },
84
84
  * AutoScalingConfigurationArn: "STRING_VALUE",
85
- * HealthCheckConfiguration: {
85
+ * HealthCheckConfiguration: { // HealthCheckConfiguration
86
86
  * Protocol: "TCP" || "HTTP",
87
87
  * Path: "STRING_VALUE",
88
88
  * Interval: Number("int"),
@@ -90,16 +90,16 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met
90
90
  * HealthyThreshold: Number("int"),
91
91
  * UnhealthyThreshold: Number("int"),
92
92
  * },
93
- * NetworkConfiguration: {
94
- * EgressConfiguration: {
93
+ * NetworkConfiguration: { // NetworkConfiguration
94
+ * EgressConfiguration: { // EgressConfiguration
95
95
  * EgressType: "DEFAULT" || "VPC",
96
96
  * VpcConnectorArn: "STRING_VALUE",
97
97
  * },
98
- * IngressConfiguration: {
98
+ * IngressConfiguration: { // IngressConfiguration
99
99
  * IsPubliclyAccessible: true || false,
100
100
  * },
101
101
  * },
102
- * ObservabilityConfiguration: {
102
+ * ObservabilityConfiguration: { // ServiceObservabilityConfiguration
103
103
  * ObservabilityEnabled: true || false, // required
104
104
  * ObservabilityConfigurationArn: "STRING_VALUE",
105
105
  * },
@@ -43,9 +43,9 @@ export interface UpdateVpcIngressConnectionCommandOutput extends UpdateVpcIngres
43
43
  * import { AppRunnerClient, UpdateVpcIngressConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
44
44
  * // const { AppRunnerClient, UpdateVpcIngressConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
45
45
  * const client = new AppRunnerClient(config);
46
- * const input = {
46
+ * const input = { // UpdateVpcIngressConnectionRequest
47
47
  * VpcIngressConnectionArn: "STRING_VALUE", // required
48
- * IngressVpcConfiguration: {
48
+ * IngressVpcConfiguration: { // IngressVpcConfiguration
49
49
  * VpcId: "STRING_VALUE",
50
50
  * VpcEndpointId: "STRING_VALUE",
51
51
  * },