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 =
[:ip_range, :description]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description of the IP rule.

Returns:

  • (String)


2343
2344
2345
2346
2347
2348
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 2343

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

#ip_rangeString

The IP range of the IP rule.

Returns:

  • (String)


2343
2344
2345
2346
2347
2348
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 2343

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