CloudTrail / Client / get_event_data_store

get_event_data_store#

CloudTrail.Client.get_event_data_store(**kwargs)#

Returns information about an event data store specified as either an ARN or the ID portion of the ARN.

See also: AWS API Documentation

Request Syntax

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

EventDataStore (string) –

[REQUIRED]

The ARN (or ID suffix of the ARN) of the event data store about which you want information.

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',
    'FederationStatus': 'ENABLING'|'ENABLED'|'DISABLING'|'DISABLED',
    'FederationRoleArn': 'string',
    'PartitionKeys': [
        {
            'Name': 'string',
            'Type': 'string'
        },
    ]
}

Response Structure

  • (dict) –

    • EventDataStoreArn (string) –

      The event data store Amazon Resource Number (ARN).

    • Name (string) –

      The name of the event data store.

    • Status (string) –

      The status of an event data store.

    • AdvancedEventSelectors (list) –

      The advanced event selectors used to select events for the data store.

      • (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 includes events from all Regions, or only from the Region in which it was created.

    • OrganizationEnabled (boolean) –

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

    • RetentionPeriod (integer) –

      The retention period of the event data store, in days.

    • TerminationProtectionEnabled (boolean) –

      Indicates that termination protection is enabled.

    • CreatedTimestamp (datetime) –

      The timestamp of the event data store’s creation.

    • UpdatedTimestamp (datetime) –

      Shows the time that 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.

    • FederationStatus (string) –

      Indicates the Lake query federation status. The status is ENABLED if Lake query federation is enabled, or DISABLED if Lake query federation is disabled. You cannot delete an event data store if the FederationStatus is ENABLED.

    • FederationRoleArn (string) –

      If Lake query federation is enabled, provides the ARN of the federation role used to access the resources for the federated event data store.

    • PartitionKeys (list) –

      The partition keys for the event data store. To improve query performance and efficiency, CloudTrail Lake organizes event data into partitions based on values derived from partition keys.

      • (dict) –

        Contains information about a partition key for an event data store.

        • Name (string) –

          The name of the partition key.

        • Type (string) –

          The data type of the partition key. For example, bigint or string.

Exceptions

  • CloudTrail.Client.exceptions.EventDataStoreARNInvalidException

  • CloudTrail.Client.exceptions.EventDataStoreNotFoundException

  • CloudTrail.Client.exceptions.InvalidParameterException

  • CloudTrail.Client.exceptions.OperationNotPermittedException

  • CloudTrail.Client.exceptions.UnsupportedOperationException

  • CloudTrail.Client.exceptions.NoManagementAccountSLRExistsException