Class: Aws::WorkspacesInstances::Types::PrivateIpAddressSpecification

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

Overview

Defines private IP address configuration for network interface.

Constant Summary collapse

SENSITIVE =
[:private_ip_address]

Instance Attribute Summary collapse

Instance Attribute Details

#primaryBoolean

Indicates if this is the primary private IP address.

Returns:

  • (Boolean)


1318
1319
1320
1321
1322
1323
# File 'lib/aws-sdk-workspacesinstances/types.rb', line 1318

class PrivateIpAddressSpecification < Struct.new(
  :primary,
  :private_ip_address)
  SENSITIVE = [:private_ip_address]
  include Aws::Structure
end

#private_ip_addressString

Specific private IP address for the network interface.

Returns:

  • (String)


1318
1319
1320
1321
1322
1323
# File 'lib/aws-sdk-workspacesinstances/types.rb', line 1318

class PrivateIpAddressSpecification < Struct.new(
  :primary,
  :private_ip_address)
  SENSITIVE = [:private_ip_address]
  include Aws::Structure
end