Class: Aws::SageMaker::Types::SourceIpConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::SourceIpConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
A list of IP address ranges ([CIDRs]). Used to create an allow list of IP addresses for a private workforce. Workers will only be able to log in to their worker portal from an IP address within this range. By default, a workforce isn’t restricted to specific IP addresses.
[1]: docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cidrs ⇒ Array<String>
A list of one to ten [Classless Inter-Domain Routing] (CIDR) values.
Instance Attribute Details
#cidrs ⇒ Array<String>
A list of one to ten [Classless Inter-Domain Routing] (CIDR) values.
Maximum: Ten CIDR values
<note markdown=“1”> The following Length Constraints apply to individual CIDR values in the CIDR value list.
</note>
[1]: docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html
41162 41163 41164 41165 41166 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 41162 class SourceIpConfig < Struct.new( :cidrs) SENSITIVE = [] include Aws::Structure end |