@@ -27,7 +27,7 @@ class RedshiftDatasetDefinition(ApiObject):
27
27
28
28
With this input, SQL queries will be executed using Redshift to generate datasets to S3.
29
29
30
- Attributes :
30
+ Parameters :
31
31
cluster_id (str): The Redshift cluster Identifier.
32
32
database (str): The name of the Redshift database used in Redshift query execution.
33
33
db_user (str): The database user name used in Redshift query execution.
@@ -60,7 +60,7 @@ class AthenaDatasetDefinition(ApiObject):
60
60
61
61
With this input, SQL queries will be executed using Athena to generate datasets to S3.
62
62
63
- Attributes :
63
+ Parameters :
64
64
catalog (str): The name of the data catalog used in Athena query execution.
65
65
database (str): The name of the database used in the Athena query execution.
66
66
query_string (str): The SQL query statements, to be executed.
@@ -87,7 +87,7 @@ class AthenaDatasetDefinition(ApiObject):
87
87
class DatasetDefinition (ApiObject ):
88
88
"""DatasetDefinition input.
89
89
90
- Attributes :
90
+ Parameters :
91
91
data_distribution_type (str): Whether the generated dataset is FullyReplicated or
92
92
ShardedByS3Key (default).
93
93
input_mode (str): Whether to use File or Pipe input mode. In File (default) mode, Amazon
@@ -98,9 +98,8 @@ class DatasetDefinition(ApiObject):
98
98
local_path (str): The local path where you want Amazon SageMaker to download the Dataset
99
99
Definition inputs to run a processing job. LocalPath is an absolute path to the input
100
100
data. This is a required parameter when `AppManaged` is False (default).
101
- redshift_dataset_definition
102
- (:class:`~sagemaker.dataset_definition.inputs.RedshiftDatasetDefinition`): Redshift
103
- dataset definition.
101
+ redshift_dataset_definition (:class:`~sagemaker.dataset_definition.inputs.RedshiftDatasetDefinition`):
102
+ Configuration for Redshift Dataset Definition input.
104
103
athena_dataset_definition (:class:`~sagemaker.dataset_definition.inputs.AthenaDatasetDefinition`):
105
104
Configuration for Athena Dataset Definition input.
106
105
"""
@@ -126,7 +125,7 @@ class S3Input(ApiObject):
126
125
S3 list operations are not strongly consistent.
127
126
Use ManifestFile if strong consistency is required.
128
127
129
- Attributes :
128
+ Parameters :
130
129
s3_uri (str): the path to a specific S3 object or a S3 prefix
131
130
local_path (str): the path to a local directory. If not provided, skips data download
132
131
by SageMaker platform.
0 commit comments