@aws-sdk/client-emr-serverless 3.418.0 → 3.421.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/README.md CHANGED
@@ -43,16 +43,16 @@ using your favorite package manager:
43
43
 
44
44
  The AWS SDK is modulized by clients and commands.
45
45
  To send a request, you only need to import the `EMRServerlessClient` and
46
- the commands you need, for example `CancelJobRunCommand`:
46
+ the commands you need, for example `ListApplicationsCommand`:
47
47
 
48
48
  ```js
49
49
  // ES5 example
50
- const { EMRServerlessClient, CancelJobRunCommand } = require("@aws-sdk/client-emr-serverless");
50
+ const { EMRServerlessClient, ListApplicationsCommand } = require("@aws-sdk/client-emr-serverless");
51
51
  ```
52
52
 
53
53
  ```ts
54
54
  // ES6+ example
55
- import { EMRServerlessClient, CancelJobRunCommand } from "@aws-sdk/client-emr-serverless";
55
+ import { EMRServerlessClient, ListApplicationsCommand } from "@aws-sdk/client-emr-serverless";
56
56
  ```
57
57
 
58
58
  ### Usage
@@ -71,7 +71,7 @@ const client = new EMRServerlessClient({ region: "REGION" });
71
71
  const params = {
72
72
  /** input parameters */
73
73
  };
74
- const command = new CancelJobRunCommand(params);
74
+ const command = new ListApplicationsCommand(params);
75
75
  ```
76
76
 
77
77
  #### Async/await
@@ -150,7 +150,7 @@ const client = new AWS.EMRServerless({ region: "REGION" });
150
150
 
151
151
  // async/await.
152
152
  try {
153
- const data = await client.cancelJobRun(params);
153
+ const data = await client.listApplications(params);
154
154
  // process data.
155
155
  } catch (error) {
156
156
  // error handling.
@@ -158,7 +158,7 @@ try {
158
158
 
159
159
  // Promises.
160
160
  client
161
- .cancelJobRun(params)
161
+ .listApplications(params)
162
162
  .then((data) => {
163
163
  // process data.
164
164
  })
@@ -167,7 +167,7 @@ client
167
167
  });
168
168
 
169
169
  // callbacks.
170
- client.cancelJobRun(params, (err, data) => {
170
+ client.listApplications(params, (err, data) => {
171
171
  // process err and data.
172
172
  });
173
173
  ```
@@ -6,6 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
8
  const types_1 = require("@smithy/types");
