@aws-sdk/client-chime-sdk-media-pipelines 3.687.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -768,7 +768,8 @@ var CreateMediaCapturePipelineRequestFilterSensitiveLog = /* @__PURE__ */ __name
768
768
  ...obj.ClientRequestToken && { ClientRequestToken: import_smithy_client.SENSITIVE_STRING },
769
769
  ...obj.ChimeSdkMeetingConfiguration && {
770
770
  ChimeSdkMeetingConfiguration: ChimeSdkMeetingConfigurationFilterSensitiveLog(obj.ChimeSdkMeetingConfiguration)
771
- }
771
+ },
772
+ ...obj.SinkIamRoleArn && { SinkIamRoleArn: import_smithy_client.SENSITIVE_STRING }
772
773
  }), "CreateMediaCapturePipelineRequestFilterSensitiveLog");
773
774
  var MediaCapturePipelineFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
774
775
  ...obj,
@@ -776,7 +777,8 @@ var MediaCapturePipelineFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
776
777
  ...obj.SinkArn && { SinkArn: import_smithy_client.SENSITIVE_STRING },
777
778
  ...obj.ChimeSdkMeetingConfiguration && {
778
779
  ChimeSdkMeetingConfiguration: ChimeSdkMeetingConfigurationFilterSensitiveLog(obj.ChimeSdkMeetingConfiguration)
779
- }
780
+ },
781
+ ...obj.SinkIamRoleArn && { SinkIamRoleArn: import_smithy_client.SENSITIVE_STRING }
780
782
  }), "MediaCapturePipelineFilterSensitiveLog");
781
783
  var CreateMediaCapturePipelineResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
782
784
  ...obj,
@@ -1122,9 +1124,11 @@ var se_CreateMediaCapturePipelineCommand = /* @__PURE__ */ __name(async (input,
1122
1124
  ChimeSdkMeetingConfiguration: (_) => (0, import_smithy_client._json)(_),
1123
1125
  ClientRequestToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
1124
1126
  SinkArn: [],
1127
+ SinkIamRoleArn: [],
1125
1128
  SinkType: [],
1126
1129
  SourceArn: [],
1127
1130
  SourceType: [],
1131
+ SseAwsKeyManagementParams: (_) => (0, import_smithy_client._json)(_),
1128
1132
  Tags: (_) => (0, import_smithy_client._json)(_)
1129
1133
  })
1130
1134
  );
@@ -2181,9 +2185,11 @@ var de_MediaCapturePipeline = /* @__PURE__ */ __name((output, context) => {
2181
2185
  MediaPipelineArn: import_smithy_client.expectString,
2182
2186
  MediaPipelineId: import_smithy_client.expectString,
2183
2187
  SinkArn: import_smithy_client.expectString,
2188
+ SinkIamRoleArn: import_smithy_client.expectString,
2184
2189
  SinkType: import_smithy_client.expectString,
2185
2190
  SourceArn: import_smithy_client.expectString,
2186
2191
  SourceType: import_smithy_client.expectString,
2192
+ SseAwsKeyManagementParams: import_smithy_client._json,
2187
2193
  Status: import_smithy_client.expectString,
2188
2194
  UpdatedTimestamp: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_))
2189
2195
  });
@@ -387,6 +387,7 @@ export const CreateMediaCapturePipelineRequestFilterSensitiveLog = (obj) => ({
387
387
  ...(obj.ChimeSdkMeetingConfiguration && {
388
388
  ChimeSdkMeetingConfiguration: ChimeSdkMeetingConfigurationFilterSensitiveLog(obj.ChimeSdkMeetingConfiguration),
389
389
  }),
390
+ ...(obj.SinkIamRoleArn && { SinkIamRoleArn: SENSITIVE_STRING }),
390
391
  });
