Class: Aws::WorkSpacesWeb::Types::IpRule

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

Overview

The IP rules of the IP access settings.

Constant Summary collapse

SENSITIVE =
[:description, :ip_range]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description of the IP rule.

Returns:

  • (String)


1724
1725
1726
1727
1728
1729
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 1724

class IpRule < Struct.new(
  :description,
  :ip_range)
  SENSITIVE = [:description, :ip_range]
  include Aws::Structure
end

#ip_rangeString

The IP range of the IP rule.

Returns:

  • (String)


1724
1725
1726
1727
1728
1729
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 1724

class IpRule < Struct.new(
  :description,
  :ip_range)
  SENSITIVE = [:description, :ip_range]
  include Aws::Structure
end