CloudTrail / Client / restore_event_data_store

restore_event_data_store#

CloudTrail.Client.restore_event_data_store(**kwargs)#

Restores a deleted event data store specified by EventDataStore, which accepts an event data store ARN. You can only restore a deleted event data store within the seven-day wait period after deletion. Restoring an event data store can take several minutes, depending on the size of the event data store.

See also: AWS API Documentation

Request Syntax

response = client.restore_event_data_store(
    EventDataStore='string'
)
Parameters:

EventDataStore (string) –

[REQUIRED]

The ARN (or the ID suffix of the ARN) of the event data store that you want to restore.

Return type:

dict

Returns:

Response Syntax

{
    'EventDataStoreArn': 'string',
    'Name': 'string',
    'Status': 'CREATED'|'ENABLED'|'PENDING_DELETION'|'STARTING_INGESTION'|'STOPPING_INGESTION'|'STOPPED_INGESTION',
    'AdvancedEventSelectors': [
        {
            'Name': 'string',
            'FieldSelectors': [
                {
                    'Field': 'string',
                    'Equals': [
                        'string',
                    ],
                    'StartsWith': [
                        'string',
                    ],
                    'EndsWith': [
                        'string',
                    ],
                    'NotEquals': [
                        'string',
                    ],
                    'NotStartsWith': [
                        'string',
                    ],
                    'NotEndsWith': [
                        'string',
                    ]
                },
            ]
        },
    ],
    'MultiRegionEnabled': True|False,
    'OrganizationEnabled': True|False,
    'RetentionPeriod': 123,
    'TerminationProtectionEnabled': True|False,
    'CreatedTimestamp': datetime(2015, 1, 1),
    'UpdatedTimestamp': datetime(2015, 1, 1),
    'KmsKeyId': 'string',
    'BillingMode': 'EXTENDABLE_RETENTION_PRICING'|'FIXED_RETENTION_PRICING'
}

Response Structure

  • (dict) –

    • EventDataStoreArn (string) –

      The event data store ARN.

    • Name (string) –

      The name of the event data store.

    • Status (string) –

      The status of the event data store.

    • AdvancedEventSelectors (list) –

      The advanced event selectors that were used to select events.

      • (dict) –

        Advanced event selectors let you create fine-grained selectors for CloudTrail management, data, and network activity events. They help you control costs by logging only those events that are important to you. For more information about configuring advanced event selectors, see the Logging data events, Logging network activity events, and Logging management events topics in the CloudTrail User Guide.

        You cannot apply both event selectors and advanced event selectors to a trail.

        For information about configurable advanced event selector fields, see AdvancedEventSelector in the CloudTrailUser Guide.

        • Name (string) –

          An optional, descriptive name for an advanced event selector, such as “Log data events for only two S3 buckets”.

        • FieldSelectors (list) –

          Contains all selector statements in an advanced event selector.

          • (dict) –

            A single selector statement in an advanced event selector.

            • Field (string) –

              A field in a CloudTrail event record on which to filter events to be logged. For event data stores for CloudTrail Insights events, Config configuration items, Audit Manager evidence, or events outside of Amazon Web Services, the field is used only for selecting events as filtering is not supported.

              For more information, see AdvancedFieldSelector in the CloudTrailUser Guide.

            • Equals (list) –

              An operator that includes events that match the exact value of the event record field specified as the value of Field. This is the only valid operator that you can use with the readOnly, eventCategory, and resources.type fields.

              • (string) –

            • StartsWith (list) –

              An operator that includes events that match the first few characters of the event record field specified as the value of Field.

              • (string) –

            • EndsWith (list) –

              An operator that includes events that match the last few characters of the event record field specified as the value of Field.

              • (string) –

            • NotEquals (list) –

              An operator that excludes events that match the exact value of the event record field specified as the value of Field.

              • (string) –

            • NotStartsWith (list) –

              An operator that excludes events that match the first few characters of the event record field specified as the value of Field.

              • (string) –

            • NotEndsWith (list) –

              An operator that excludes events that match the last few characters of the event record field specified as the value of Field.

              • (string) –

    • MultiRegionEnabled (boolean) –

      Indicates whether the event data store is collecting events from all Regions, or only from the Region in which the event data store was created.

    • OrganizationEnabled (boolean) –

      Indicates whether an event data store is collecting logged events for an organization in Organizations.

    • RetentionPeriod (integer) –

      The retention period, in days.

    • TerminationProtectionEnabled (boolean) –

      Indicates that termination protection is enabled and the event data store cannot be automatically deleted.

    • CreatedTimestamp (datetime) –

      The timestamp of an event data store’s creation.

    • UpdatedTimestamp (datetime) –

      The timestamp that shows when an event data store was updated, if applicable. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.

    • KmsKeyId (string) –

      Specifies the KMS key ID that encrypts the events delivered by CloudTrail. The value is a fully specified ARN to a KMS key in the following format.

      arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012

    • BillingMode (string) –

      The billing mode for the event data store.

Exceptions