Newer Version Available

This content describes an older version of this product. View Latest

InboundNetworkConnProperty

Represents a name-value pair that describes the properties of the inbound network connection. Available in API version 49.0 and later.

Supported SOAP Calls

create(), delete(), describeObject(), query(), retrieve(), update(), upsert()

Supported REST HTTP Methods

DELETE, GET, HEAD, PATCH, POST, QUERY

Fields

Field Details
InboundNetworkConnectionId
Type
reference
Properties
Create, Filter, Group, Sort
Description
Required. The ID of the corresponding InboundNetworkConnection.
PropertyName
Type
picklist
Properties
Create, Filter, Group, Restricted picklist, Sort
Description
The name of a property used to establish an InboundNetworkConnection. Valid values are:
  • AwsVpcEndpointId—The unique endpoint ID for connections to an AWS Virtual Private Cloud (VPC).
  • Region—The region in which the VPC is hosted.
  • SourceIpRanges—The ranges of source IP address allocated to this inbound connection by the Salesforce-managed VPC in your cloud provider.
PropertyValue
Type
textarea
Properties
Create, Nillable, Update
Description
The value of the PropertyName. An example of the PropertyValue of Region is us-west-2.
The PropertyValue of SourceIpRanges is a JSON string that lists the start and end IP address for each range. This example shows two IP address ranges.
1[
2  {
3    "startIp":"10.10.10.0",
4    "endIp":"10.10.10.3"
5  },
6  {
7    "startIp":"100.100.100.0",
8    "endIp":"100.100.100.15"
9  }
10]