Class: Aws::EC2::Types::DescribeFlowLogsRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass DescribeFlowLogsRequest data as a hash:

{
  filter: [
    {
      name: "String",
      values: ["String"],
    },
  ],
  flow_log_ids: ["String"],
  max_results: 1,
  next_token: "String",
}

Contains the parameters for DescribeFlowLogs.

Instance Attribute Summary collapse

Instance Attribute Details

#filterArray<Types::Filter>

One or more filters.

  • ‘deliver-log-status` - The status of the logs delivery (`SUCCESS` | `FAILED`).

  • ‘flow-log-id` - The ID of the flow log.

  • ‘log-group-name` - The name of the log group.

  • ‘resource-id` - The ID of the VPC, subnet, or network interface.

  • ‘traffic-type` - The type of traffic (`ACCEPT` | `REJECT` | `ALL`)

Returns:



6077
6078
6079
6080
6081
6082
6083
# File 'lib/aws-sdk-ec2/types.rb', line 6077

class DescribeFlowLogsRequest < Struct.new(
  :filter,
  :flow_log_ids,
  :max_results,
  :next_token)
  include Aws::Structure
end

#flow_log_idsArray<String>

One or more flow log IDs.

Returns:

  • (Array<String>)


6077
6078
6079
6080
6081
6082
6083
# File 'lib/aws-sdk-ec2/types.rb', line 6077

class DescribeFlowLogsRequest < Struct.new(
  :filter,
  :flow_log_ids,
  :max_results,
  :next_token)
  include Aws::Structure
end

#max_resultsInteger

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the returned ‘NextToken` value. This value can be between 5 and 1000; if `MaxResults` is given a value larger than 1000, only 1000 results are returned. You cannot specify this parameter and the flow log IDs parameter in the same request.

Returns:

  • (Integer)


6077
6078
6079
6080
6081
6082
6083
# File 'lib/aws-sdk-ec2/types.rb', line 6077

class DescribeFlowLogsRequest < Struct.new(
  :filter,
  :flow_log_ids,
  :max_results,
  :next_token)
  include Aws::Structure
end

#next_tokenString

The token to retrieve the next page of results.

Returns:

  • (String)


6077
6078
6079
6080
6081
6082
6083
# File 'lib/aws-sdk-ec2/types.rb', line 6077

class DescribeFlowLogsRequest < Struct.new(
  :filter,
  :flow_log_ids,
  :max_results,
  :next_token)
  include Aws::Structure
end