Class: Aws::IAM::Types::Position

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb

Overview

Contains the row and column of a location of a Statement element in a policy document.

This data type is used as a member of the Statement type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#columnInteger

The column in the line containing the specified position in the document.

Returns:

  • (Integer)


8175
8176
8177
8178
8179
8180
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 8175

class Position < Struct.new(
  :line,
  :column)
  SENSITIVE = []
  include Aws::Structure
end

#lineInteger

The line containing the specified position in the document.

Returns:

  • (Integer)


8175
8176
8177
8178
8179
8180
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 8175

class Position < Struct.new(
  :line,
  :column)
  SENSITIVE = []
  include Aws::Structure
end