Skip to content

documentation: Fix dataset_definition links #2456

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 16 commits into from
Aug 10, 2021
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions src/sagemaker/dataset_definition/inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ class DatasetDefinition(ApiObject):
Definition inputs to run a processing job. LocalPath is an absolute path to the input
data. This is a required parameter when `AppManaged` is False (default).
redshift_dataset_definition
(:class:`~sagemaker.dataset_definition.RedshiftDatasetDefinition`): Redshift
(:class:`~sagemaker.dataset_definition.inputs.RedshiftDatasetDefinition`): Redshift
dataset definition.
athena_dataset_definition (:class:`~sagemaker.dataset_definition.AthenaDatasetDefinition`):
athena_dataset_definition (:class:`~sagemaker.dataset_definition.inputs.AthenaDatasetDefinition`):
Configuration for Athena Dataset Definition input.
"""

Expand Down
4 changes: 2 additions & 2 deletions src/sagemaker/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1065,9 +1065,9 @@ def __init__(
s3_data_distribution_type (str): Valid options are "FullyReplicated"
or "ShardedByS3Key".
s3_compression_type (str): Valid options are "None" or "Gzip".
s3_input (:class:`~sagemaker.dataset_definition.S3Input`)
s3_input (:class:`~sagemaker.dataset_definition.inputs.S3Input`)
Metadata of data objects stored in S3
dataset_definition (:class:`~sagemaker.dataset_definition.DatasetDefinition`)
dataset_definition (:class:`~sagemaker.dataset_definition.inputs.DatasetDefinition`)
DatasetDefinition input
app_managed (bool): Whether the input are managed by SageMaker or application
"""
Expand Down