Show / Hide Table of Contents

Class AwsOwnedEncryptionConfiguration

Define a new AwsOwnedEncryptionConfiguration.

Inheritance
object
EncryptionConfiguration
AwsOwnedEncryptionConfiguration
Inherited Members
EncryptionConfiguration.Type
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AwsOwnedEncryptionConfiguration : EncryptionConfiguration
Syntax (vb)
Public Class AwsOwnedEncryptionConfiguration Inherits EncryptionConfiguration
Remarks

ExampleMetadata: infused

Examples
var stateMachine = new StateMachine(this, "StateMachine", new StateMachineProps {
                StateMachineName = "StateMachine",
                DefinitionBody = DefinitionBody.FromChainable(Chain.Start(new Pass(this, "Pass"))),
                StateMachineType = StateMachineType.STANDARD,
                EncryptionConfiguration = new AwsOwnedEncryptionConfiguration()
            });

Synopsis

Constructors

AwsOwnedEncryptionConfiguration()

Define a new AwsOwnedEncryptionConfiguration.

Constructors

AwsOwnedEncryptionConfiguration()

Define a new AwsOwnedEncryptionConfiguration.

public AwsOwnedEncryptionConfiguration()
Remarks

ExampleMetadata: infused

Examples
var stateMachine = new StateMachine(this, "StateMachine", new StateMachineProps {
                StateMachineName = "StateMachine",
                DefinitionBody = DefinitionBody.FromChainable(Chain.Start(new Pass(this, "Pass"))),
                StateMachineType = StateMachineType.STANDARD,
                EncryptionConfiguration = new AwsOwnedEncryptionConfiguration()
            });
Back to top Generated by DocFX