Show / Hide Table of Contents

Class CfnActivity.EncryptionConfigurationProperty

Settings to configure server-side encryption for an activity.

Inheritance
object
CfnActivity.EncryptionConfigurationProperty
Implements
CfnActivity.IEncryptionConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnActivity.EncryptionConfigurationProperty : CfnActivity.IEncryptionConfigurationProperty
Syntax (vb)
Public Class CfnActivity.EncryptionConfigurationProperty Implements CfnActivity.IEncryptionConfigurationProperty
Remarks

By default, Step Functions provides transparent server-side encryption. With this configuration, you can specify a customer managed AWS KMS key for encryption.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-activity-encryptionconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.StepFunctions;

             var encryptionConfigurationProperty = new EncryptionConfigurationProperty {
                 Type = "type",

                 // the properties below are optional
                 KmsDataKeyReusePeriodSeconds = 123,
                 KmsKeyId = "kmsKeyId"
             };

Synopsis

Constructors

EncryptionConfigurationProperty()

Settings to configure server-side encryption for an activity.

Properties

KmsDataKeyReusePeriodSeconds

Maximum duration that Step Functions will reuse data keys.

KmsKeyId

An alias, alias ARN, key ID, or key ARN of a symmetric encryption AWS KMS key to encrypt data.

Type

Encryption option for an activity.

Constructors

EncryptionConfigurationProperty()

Settings to configure server-side encryption for an activity.

public EncryptionConfigurationProperty()
Remarks

By default, Step Functions provides transparent server-side encryption. With this configuration, you can specify a customer managed AWS KMS key for encryption.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-activity-encryptionconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.StepFunctions;

             var encryptionConfigurationProperty = new EncryptionConfigurationProperty {
                 Type = "type",

                 // the properties below are optional
                 KmsDataKeyReusePeriodSeconds = 123,
                 KmsKeyId = "kmsKeyId"
             };

Properties

KmsDataKeyReusePeriodSeconds

Maximum duration that Step Functions will reuse data keys.

public double? KmsDataKeyReusePeriodSeconds { get; set; }
Property Value

double?

Remarks

When the period expires, Step Functions will call GenerateDataKey . Only applies to customer managed keys.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-activity-encryptionconfiguration.html#cfn-stepfunctions-activity-encryptionconfiguration-kmsdatakeyreuseperiodseconds

KmsKeyId

An alias, alias ARN, key ID, or key ARN of a symmetric encryption AWS KMS key to encrypt data.

public string? KmsKeyId { get; set; }
Property Value

string

Remarks

To specify a AWS KMS key in a different AWS account, you must use the key ARN or alias ARN.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-activity-encryptionconfiguration.html#cfn-stepfunctions-activity-encryptionconfiguration-kmskeyid

Type

Encryption option for an activity.

public string Type { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-activity-encryptionconfiguration.html#cfn-stepfunctions-activity-encryptionconfiguration-type

Implements

CfnActivity.IEncryptionConfigurationProperty
Back to top Generated by DocFX