Class: Aws::GuardDuty::Types::Country

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

Overview

Contains information about the country where the remote IP address is located.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#country_codeString

The country code of the remote IP address.

Returns:

  • (String)


804
805
806
807
808
809
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 804

class Country < Struct.new(
  :country_code,
  :country_name)
  SENSITIVE = []
  include Aws::Structure
end

#country_nameString

The country name of the remote IP address.

Returns:

  • (String)


804
805
806
807
808
809
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 804

class Country < Struct.new(
  :country_code,
  :country_name)
  SENSITIVE = []
  include Aws::Structure
end