Class EncryptionAlgorithm
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.mediaconnect.alpha.EncryptionAlgorithm
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-31T10:49:55.140Z")
@Stability(Experimental)
public class EncryptionAlgorithm
extends software.amazon.jsii.JsiiObject
(experimental) Encryption Algorithms used in AWS Elemental MediaConnect.
Example:
Stack stack;
Flow flow;
IRole role;
ISecret secret;
FlowEntitlement entitlement = FlowEntitlement.Builder.create(stack, "MyEntitlement")
.flow(flow)
.description("Grant partner access to live feed")
.subscribers(List.of("111122223333"))
.encryption(StaticKeyEncryption.builder()
.role(role)
.secret(secret)
.algorithm(EncryptionAlgorithm.AES256)
.build())
.build();
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final EncryptionAlgorithm(experimental) Option for AES128.static final EncryptionAlgorithm(experimental) Option for AES192.static final EncryptionAlgorithm(experimental) Option for AES256. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedEncryptionAlgorithm(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedEncryptionAlgorithm(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
AES128
(experimental) Option for AES128. -
AES192
(experimental) Option for AES192. -
AES256
(experimental) Option for AES256.
-
-
Constructor Details
-
EncryptionAlgorithm
protected EncryptionAlgorithm(software.amazon.jsii.JsiiObjectRef objRef) -
EncryptionAlgorithm
protected EncryptionAlgorithm(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
-
-
Method Details