Interface CfnRouterOutput.IFlowTransitEncryptionKeyConfigurationProperty
Namespace: Amazon.CDK.AWS.MediaConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRouterOutput.IFlowTransitEncryptionKeyConfigurationProperty
Syntax (vb)
Public Interface CfnRouterOutput.IFlowTransitEncryptionKeyConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaConnect;
var automatic;
var flowTransitEncryptionKeyConfigurationProperty = new FlowTransitEncryptionKeyConfigurationProperty {
Automatic = automatic,
SecretsManager = new SecretsManagerEncryptionKeyConfigurationProperty {
RoleArn = "roleArn",
SecretArn = "secretArn"
}
};
Synopsis
Properties
| Automatic | Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation. |
| SecretsManager | The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN. |
Properties
Automatic
Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
object? Automatic { get; }
Property Value
Remarks
SecretsManager
The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
object? SecretsManager { get; }
Property Value
Remarks
Type union: either IResolvable or CfnRouterOutput.ISecretsManagerEncryptionKeyConfigurationProperty