Skip to content

fix: jumpstart docs network isolation #2989

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions doc/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -757,6 +757,7 @@ see `Model <https://sagemaker.readthedocs.io/en/stable/api/inference/model.html
   entry_point="inference.py",
   role=Session().get_caller_identity_arn(),
   predictor_cls=Predictor,
   enable_network_isolation=True,
)
Save the output from deploying the model to a variable named
Expand Down Expand Up @@ -874,6 +875,7 @@ value is not set.
    hyperparameters=default_hyperparameters,
    instance_count=instance_count,
    instance_type=training_instance_type,
    enable_network_isolation=True,
)
# Specify the S3 location of training data for the training channel
Expand Down Expand Up @@ -935,6 +937,7 @@ took your model to train.
    image_uri=deploy_image_uri,
    source_dir=deploy_script_uri,
    endpoint_name=endpoint_name,
    enable_network_isolation=True,
)
Perform Inference on a SageMaker Endpoint
Expand Down