AwsOwnedEncryptionConfiguration

class aws_cdk.aws_stepfunctions.AwsOwnedEncryptionConfiguration

Bases: EncryptionConfiguration

Define a new AwsOwnedEncryptionConfiguration.

ExampleMetadata:

infused

Example:

state_machine = sfn.StateMachine(self, "StateMachine",
    state_machine_name="StateMachine",
    definition_body=sfn.DefinitionBody.from_chainable(sfn.Chain.start(sfn.Pass(self, "Pass"))),
    state_machine_type=sfn.StateMachineType.STANDARD,
    encryption_configuration=sfn.AwsOwnedEncryptionConfiguration()
)
Parameters:

type

Attributes

type

Encryption option for the state machine or activity.

Can be either CUSTOMER_MANAGED_KMS_KEY or AWS_OWNED_KEY.