9
+ const models_0_1 = require("../models/models_0");
9
10
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
11
  class CreateApplicationCommand extends smithy_client_1.Command {
11
12
  static getEndpointParameterInstructions() {
@@ -31,7 +32,7 @@ class CreateApplicationCommand extends smithy_client_1.Command {
31
32
  logger,
32
33
  clientName,
33
34
  commandName,
34
- inputFilterSensitiveLog: (_) => _,
35
+ inputFilterSensitiveLog: models_0_1.CreateApplicationRequestFilterSensitiveLog,
35
36
  outputFilterSensitiveLog: (_) => _,
36
37
  [types_1.SMITHY_CONTEXT_KEY]: {
37
38
  service: "AwsToledoWebService",
@@ -6,6 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
8
  const types_1 = require("@smithy/types");
9
+ const models_0_1 = require("../models/models_0");
9
10
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
11
  class GetApplicationCommand extends smithy_client_1.Command {
11
12
  static getEndpointParameterInstructions() {
@@ -32,7 +33,7 @@ class GetApplicationCommand extends smithy_client_1.Command {
32
33
  clientName,
33
34
  commandName,
34
35
  inputFilterSensitiveLog: (_) => _,
35
- outputFilterSensitiveLog: (_) => _,
36
+ outputFilterSensitiveLog: models_0_1.GetApplicationResponseFilterSensitiveLog,
36
37
  [types_1.SMITHY_CONTEXT_KEY]: {
37
38
  service: "AwsToledoWebService",
38
39
  operation: "GetApplication",
@@ -6,6 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
8
  const types_1 = require("@smithy/types");
9
+ const models_0_1 = require("../models/models_0");
9
10
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
11
  class UpdateApplicationCommand extends smithy_client_1.Command {
11
12
  static getEndpointParameterInstructions() {
@@ -31,8 +32,8 @@ class UpdateApplicationCommand extends smithy_client_1.Command {
31
32
  logger,
32
33
  clientName,
33
34
  commandName,
34
- inputFilterSensitiveLog: (_) => _,
35
- outputFilterSensitiveLog: (_) => _,
35
+ inputFilterSensitiveLog: models_0_1.UpdateApplicationRequestFilterSensitiveLog,
36
+ outputFilterSensitiveLog: models_0_1.UpdateApplicationResponseFilterSensitiveLog,
36
37
  [types_1.SMITHY_CONTEXT_KEY]: {
37
38
  service: "AwsToledoWebService",
38
39
  operation: "UpdateApplication",
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetJobRunResponseFilterSensitiveLog = exports.StartJobRunRequestFilterSensitiveLog = exports.JobRunFilterSensitiveLog = exports.ConfigurationOverridesFilterSensitiveLog = exports.ConfigurationFilterSensitiveLog = exports.JobDriverFilterSensitiveLog = exports.SparkSubmitFilterSensitiveLog = exports.HiveFilterSensitiveLog = exports.JobRunState = exports.JobDriver = exports.ServiceQuotaExceededException = exports.ValidationException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.ApplicationState = exports.Architecture = void 0;
3
+ exports.GetJobRunResponseFilterSensitiveLog = exports.UpdateApplicationResponseFilterSensitiveLog = exports.StartJobRunRequestFilterSensitiveLog = exports.JobRunFilterSensitiveLog = exports.GetApplicationResponseFilterSensitiveLog = exports.UpdateApplicationRequestFilterSensitiveLog = exports.CreateApplicationRequestFilterSensitiveLog = exports.ConfigurationOverridesFilterSensitiveLog = exports.ApplicationFilterSensitiveLog = exports.ConfigurationFilterSensitiveLog = exports.JobDriverFilterSensitiveLog = exports.SparkSubmitFilterSensitiveLog = exports.HiveFilterSensitiveLog = exports.JobRunState = exports.JobDriver = exports.ServiceQuotaExceededException = exports.ValidationException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.ApplicationState = exports.Architecture = void 0;
4
4
  const smithy_client_1 = require("@smithy/smithy-client");
5
5
  const EMRServerlessServiceException_1 = require("./EMRServerlessServiceException");
6
6
  exports.Architecture = {
@@ -132,6 +132,13 @@ const ConfigurationFilterSensitiveLog = (obj) => ({
132
132
  }),
133
133
  });
134
134
  exports.ConfigurationFilterSensitiveLog = ConfigurationFilterSensitiveLog;
135
+ const ApplicationFilterSensitiveLog = (obj) => ({
136
+ ...obj,
137
+ ...(obj.runtimeConfiguration && {
138
+ runtimeConfiguration: obj.runtimeConfiguration.map((item) => (0, exports.ConfigurationFilterSensitiveLog)(item)),
139
+ }),
140
+ });
141
+ exports.ApplicationFilterSensitiveLog = ApplicationFilterSensitiveLog;
135
142
  const ConfigurationOverridesFilterSensitiveLog = (obj) => ({
136
143
  ...obj,
137
144
  ...(obj.applicationConfiguration && {
@@ -139,6 +146,25 @@ const ConfigurationOverridesFilterSensitiveLog = (obj) => ({
139
146
  }),
140
147
  });
141
148
  exports.ConfigurationOverridesFilterSensitiveLog = ConfigurationOverridesFilterSensitiveLog;
149
+ const CreateApplicationRequestFilterSensitiveLog = (obj) => ({
150
+ ...obj,
151
+ ...(obj.runtimeConfiguration && {
152
+ runtimeConfiguration: obj.runtimeConfiguration.map((item) => (0, exports.ConfigurationFilterSensitiveLog)(item)),
153
+ }),
154
+ });
155
+ exports.CreateApplicationRequestFilterSensitiveLog = CreateApplicationRequestFilterSensitiveLog;
156
+ const UpdateApplicationRequestFilterSensitiveLog = (obj) => ({
157
+ ...obj,
158
+ ...(obj.runtimeConfiguration && {
159
+ runtimeConfiguration: obj.runtimeConfiguration.map((item) => (0, exports.ConfigurationFilterSensitiveLog)(item)),
160
+ }),
161
+ });
162
+ exports.UpdateApplicationRequestFilterSensitiveLog = UpdateApplicationRequestFilterSensitiveLog;
163
+ const GetApplicationResponseFilterSensitiveLog = (obj) => ({
164
+ ...obj,
165
+ ...(obj.application && { application: (0, exports.ApplicationFilterSensitiveLog)(obj.application) }),
166
+ });
167
+ exports.GetApplicationResponseFilterSensitiveLog = GetApplicationResponseFilterSensitiveLog;
142
168
  const JobRunFilterSensitiveLog = (obj) => ({
143
169
  ...obj,
144
170
  ...(obj.configurationOverrides && {
@@ -155,6 +181,11 @@ const StartJobRunRequestFilterSensitiveLog = (obj) => ({
155
181
  }),
156
182
  });
157
183
  exports.StartJobRunRequestFilterSensitiveLog = StartJobRunRequestFilterSensitiveLog;
184
+ const UpdateApplicationResponseFilterSensitiveLog = (obj) => ({
185
+ ...obj,
186
+ ...(obj.application && { application: (0, exports.ApplicationFilterSensitiveLog)(obj.application) }),
187
+ });
188
+ exports.UpdateApplicationResponseFilterSensitiveLog = UpdateApplicationResponseFilterSensitiveLog;
158
189
  const GetJobRunResponseFilterSensitiveLog = (obj) => ({
159
190
  ...obj,
160
191
  ...(obj.jobRun && { jobRun: (0, exports.JobRunFilterSensitiveLog)(obj.jobRun) }),
@@ -40,9 +40,11 @@ const se_CreateApplicationCommand = async (input, context) => {
40
40
  imageConfiguration: (_) => (0, smithy_client_1._json)(_),
41
41
  initialCapacity: (_) => (0, smithy_client_1._json)(_),
42
42
  maximumCapacity: (_) => (0, smithy_client_1._json)(_),
43
+ monitoringConfiguration: (_) => (0, smithy_client_1._json)(_),
43
44
  name: [],
44
45
  networkConfiguration: (_) => (0, smithy_client_1._json)(_),
45
46
  releaseLabel: [],
47
+ runtimeConfiguration: (_) => se_ConfigurationList(_, context),
46
48
  tags: (_) => (0, smithy_client_1._json)(_),
47
49
  type: [],
48
50
  workerTypeSpecifications: (_) => (0, smithy_client_1._json)(_),
@@ -324,8 +326,10 @@ const se_UpdateApplicationCommand = async (input, context) => {
324
326
  imageConfiguration: (_) => (0, smithy_client_1._json)(_),
325
327
  initialCapacity: (_) => (0, smithy_client_1._json)(_),
326
328
  maximumCapacity: (_) => (0, smithy_client_1._json)(_),
329
+ monitoringConfiguration: (_) => (0, smithy_client_1._json)(_),
327
330
  networkConfiguration: (_) => (0, smithy_client_1._json)(_),
328
331
  releaseLabel: [],
332
+ runtimeConfiguration: (_) => se_ConfigurationList(_, context),
329
333
  workerTypeSpecifications: (_) => (0, smithy_client_1._json)(_),
330
334
  }));
331
335
  return new protocol_http_1.HttpRequest({
@@ -1026,9 +1030,11 @@ const de_Application = (output, context) => {
1026
1030
  imageConfiguration: smithy_client_1._json,
1027
1031
  initialCapacity: smithy_client_1._json,
1028
1032
  maximumCapacity: smithy_client_1._json,
1033
+ monitoringConfiguration: smithy_client_1._json,
1029
1034
  name: smithy_client_1.expectString,
1030
1035
  networkConfiguration: smithy_client_1._json,
1031
1036
  releaseLabel: smithy_client_1.expectString,
1037
+ runtimeConfiguration: (_) => de_ConfigurationList(_, context),
1032
1038
  state: smithy_client_1.expectString,
1033
1039
  stateDetails: smithy_client_1.expectString,
1034
1040
  tags: smithy_client_1._json,
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { CreateApplicationRequestFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_CreateApplicationCommand, se_CreateApplicationCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
7
8
  export class CreateApplicationCommand extends $Command {
@@ -28,7 +29,7 @@ export class CreateApplicationCommand extends $Command {
28
29
  logger,
29
30
  clientName,
30
31
  commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
+ inputFilterSensitiveLog: CreateApplicationRequestFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: (_) => _,
33
34
  [SMITHY_CONTEXT_KEY]: {
34
35
  service: "AwsToledoWebService",
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { GetApplicationResponseFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_GetApplicationCommand, se_GetApplicationCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
7
8
  export class GetApplicationCommand extends $Command {
@@ -29,7 +30,7 @@ export class GetApplicationCommand extends $Command {
29
30
  clientName,
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
+ outputFilterSensitiveLog: GetApplicationResponseFilterSensitiveLog,
33
34
  [SMITHY_CONTEXT_KEY]: {
34
35
  service: "AwsToledoWebService",
35
36
  operation: "GetApplication",
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { UpdateApplicationRequestFilterSensitiveLog, UpdateApplicationResponseFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_UpdateApplicationCommand, se_UpdateApplicationCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
7
8
  export class UpdateApplicationCommand extends $Command {
@@ -28,8 +29,8 @@ export class UpdateApplicationCommand extends $Command {
28
29
  logger,
29
30
  clientName,
30
31
  commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
32
+ inputFilterSensitiveLog: UpdateApplicationRequestFilterSensitiveLog,
33
+ outputFilterSensitiveLog: UpdateApplicationResponseFilterSensitiveLog,
33
34
  [SMITHY_CONTEXT_KEY]: {
34
35
  service: "AwsToledoWebService",
35
36
  operation: "UpdateApplication",
@@ -120,12 +120,34 @@ export const ConfigurationFilterSensitiveLog = (obj) => ({
120
120
  configurations: obj.configurations.map((item) => ConfigurationFilterSensitiveLog(item)),
121
121
  }),
122
122
  });
123
+ export const ApplicationFilterSensitiveLog = (obj) => ({
124
+ ...obj,
125
+ ...(obj.runtimeConfiguration && {
126
+ runtimeConfiguration: obj.runtimeConfiguration.map((item) => ConfigurationFilterSensitiveLog(item)),
127
+ }),
128
+ });
123
129
  export const ConfigurationOverridesFilterSensitiveLog = (obj) => ({
124
130
  ...obj,
125
131
  ...(obj.applicationConfiguration && {
126
132
  applicationConfiguration: obj.applicationConfiguration.map((item) => ConfigurationFilterSensitiveLog(item)),
127
133
  }),
128
134
  });
135
+ export const CreateApplicationRequestFilterSensitiveLog = (obj) => ({
136
+ ...obj,
137
+ ...(obj.runtimeConfiguration && {
138
+ runtimeConfiguration: obj.runtimeConfiguration.map((item) => ConfigurationFilterSensitiveLog(item)),
139
+ }),
140
+ });
141
+ export const UpdateApplicationRequestFilterSensitiveLog = (obj) => ({
142
+ ...obj,
143
+ ...(obj.runtimeConfiguration && {
144
+ runtimeConfiguration: obj.runtimeConfiguration.map((item) => ConfigurationFilterSensitiveLog(item)),
145
+ }),
146
+ });
147
+ export const GetApplicationResponseFilterSensitiveLog = (obj) => ({
148
+ ...obj,
149
+ ...(obj.application && { application: ApplicationFilterSensitiveLog(obj.application) }),
150
+ });
129
151
  export const JobRunFilterSensitiveLog = (obj) => ({
130
152
  ...obj,
131
153
  ...(obj.configurationOverrides && {
@@ -140,6 +162,10 @@ export const StartJobRunRequestFilterSensitiveLog = (obj) => ({
140
162
  configurationOverrides: ConfigurationOverridesFilterSensitiveLog(obj.configurationOverrides),
141
163
  }),
142
164
  });
165
+ export const UpdateApplicationResponseFilterSensitiveLog = (obj) => ({
166
+ ...obj,
167
+ ...(obj.application && { application: ApplicationFilterSensitiveLog(obj.application) }),
168
+ });
143
169
  export const GetJobRunResponseFilterSensitiveLog = (obj) => ({
144
170
  ...obj,
145
171
  ...(obj.jobRun && { jobRun: JobRunFilterSensitiveLog(obj.jobRun) }),
@@ -36,9 +36,11 @@ export const se_CreateApplicationCommand = async (input, context) => {
36
36
  imageConfiguration: (_) => _json(_),
37
37
  initialCapacity: (_) => _json(_),
38
38
  maximumCapacity: (_) => _json(_),
39
+ monitoringConfiguration: (_) => _json(_),
39
40
  name: [],
40
41
  networkConfiguration: (_) => _json(_),
41
42
  releaseLabel: [],
43
+ runtimeConfiguration: (_) => se_ConfigurationList(_, context),
42
44
  tags: (_) => _json(_),
43
45
  type: [],
44
46
  workerTypeSpecifications: (_) => _json(_),
@@ -307,8 +309,10 @@ export const se_UpdateApplicationCommand = async (input, context) => {
307
309
  imageConfiguration: (_) => _json(_),
308
310
  initialCapacity: (_) => _json(_),
309
311
  maximumCapacity: (_) => _json(_),
312
+ monitoringConfiguration: (_) => _json(_),
310
313
  networkConfiguration: (_) => _json(_),
311
314
  releaseLabel: [],
315
+ runtimeConfiguration: (_) => se_ConfigurationList(_, context),
312
316
  workerTypeSpecifications: (_) => _json(_),
313
317
  }));
314
318
  return new __HttpRequest({
@@ -993,9 +997,11 @@ const de_Application = (output, context) => {
993
997
  imageConfiguration: _json,
994
998
  initialCapacity: _json,
995
999
  maximumCapacity: _json,
1000
+ monitoringConfiguration: _json,
996
1001
  name: __expectString,
997
1002
  networkConfiguration: _json,
998
1003
  releaseLabel: __expectString,
1004
+ runtimeConfiguration: (_) => de_ConfigurationList(_, context),
999
1005
  state: __expectString,
1000
1006
  stateDetails: __expectString,
1001
1007
  tags: _json,
@@ -79,6 +79,44 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
79
79
  * },
80
80
  * },
81
81
  * },
82
+ * runtimeConfiguration: [ // ConfigurationList
83
+ * { // Configuration
84
+ * classification: "STRING_VALUE", // required
85
+ * properties: { // SensitivePropertiesMap
86
+ * "<keys>": "STRING_VALUE",
87
+ * },
88
+ * configurations: [
89
+ * {
90
+ * classification: "STRING_VALUE", // required
91
+ * properties: {
92
+ * "<keys>": "STRING_VALUE",
93
+ * },
94
+ * configurations: "<ConfigurationList>",
95
+ * },
96
+ * ],
97
+ * },
98
+ * ],
99
+ * monitoringConfiguration: { // MonitoringConfiguration
100
+ * s3MonitoringConfiguration: { // S3MonitoringConfiguration
101
+ * logUri: "STRING_VALUE",
102
+ * encryptionKeyArn: "STRING_VALUE",
103
+ * },
104
+ * managedPersistenceMonitoringConfiguration: { // ManagedPersistenceMonitoringConfiguration
105
+ * enabled: true || false,
106
+ * encryptionKeyArn: "STRING_VALUE",
107
+ * },
108
+ * cloudWatchLoggingConfiguration: { // CloudWatchLoggingConfiguration
109
+ * enabled: true || false, // required
110
+ * logGroupName: "STRING_VALUE",
111
+ * logStreamNamePrefix: "STRING_VALUE",
112
+ * encryptionKeyArn: "STRING_VALUE",
113
+ * logTypes: { // LogTypeMap
114
+ * "<keys>": [ // LogTypeList
115
+ * "STRING_VALUE",
116
+ * ],
117
+ * },
118
+ * },
119
+ * },
82
120
  * };
83
121
  * const command = new CreateApplicationCommand(input);
84
122
  * const response = await client.send(command);
@@ -92,6 +92,44 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
92
92
  * // },
93
93
  * // },
94
94
  * // },
95
+ * // runtimeConfiguration: [ // ConfigurationList
96
+ * // { // Configuration
97
+ * // classification: "STRING_VALUE", // required
98
+ * // properties: { // SensitivePropertiesMap
99
+ * // "<keys>": "STRING_VALUE",
100
+ * // },
101
+ * // configurations: [
102
+ * // {
103
+ * // classification: "STRING_VALUE", // required
104
+ * // properties: {
105
+ * // "<keys>": "STRING_VALUE",
106
+ * // },
107
+ * // configurations: "<ConfigurationList>",
108
+ * // },
109
+ * // ],
110
+ * // },
111
+ * // ],
112
+ * // monitoringConfiguration: { // MonitoringConfiguration
113
+ * // s3MonitoringConfiguration: { // S3MonitoringConfiguration
114
+ * // logUri: "STRING_VALUE",
115
+ * // encryptionKeyArn: "STRING_VALUE",
116
+ * // },
117
+ * // managedPersistenceMonitoringConfiguration: { // ManagedPersistenceMonitoringConfiguration
118
+ * // enabled: true || false,
119
+ * // encryptionKeyArn: "STRING_VALUE",
120
+ * // },
121
+ * // cloudWatchLoggingConfiguration: { // CloudWatchLoggingConfiguration
122
+ * // enabled: true || false, // required
123
+ * // logGroupName: "STRING_VALUE",
124
+ * // logStreamNamePrefix: "STRING_VALUE",
125
+ * // encryptionKeyArn: "STRING_VALUE",
126
+ * // logTypes: { // LogTypeMap
127
+ * // "<keys>": [ // LogTypeList
128
+ * // "STRING_VALUE",
129
+ * // ],
130
+ * // },
131
+ * // },
132
+ * // },
95
133
  * // },
96
134
  * // };
97
135
  *
@@ -76,6 +76,44 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
76
76
  * },
77
77
  * },
78
78
  * releaseLabel: "STRING_VALUE",
79
+ * runtimeConfiguration: [ // ConfigurationList
80
+ * { // Configuration
81
+ * classification: "STRING_VALUE", // required
82
+ * properties: { // SensitivePropertiesMap
83
+ * "<keys>": "STRING_VALUE",
84
+ * },
85
+ * configurations: [
86
+ * {
87
+ * classification: "STRING_VALUE", // required
88
+ * properties: {
89
+ * "<keys>": "STRING_VALUE",
90
+ * },
91
+ * configurations: "<ConfigurationList>",
92
+ * },
93
+ * ],
94
+ * },
95
+ * ],
96
+ * monitoringConfiguration: { // MonitoringConfiguration
97
+ * s3MonitoringConfiguration: { // S3MonitoringConfiguration
98
+ * logUri: "STRING_VALUE",
99
+ * encryptionKeyArn: "STRING_VALUE",
100
+ * },
101
+ * managedPersistenceMonitoringConfiguration: { // ManagedPersistenceMonitoringConfiguration
102
+ * enabled: true || false,
103
+ * encryptionKeyArn: "STRING_VALUE",
104
+ * },
105
+ * cloudWatchLoggingConfiguration: { // CloudWatchLoggingConfiguration
106
+ * enabled: true || false, // required
107
+ * logGroupName: "STRING_VALUE",
108
+ * logStreamNamePrefix: "STRING_VALUE",
109
+ * encryptionKeyArn: "STRING_VALUE",
110
+ * logTypes: { // LogTypeMap
111
+ * "<keys>": [ // LogTypeList
112
+ * "STRING_VALUE",
113
+ * ],
114
+ * },
115
+ * },
116
+ * },
79
117
  * };
80
118
  * const command = new UpdateApplicationCommand(input);
81
119
  * const response = await client.send(command);
@@ -136,6 +174,44 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
136
174
  * // },
137
175
  * // },
138
176
  * // },
177
+ * // runtimeConfiguration: [ // ConfigurationList
178
+ * // { // Configuration
179
+ * // classification: "STRING_VALUE", // required
180
+ * // properties: { // SensitivePropertiesMap
181
+ * // "<keys>": "STRING_VALUE",
182
+ * // },
183
+ * // configurations: [
184
+ * // {
185
+ * // classification: "STRING_VALUE", // required
186
+ * // properties: {
187
+ * // "<keys>": "STRING_VALUE",
188
+ * // },
189
+ * // configurations: "<ConfigurationList>",
190
+ * // },
191
+ * // ],
192
+ * // },
193
+ * // ],
194
+ * // monitoringConfiguration: { // MonitoringConfiguration
195
+ * // s3MonitoringConfiguration: { // S3MonitoringConfiguration
196
+ * // logUri: "STRING_VALUE",
197
+ * // encryptionKeyArn: "STRING_VALUE",
198
+ * // },
199
+ * // managedPersistenceMonitoringConfiguration: { // ManagedPersistenceMonitoringConfiguration
200
+ * // enabled: true || false,
201
+ * // encryptionKeyArn: "STRING_VALUE",
202
+ * // },
203
+ * // cloudWatchLoggingConfiguration: { // CloudWatchLoggingConfiguration
204
+ * // enabled: true || false, // required
205
+ * // logGroupName: "STRING_VALUE",
206
+ * // logStreamNamePrefix: "STRING_VALUE",
207
+ * // encryptionKeyArn: "STRING_VALUE",
208
+ * // logTypes: { // LogTypeMap
209
+ * // "<keys>": [ // LogTypeList
210
+ * // "STRING_VALUE",
211
+ * // ],
212
+ * // },
213
+ * // },
214
+ * // },
139
215
  * // },
140
216
  * // };
141
217
  *