Interface ActivityProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ActivityProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-12T17:54:23.378Z")
@Stability(Stable)
public interface ActivityProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a new Step Functions Activity.
Example:
import software.amazon.awscdk.services.kms.*;
import software.amazon.awscdk.*;
Key kmsKey = new Key(this, "Key");
Activity activity = Activity.Builder.create(this, "ActivityWithCMKEncryptionConfiguration")
.activityName("ActivityWithCMKEncryptionConfiguration")
.encryptionConfiguration(new CustomerManagedEncryptionConfiguration(kmsKey, Duration.seconds(75)))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forActivityPropsstatic final classAn implementation forActivityProps -
Method Summary
Modifier and TypeMethodDescriptionstatic ActivityProps.Builderbuilder()default StringThe name for this activity.default EncryptionConfigurationThe encryptionConfiguration object used for server-side encryption of the activity inputs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActivityName
The name for this activity.Default: - If not supplied, a name is generated
-
getEncryptionConfiguration
The encryptionConfiguration object used for server-side encryption of the activity inputs.Default: - data is transparently encrypted using an AWS owned key
-
builder
- Returns:
- a
ActivityProps.BuilderofActivityProps
-