Skip to content

Get Event Data Store

cloudtrail_get_event_data_store R Documentation

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

Description

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

Usage

cloudtrail_get_event_data_store(EventDataStore)

Arguments

EventDataStore

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

Value

A list with the following syntax:

list(
  EventDataStoreArn = "string",
  Name = "string",
  Status = "CREATED"|"ENABLED"|"PENDING_DELETION"|"STARTING_INGESTION"|"STOPPING_INGESTION"|"STOPPED_INGESTION",
  AdvancedEventSelectors = list(
    list(
      Name = "string",
      FieldSelectors = list(
        list(
          Field = "string",
          Equals = list(
            "string"
          ),
          StartsWith = list(
            "string"
          ),
          EndsWith = list(
            "string"
          ),
          NotEquals = list(
            "string"
          ),
          NotStartsWith = list(
            "string"
          ),
          NotEndsWith = list(
            "string"
          )
        )
      )
    )
  ),
  MultiRegionEnabled = TRUE|FALSE,
  OrganizationEnabled = TRUE|FALSE,
  RetentionPeriod = 123,
  TerminationProtectionEnabled = TRUE|FALSE,
  CreatedTimestamp = as.POSIXct(
    "2015-01-01"
  ),
  UpdatedTimestamp = as.POSIXct(
    "2015-01-01"
  ),
  KmsKeyId = "string",
  BillingMode = "EXTENDABLE_RETENTION_PRICING"|"FIXED_RETENTION_PRICING",
  FederationStatus = "ENABLING"|"ENABLED"|"DISABLING"|"DISABLED",
  FederationRoleArn = "string",
  PartitionKeys = list(
    list(
      Name = "string",
      Type = "string"
    )
  )
)

Request syntax

svc$get_event_data_store(
  EventDataStore = "string"
)