Skip to content

Describe Flow Operation

networkfirewall_describe_flow_operation R Documentation

Returns key information about a specific flow operation

Description

Returns key information about a specific flow operation.

Usage

networkfirewall_describe_flow_operation(FirewallArn, AvailabilityZone,
  FlowOperationId)

Arguments

FirewallArn

[required] The Amazon Resource Name (ARN) of the firewall.

AvailabilityZone

The ID of the Availability Zone where the firewall is located. For example, ⁠us-east-2a⁠.

Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation.

FlowOperationId

[required] A unique identifier for the flow operation. This ID is returned in the responses to start and list commands. You provide to describe commands.

Value

A list with the following syntax:

list(
  FirewallArn = "string",
  AvailabilityZone = "string",
  FlowOperationId = "string",
  FlowOperationType = "FLOW_FLUSH"|"FLOW_CAPTURE",
  FlowOperationStatus = "COMPLETED"|"IN_PROGRESS"|"FAILED"|"COMPLETED_WITH_ERRORS",
  StatusMessage = "string",
  FlowRequestTimestamp = as.POSIXct(
    "2015-01-01"
  ),
  FlowOperation = list(
    MinimumFlowAgeInSeconds = 123,
    FlowFilters = list(
      list(
        SourceAddress = list(
          AddressDefinition = "string"
        ),
        DestinationAddress = list(
          AddressDefinition = "string"
        ),
        SourcePort = "string",
        DestinationPort = "string",
        Protocols = list(
          "string"
        )
      )
    )
  )
)

Request syntax

svc$describe_flow_operation(
  FirewallArn = "string",
  AvailabilityZone = "string",
  FlowOperationId = "string"
)