Learn R Programming

paws.analytics (version 0.1.12)

glue_batch_get_triggers: Returns a list of resource metadata for a given list of trigger names

Description

Returns a list of resource metadata for a given list of trigger names. After calling the list_triggers operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.

Usage

glue_batch_get_triggers(TriggerNames)

Value

A list with the following syntax:

list(
  Triggers = list(
    list(
      Name = "string",
      WorkflowName = "string",
      Id = "string",
      Type = "SCHEDULED"|"CONDITIONAL"|"ON_DEMAND",
      State = "CREATING"|"CREATED"|"ACTIVATING"|"ACTIVATED"|"DEACTIVATING"|"DEACTIVATED"|"DELETING"|"UPDATING",
      Description = "string",
      Schedule = "string",
      Actions = list(
        list(
          JobName = "string",
          Arguments = list(
            "string"
          ),
          Timeout = 123,
          SecurityConfiguration = "string",
          NotificationProperty = list(
            NotifyDelayAfter = 123
          ),
          CrawlerName = "string"
        )
      ),
      Predicate = list(
        Logical = "AND"|"ANY",
        Conditions = list(
          list(
            LogicalOperator = "EQUALS",
            JobName = "string",
            State = "STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"|"TIMEOUT",
            CrawlerName = "string",
            CrawlState = "RUNNING"|"CANCELLING"|"CANCELLED"|"SUCCEEDED"|"FAILED"
          )
        )
      )
    )
  ),
  TriggersNotFound = list(
    "string"
  )
)

Arguments

TriggerNames

[required] A list of trigger names, which may be the names returned from the list_triggers operation.

Request syntax

svc$batch_get_triggers(
  TriggerNames = list(
    "string"
  )
)