RecycleBin / Client / unlock_rule

unlock_rule#

RecycleBin.Client.unlock_rule(**kwargs)#

Unlocks a retention rule. After a retention rule is unlocked, it can be modified or deleted only after the unlock delay period expires.

See also: AWS API Documentation

Request Syntax

response = client.unlock_rule(
    Identifier='string'
)
Parameters:

Identifier (string) –

[REQUIRED]

The unique ID of the retention rule.

Return type:

dict

Returns:

Response Syntax

{
    'Identifier': 'string',
    'Description': 'string',
    'ResourceType': 'EBS_SNAPSHOT'|'EC2_IMAGE',
    'RetentionPeriod': {
        'RetentionPeriodValue': 123,
        'RetentionPeriodUnit': 'DAYS'
    },
    'ResourceTags': [
        {
            'ResourceTagKey': 'string',
            'ResourceTagValue': 'string'
        },
    ],
    'Status': 'pending'|'available',
    'LockConfiguration': {
        'UnlockDelay': {
            'UnlockDelayValue': 123,
            'UnlockDelayUnit': 'DAYS'
        }
    },
    'LockState': 'locked'|'pending_unlock'|'unlocked',
    'LockEndTime': datetime(2015, 1, 1),
    'RuleArn': 'string'
}

Response Structure

  • (dict) –

    • Identifier (string) –

      The unique ID of the retention rule.

    • Description (string) –

      The retention rule description.

    • ResourceType (string) –

      The resource type retained by the retention rule.

    • RetentionPeriod (dict) –

      Information about the retention period for which the retention rule is to retain resources.

      • RetentionPeriodValue (integer) –

        The period value for which the retention rule is to retain resources. The period is measured using the unit specified for RetentionPeriodUnit.

      • RetentionPeriodUnit (string) –

        The unit of time in which the retention period is measured. Currently, only DAYS is supported.

    • ResourceTags (list) –

      Information about the resource tags used to identify resources that are retained by the retention rule.

      • (dict) –

        Information about the resource tags used to identify resources that are retained by the retention rule.

        • ResourceTagKey (string) –

          The tag key.

        • ResourceTagValue (string) –

          The tag value.

    • Status (string) –

      The state of the retention rule. Only retention rules that are in the available state retain resources.

    • LockConfiguration (dict) –

      Information about the retention rule lock configuration.

      • UnlockDelay (dict) –

        Information about the retention rule unlock delay.

        • UnlockDelayValue (integer) –

          The unlock delay period, measured in the unit specified for UnlockDelayUnit.

        • UnlockDelayUnit (string) –

          The unit of time in which to measure the unlock delay. Currently, the unlock delay can be measure only in days.

    • LockState (string) –

      The lock state for the retention rule.

      • locked - The retention rule is locked and can’t be modified or deleted.

      • pending_unlock - The retention rule has been unlocked but it is still within the unlock delay period. The retention rule can be modified or deleted only after the unlock delay period has expired.

      • unlocked - The retention rule is unlocked and it can be modified or deleted by any user with the required permissions.

      • null - The retention rule has never been locked. Once a retention rule has been locked, it can transition between the locked and unlocked states only; it can never transition back to null.

    • LockEndTime (datetime) –

      The date and time at which the unlock delay is set to expire. Only returned for retention rules that have been unlocked and that are still within the unlock delay period.

    • RuleArn (string) –

      The Amazon Resource Name (ARN) of the retention rule.

Exceptions

  • RecycleBin.Client.exceptions.InternalServerException

  • RecycleBin.Client.exceptions.ResourceNotFoundException

  • RecycleBin.Client.exceptions.ValidationException

  • RecycleBin.Client.exceptions.ConflictException