Interface SrtDecryptionConfiguration.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<SrtDecryptionConfiguration.Builder,,SrtDecryptionConfiguration> SdkBuilder<SrtDecryptionConfiguration.Builder,,SrtDecryptionConfiguration> SdkPojo
- Enclosing class:
SrtDecryptionConfiguration
@Mutable
@NotThreadSafe
public static interface SrtDecryptionConfiguration.Builder
extends SdkPojo, CopyableBuilder<SrtDecryptionConfiguration.Builder,SrtDecryptionConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionencryptionKey(Consumer<SecretsManagerEncryptionKeyConfiguration.Builder> encryptionKey) Specifies the encryption key configuration used for decrypting SRT streams, including the key source and associated credentials.encryptionKey(SecretsManagerEncryptionKeyConfiguration encryptionKey) Specifies the encryption key configuration used for decrypting SRT streams, including the key source and associated credentials.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
encryptionKey
SrtDecryptionConfiguration.Builder encryptionKey(SecretsManagerEncryptionKeyConfiguration encryptionKey) Specifies the encryption key configuration used for decrypting SRT streams, including the key source and associated credentials.
- Parameters:
encryptionKey- Specifies the encryption key configuration used for decrypting SRT streams, including the key source and associated credentials.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionKey
default SrtDecryptionConfiguration.Builder encryptionKey(Consumer<SecretsManagerEncryptionKeyConfiguration.Builder> encryptionKey) Specifies the encryption key configuration used for decrypting SRT streams, including the key source and associated credentials.
This is a convenience method that creates an instance of theSecretsManagerEncryptionKeyConfiguration.Builderavoiding the need to create one manually viaSecretsManagerEncryptionKeyConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toencryptionKey(SecretsManagerEncryptionKeyConfiguration).- Parameters:
encryptionKey- a consumer that will call methods onSecretsManagerEncryptionKeyConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-