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

    Fields
    Modifier and Type
    Field
    Description
    static final EncryptionAlgorithm
    (experimental) Option for AES128.
    static final EncryptionAlgorithm
    (experimental) Option for AES192.
    static final EncryptionAlgorithm
    (experimental) Option for AES256.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    EncryptionAlgorithm(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    EncryptionAlgorithm(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    (experimental) The encryption algorithm string value.
    of(String value)
    (experimental) Use a custom encryption algorithm value.
    (experimental) Returns the string value.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Field Details

    • AES128

      @Stability(Experimental) public static final EncryptionAlgorithm AES128
      (experimental) Option for AES128.
    • AES192

      @Stability(Experimental) public static final EncryptionAlgorithm AES192
      (experimental) Option for AES192.
    • AES256

      @Stability(Experimental) public static final EncryptionAlgorithm 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

    • of

      @Stability(Experimental) @NotNull public static EncryptionAlgorithm of(@NotNull String value)
      (experimental) Use a custom encryption algorithm value.

      Parameters:
      value - The encryption algorithm string value. This parameter is required.
    • toString

      @Stability(Experimental) @NotNull public String toString()
      (experimental) Returns the string value.
      Overrides:
      toString in class Object
    • getValue

      @Stability(Experimental) @NotNull public String getValue()
      (experimental) The encryption algorithm string value.