Skip to content

KeyProps

Properties for defining a Key.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-kms-key

Initializer

import { KeyProps } from '@alicloud/ros-cdk-kms'
const keyProps: KeyProps = { ... }

Properties

Name Type Description
deletionProtection boolean | @alicloud/ros-cdk-core.IResolvable Property deletionProtection: Specifies whether to enable the release protection feature for the key.
description string | @alicloud/ros-cdk-core.IResolvable Property description: The description of the CMK.
dkmsInstanceId string | @alicloud/ros-cdk-core.IResolvable Property dkmsInstanceId: The ID of the KMS instance.
enable boolean | @alicloud/ros-cdk-core.IResolvable Property enable: Specifies whether the key is enabled.
enableAutomaticRotation boolean | @alicloud/ros-cdk-core.IResolvable Property enableAutomaticRotation: Whether to enable automatic key rotation.
keySpec string | @alicloud/ros-cdk-core.IResolvable Property keySpec: Key type.
keyUsage string | @alicloud/ros-cdk-core.IResolvable Property keyUsage: The usage of the CMK.
pendingWindowInDays number | @alicloud/ros-cdk-core.IResolvable Property pendingWindowInDays: The waiting period, specified in number of days.
policy @alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any} Property policy: The policy of key.
protectionLevel string | @alicloud/ros-cdk-core.IResolvable Property protectionLevel: You do not need to specify this parameter.
rotationInterval string | @alicloud/ros-cdk-core.IResolvable Property rotationInterval: The automatic rotation period.
tags TagsProperty[] Property tags: Tags to attach to key.

deletionProtectionOptional

public readonly deletionProtection: boolean | IResolvable;
  • Type: boolean | @alicloud/ros-cdk-core.IResolvable

Property deletionProtection: Specifies whether to enable the release protection feature for the key.

Default is false.


descriptionOptional

public readonly description: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property description: The description of the CMK.

Length constraints: Minimum length of 0 characters. Maximum length of 8192 characters.


dkmsInstanceIdOptional

public readonly dkmsInstanceId: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property dkmsInstanceId: The ID of the KMS instance.

This parameter is required when you create a key for a KMS instance. This parameter is not required when you create a default key (master key).


enableOptional

public readonly enable: boolean | IResolvable;
  • Type: boolean | @alicloud/ros-cdk-core.IResolvable

Property enable: Specifies whether the key is enabled.

Defaults to true.


enableAutomaticRotationOptional

public readonly enableAutomaticRotation: boolean | IResolvable;
  • Type: boolean | @alicloud/ros-cdk-core.IResolvable

Property enableAutomaticRotation: Whether to enable automatic key rotation.

Valid value: true\/false (default)


keySpecOptional

public readonly keySpec: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property keySpec: Key type.

Valid value: Aliyun_AES_256\/Aliyun_SM4\/RSA_2048\/EC_P256\/EC_P256K\/EC_SM2


keyUsageOptional

public readonly keyUsage: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property keyUsage: The usage of the CMK.

Valid values: ENCRYPT\/DECRYPT: encrypts or decrypts data. SIGN\/VERIFY: generates or verifies a digital signature. If the CMK supports signature verification, the default value is SIGN\/VERIFY. If the CMK does not support signature verification, the default value is ENCRYPT\/DECRYPT.


pendingWindowInDaysOptional

public readonly pendingWindowInDays: number | IResolvable;
  • Type: number | @alicloud/ros-cdk-core.IResolvable

Property pendingWindowInDays: The waiting period, specified in number of days.

During this period, you can cancel the CMK in PendingDeletion status. After the waiting period expires, you cannot cancel the deletion. The value must be between 7 and 366. Default value is 30.


policyOptional

public readonly policy: IResolvable | {[ key: string ]: any};
  • Type: @alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any}

Property policy: The policy of key.


protectionLevelOptional

public readonly protectionLevel: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property protectionLevel: You do not need to specify this parameter.

KMS automatically sets an appropriate protection level for your key. The protection level of the key. Valid values: - SOFTWARE - HSM

  • If you specify DKMSInstanceId, this parameter is ignored. If the instance is a software key management instance, the protection level is SOFTWARE. If the instance is a hardware key management instance, the protection level is HSM.
  • If you do not specify DKMSInstanceId, leave this parameter empty. KMS sets the protection level. If a managed HSM is available in the region, KMS sets this parameter to HSM. Otherwise, KMS sets this parameter to SOFTWARE. For more information, see Managed HSM overview.

rotationIntervalOptional

public readonly rotationInterval: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property rotationInterval: The automatic rotation period.

The format is `integer[unit]`. `integer` indicates the length of the period. `unit` indicates the unit of time. Valid units: d (day), h (hour), m (minute), and s (second). For example, both 7d and 604800s represent a period of 7 days. - If the key is a default key, the value is 365d. - If the key is a software-protected key, the value can be from 7d to 365d. - If the key is a hardware-protected key, automatic rotation is not supported.

This parameter is required if you set EnableAutomaticRotation to true.


tagsOptional

public readonly tags: TagsProperty[];

Property tags: Tags to attach to key.

Max support 20 tags to add during create key. Each tag with two properties Key and Value, and Key is required.