Interface ActivityProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ActivityProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:17.501Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forActivityProps
static final class
An implementation forActivityProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic ActivityProps.Builder
builder()
default String
The name for this activity.default EncryptionConfiguration
The 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.Builder
ofActivityProps
-