Interface CfnFlowEntitlement.EncryptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowEntitlement.EncryptionProperty.Jsii$Proxy
- Enclosing class:
CfnFlowEntitlement
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.mediaconnect.*; EncryptionProperty encryptionProperty = EncryptionProperty.builder() .algorithm("algorithm") .roleArn("roleArn") // the properties below are optional .constantInitializationVector("constantInitializationVector") .deviceId("deviceId") .keyType("keyType") .region("region") .resourceId("resourceId") .secretArn("secretArn") .url("url") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlowEntitlement.EncryptionProperty
static final class
An implementation forCfnFlowEntitlement.EncryptionProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The type of algorithm that is used for static key encryption (such as aes128, aes192, or aes256).default String
A 128-bit, 16-byte hex value represented by a 32-character string, to be used with the key for encrypting content.default String
The value of one of the devices that you configured with your digital rights management (DRM) platform key provider.default String
The type of key that is used for the encryption.default String
The AWS Region that the API Gateway proxy endpoint was created in.default String
An identifier for the content.The Amazon Resource Name (ARN) of the role that you created during setup (when you set up MediaConnect as a trusted entity).default String
The ARN of the secret that you created in AWS Secrets Manager to store the encryption key.default String
getUrl()
The URL from the API Gateway proxy that you set up to talk to your key server.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlgorithm
The type of algorithm that is used for static key encryption (such as aes128, aes192, or aes256).If you are using SPEKE or SRT-password encryption, this property must be left blank.
-
getRoleArn
The Amazon Resource Name (ARN) of the role that you created during setup (when you set up MediaConnect as a trusted entity). -
getConstantInitializationVector
A 128-bit, 16-byte hex value represented by a 32-character string, to be used with the key for encrypting content.This parameter is not valid for static key encryption.
-
getDeviceId
The value of one of the devices that you configured with your digital rights management (DRM) platform key provider.This parameter is required for SPEKE encryption and is not valid for static key encryption.
-
getKeyType
The type of key that is used for the encryption.If you don't specify a
keyType
value, the service uses the default setting (static-key
). Valid key types are:static-key
,speke
, andsrt-password
. -
getRegion
The AWS Region that the API Gateway proxy endpoint was created in.This parameter is required for SPEKE encryption and is not valid for static key encryption.
-
getResourceId
An identifier for the content.The service sends this value to the key server to identify the current endpoint. The resource ID is also known as the content ID. This parameter is required for SPEKE encryption and is not valid for static key encryption.
-
getSecretArn
The ARN of the secret that you created in AWS Secrets Manager to store the encryption key. -
getUrl
The URL from the API Gateway proxy that you set up to talk to your key server.This parameter is required for SPEKE encryption and is not valid for static key encryption.
-
builder
-