Skip to content

Commit 3fd7791

Browse files
author
AWS
committed
Amazon Chime SDK Media Pipelines Update: Added support for Media Capture Pipeline and Media Concatenation Pipeline for customer managed server side encryption. Now Media Capture Pipeline can use IAM sink role to get access to KMS key and encrypt/decrypt recorded artifacts. KMS key ID can also be supplied with encryption context.
1 parent b2954d9 commit 3fd7791

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Chime SDK Media Pipelines",
4+
"contributor": "",
5+
"description": "Added support for Media Capture Pipeline and Media Concatenation Pipeline for customer managed server side encryption. Now Media Capture Pipeline can use IAM sink role to get access to KMS key and encrypt/decrypt recorded artifacts. KMS key ID can also be supplied with encryption context."
6+
}

services/chimesdkmediapipelines/src/main/resources/codegen-resources/service-2.json

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@
783783
},
784784
"IdentifyMultipleLanguages":{
785785
"shape":"Boolean",
786-
"documentation":"<p>Turns language identification on or off for multiple languages.</p>"
786+
"documentation":"<p>Turns language identification on or off for multiple languages.</p> <note> <p>Calls to this API must include a <code>LanguageCode</code>, <code>IdentifyLanguage</code>, or <code>IdentifyMultipleLanguages</code> parameter. If you include more than one of those parameters, your transcription job fails.</p> </note>"
787787
},
788788
"LanguageOptions":{
789789
"shape":"LanguageOptions",
@@ -1288,6 +1288,14 @@
12881288
"shape":"ChimeSdkMeetingConfiguration",
12891289
"documentation":"<p>The configuration for a specified media pipeline. <code>SourceType</code> must be <code>ChimeSdkMeeting</code>.</p>"
12901290
},
1291+
"SseAwsKeyManagementParams":{
1292+
"shape":"SseAwsKeyManagementParams",
1293+
"documentation":"<p>An object that contains server side encryption parameters to be used by media capture pipeline. The parameters can also be used by media concatenation pipeline taking media capture pipeline as a media source.</p>"
1294+
},
1295+
"SinkIamRoleArn":{
1296+
"shape":"Arn",
1297+
"documentation":"<p>The Amazon Resource Name (ARN) of the sink role to be used with <code>AwsKmsKeyId</code> in <code>SseAwsKeyManagementParams</code>. Can only interact with <code>S3Bucket</code> sink type. The role must belong to the caller’s account and be able to act on behalf of the caller during the API call. All minimum policy permissions requirements for the caller to perform sink-related actions are the same for <code>SinkIamRoleArn</code>.</p> <p>Additionally, the role must have permission to <code>kms:GenerateDataKey</code> using KMS key supplied as <code>AwsKmsKeyId</code> in <code>SseAwsKeyManagementParams</code>. If media concatenation will be required later, the role must also have permission to <code>kms:Decrypt</code> for the same KMS key.</p>"
1298+
},
12911299
"Tags":{
12921300
"shape":"TagList",
12931301
"documentation":"<p>The tag key-value pairs.</p>"
@@ -2416,6 +2424,14 @@
24162424
"ChimeSdkMeetingConfiguration":{
24172425
"shape":"ChimeSdkMeetingConfiguration",
24182426
"documentation":"<p>The configuration for a specified media pipeline. <code>SourceType</code> must be <code>ChimeSdkMeeting</code>.</p>"
2427+
},
2428+
"SseAwsKeyManagementParams":{
2429+
"shape":"SseAwsKeyManagementParams",
2430+
"documentation":"<p>An object that contains server side encryption parameters to be used by media capture pipeline. The parameters can also be used by media concatenation pipeline taking media capture pipeline as a media source.</p>"
2431+
},
2432+
"SinkIamRoleArn":{
2433+
"shape":"Arn",
2434+
"documentation":"<p>The Amazon Resource Name (ARN) of the sink role to be used with <code>AwsKmsKeyId</code> in <code>SseAwsKeyManagementParams</code>.</p>"
24192435
}
24202436
},
24212437
"documentation":"<p>A media pipeline object consisting of an ID, source type, source ARN, a sink type, a sink ARN, and a configuration object.</p>"
@@ -3326,6 +3342,21 @@
33263342
},
33273343
"documentation":"<p>The configuration settings for the SQS sink.</p>"
33283344
},
3345+
"SseAwsKeyManagementParams":{
3346+
"type":"structure",
3347+
"required":["AwsKmsKeyId"],
3348+
"members":{
3349+
"AwsKmsKeyId":{
3350+
"shape":"String",
3351+
"documentation":"<p>The KMS key you want to use to encrypt your media pipeline output. Decryption is required for concatenation pipeline. If using a key located in the current Amazon Web Services account, you can specify your KMS key in one of four ways:</p> <ul> <li> <p>Use the KMS key ID itself. For example, <code>1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p> </li> <li> <p>Use an alias for the KMS key ID. For example, <code>alias/ExampleAlias</code>.</p> </li> <li> <p>Use the Amazon Resource Name (ARN) for the KMS key ID. For example, <code>arn:aws:kms:region:account-ID:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p> </li> <li> <p>Use the ARN for the KMS key alias. For example, <code>arn:aws:kms:region:account-ID:alias/ExampleAlias</code>.</p> </li> </ul> <p>If using a key located in a different Amazon Web Services account than the current Amazon Web Services account, you can specify your KMS key in one of two ways:</p> <ul> <li> <p>Use the ARN for the KMS key ID. For example, <code>arn:aws:kms:region:account-ID:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p> </li> <li> <p>Use the ARN for the KMS key alias. For example, <code>arn:aws:kms:region:account-ID:alias/ExampleAlias</code>.</p> </li> </ul> <p>If you don't specify an encryption key, your output is encrypted with the default Amazon S3 key (SSE-S3).</p> <p>Note that the role specified in the <code>SinkIamRoleArn</code> request parameter must have permission to use the specified KMS key.</p>"
3352+
},
3353+
"AwsKmsEncryptionContext":{
3354+
"shape":"String",
3355+
"documentation":"<p>Base64-encoded string of a UTF-8 encoded JSON, which contains the encryption context as non-secret key-value pair known as encryption context pairs, that provides an added layer of security for your data. For more information, see <a href=\"https://docs.aws.amazon.com/kms/latest/developerguide/encrypt_context.html\">KMS encryption context</a> and <a href=\"https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html\">Asymmetric keys in KMS</a> in the <i>Key Management Service Developer Guide</i>.</p>"
3356+
}
3357+
},
3358+
"documentation":"<p>Contains server side encryption parameters to be used by media capture pipeline. The parameters can also be used by media concatenation pipeline taking media capture pipeline as a media source.</p>"
3359+
},
33293360
"StartSpeakerSearchTaskRequest":{
33303361
"type":"structure",
33313362
"required":[

0 commit comments

Comments
 (0)