391
392
  export const MediaCapturePipelineFilterSensitiveLog = (obj) => ({
392
393
  ...obj,
@@ -395,6 +396,7 @@ export const MediaCapturePipelineFilterSensitiveLog = (obj) => ({
395
396
  ...(obj.ChimeSdkMeetingConfiguration && {
396
397
  ChimeSdkMeetingConfiguration: ChimeSdkMeetingConfigurationFilterSensitiveLog(obj.ChimeSdkMeetingConfiguration),
397
398
  }),
399
+ ...(obj.SinkIamRoleArn && { SinkIamRoleArn: SENSITIVE_STRING }),
398
400
  });
399
401
  export const CreateMediaCapturePipelineResponseFilterSensitiveLog = (obj) => ({
400
402
  ...obj,
@@ -15,9 +15,11 @@ export const se_CreateMediaCapturePipelineCommand = async (input, context) => {
15
15
  ChimeSdkMeetingConfiguration: (_) => _json(_),
16
16
  ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
17
17
  SinkArn: [],
18
+ SinkIamRoleArn: [],
18
19
  SinkType: [],
19
20
  SourceArn: [],
20
21
  SourceType: [],
22
+ SseAwsKeyManagementParams: (_) => _json(_),
21
23
  Tags: (_) => _json(_),
22
24
  }));
23
25
  b.m("POST").h(headers).b(body);
@@ -1047,9 +1049,11 @@ const de_MediaCapturePipeline = (output, context) => {
1047
1049
  MediaPipelineArn: __expectString,
1048
1050
  MediaPipelineId: __expectString,
1049
1051
  SinkArn: __expectString,
1052
+ SinkIamRoleArn: __expectString,
1050
1053
  SinkType: __expectString,
1051
1054
  SourceArn: __expectString,
1052
1055
  SourceType: __expectString,
1056
+ SseAwsKeyManagementParams: _json,
1053
1057
  Status: __expectString,
1054
1058
  UpdatedTimestamp: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
1055
1059
  });
@@ -97,6 +97,11 @@ declare const CreateMediaCapturePipelineCommand_base: {
97
97
  * },
98
98
  * },
99
99
  * },
100
+ * SseAwsKeyManagementParams: { // SseAwsKeyManagementParams
101
+ * AwsKmsKeyId: "STRING_VALUE", // required
102
+ * AwsKmsEncryptionContext: "STRING_VALUE",
103
+ * },
104
+ * SinkIamRoleArn: "STRING_VALUE",
100
105
  * Tags: [ // TagList
101
106
  * { // Tag
102
107
  * Key: "STRING_VALUE", // required
@@ -174,6 +179,11 @@ declare const CreateMediaCapturePipelineCommand_base: {
174
179
  * // },
175
180
  * // },
176
181
  * // },
182
+ * // SseAwsKeyManagementParams: { // SseAwsKeyManagementParams
183
+ * // AwsKmsKeyId: "STRING_VALUE", // required
184
+ * // AwsKmsEncryptionContext: "STRING_VALUE",
185
+ * // },
186
+ * // SinkIamRoleArn: "STRING_VALUE",
177
187
  * // },
178
188
  * // };
179
189
  *
@@ -107,6 +107,11 @@ declare const GetMediaCapturePipelineCommand_base: {
107
107
  * // },
108
108
  * // },
109
109
  * // },
110
+ * // SseAwsKeyManagementParams: { // SseAwsKeyManagementParams
111
+ * // AwsKmsKeyId: "STRING_VALUE", // required
112
+ * // AwsKmsEncryptionContext: "STRING_VALUE",
113
+ * // },
114
+ * // SinkIamRoleArn: "STRING_VALUE",
110
115
  * // },
111
116
  * // };
112
117
  *
@@ -108,6 +108,11 @@ declare const GetMediaPipelineCommand_base: {
108
108
  * // },
109
109
  * // },
110
110
  * // },
111
+ * // SseAwsKeyManagementParams: { // SseAwsKeyManagementParams
112
+ * // AwsKmsKeyId: "STRING_VALUE", // required
113
+ * // AwsKmsEncryptionContext: "STRING_VALUE",
114
+ * // },
115
+ * // SinkIamRoleArn: "STRING_VALUE",
111
116
  * // },
112
117
  * // MediaLiveConnectorPipeline: { // MediaLiveConnectorPipeline
113
118
  * // Sources: [ // LiveConnectorSourceList