Skip to content

WhitelistProps

Properties for defining a Whitelist.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-redis-whitelist

Initializer

using AlibabaCloud.SDK.ROS.CDK.Redis;
new WhitelistProps {
    object InstanceId,
    object SecurityIps,
    object SecurityIpGroupAttribute = null,
    object SecurityIpGroupName = null
};

Properties

Name Type Description
InstanceId object Property instanceId: Instance ID (globally unique).
SecurityIps object Property securityIps: The IP addresses in the whitelist.
SecurityIpGroupAttribute object Property securityIpGroupAttribute: The default is empty.
SecurityIpGroupName object Property securityIpGroupName: The name of the IP address whitelist.

InstanceIdRequired

public object InstanceId { get; set; }
  • Type: object

Property instanceId: Instance ID (globally unique).


SecurityIpsRequired

public object SecurityIps { get; set; }
  • Type: object

Property securityIps: The IP addresses in the whitelist.

Up to 1,000 IP addresses can be specified in a whitelist. Separate multiple IP addresses with a comma (,). Specify an IP address in the 0.0.0.0/0, 10.23.12.24, or 10.23.12.24/24 format. In CIDR block 10.23.12.24/24, /24 specifies the length of the prefix of an IP address. The prefix length ranges from 1 to 32.


SecurityIpGroupAttributeOptional

public object SecurityIpGroupAttribute { get; set; }
  • Type: object

Property securityIpGroupAttribute: The default is empty.

For distinguishing between different attribute values, the console will not display the value of hidden whitelist packet.


SecurityIpGroupNameOptional

public object SecurityIpGroupName { get; set; }
  • Type: object

Property securityIpGroupName: The name of the IP address whitelist.

You cannot modify the whitelist that is generated by the system. If you do not specify this parameter, the default whitelist is modified by default.>


Protocols