Interface CfnActivityMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnActivityMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.777Z")
@Stability(Stable)
public interface CfnActivityMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnActivityPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.stepfunctions.*;
CfnActivityMixinProps cfnActivityMixinProps = CfnActivityMixinProps.builder()
.encryptionConfiguration(EncryptionConfigurationProperty.builder()
.kmsDataKeyReusePeriodSeconds(123)
.kmsKeyId("kmsKeyId")
.type("type")
.build())
.name("name")
.tags(List.of(TagsEntryProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnActivityMixinPropsstatic final classAn implementation forCfnActivityMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionConfiguration
Encryption configuration for the activity.Activity configuration is immutable, and resource names must be unique. To set customer managed keys for encryption, you must create a new Activity . If you attempt to change the configuration in your CFN template for an existing activity, you will receive an
ActivityAlreadyExistsexception.To update your activity to include customer managed keys, set a new activity name within your CloudFormation template.
Returns union: either
IResolvableorCfnActivityPropsMixin.EncryptionConfigurationProperty- See Also:
-
getName
The name of the activity.A name must not contain:
- white space
- brackets
< > { } [ ] - wildcard characters
? * - special characters
" # % \ ^ | ~$ & , ; : /` - control characters (
U+0000-001F,U+007F-009F,U+FFFE-FFFF) - surrogates (
U+D800-DFFF) - invalid characters (
U+10FFFF)
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
- See Also:
-
getTags
The list of tags to add to a resource.Tags may only contain Unicode letters, digits, white space, or these symbols: `_ . : / = + -
- See Also:
-
builder
- Returns:
- a
CfnActivityMixinProps.BuilderofCfnActivityMixinProps
-