Class: Aws::SageMaker::Types::SourceIpConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::SourceIpConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass SourceIpConfig data as a hash:
{
cidrs: ["Cidr"], # required
}
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 login to their worker portal from an IP address within this range. By default, a workforce isn't restricted to specific IP addresses.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cidrs ⇒ Array<String>
A list of one to ten [Classless Inter-Domain Routing][1] (CIDR) values.
Instance Attribute Details
#cidrs ⇒ Array<String>
A list of one to ten Classless Inter-Domain Routing (CIDR) values.
Maximum: Ten CIDR values
30545 30546 30547 30548 30549 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 30545 class SourceIpConfig < Struct.new( :cidrs) SENSITIVE = [] include Aws::Structure end |