[−][src]Struct rusoto_sagemaker::CreateLabelingJobRequest
Fields
human_task_config: HumanTaskConfig
Configures the information required for human workers to complete a labeling task.
input_config: LabelingJobInputConfig
Input data for the labeling job, such as the Amazon S3 location of the data objects and the location of the manifest file that describes the data objects.
label_attribute_name: String
The attribute name to use for the label in the output manifest file. This is the key for the key/value pair formed with the label that a worker assigns to the object. The name can't end with "-metadata". If you are running a semantic segmentation labeling job, the attribute name must end with "-ref". If you are running any other kind of labeling job, the attribute name must not end with "-ref".
label_category_config_s3_uri: Option<String>
The S3 URL of the file that defines the categories used to label the data objects.
The file is a JSON structure in the following format:
{
"document-version": "2018-11-28"
"labels": [
{
"label": "label 1"
},
{
"label": "label 2"
},
...
{
"label": "label n"
}
]
}
labeling_job_algorithms_config: Option<LabelingJobAlgorithmsConfig>
Configures the information required to perform automated data labeling.
labeling_job_name: String
The name of the labeling job. This name is used to identify the job in a list of labeling jobs.
output_config: LabelingJobOutputConfig
The location of the output data and the AWS Key Management Service key ID for the key used to encrypt the output data, if any.
role_arn: String
The Amazon Resource Number (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during data labeling. You must grant this role the necessary permissions so that Amazon SageMaker can successfully complete data labeling.
stopping_conditions: Option<LabelingJobStoppingConditions>
A set of conditions for stopping the labeling job. If any of the conditions are met, the job is automatically stopped. You can use these conditions to control the cost of data labeling.
An array of key/value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.
Trait Implementations
impl PartialEq<CreateLabelingJobRequest> for CreateLabelingJobRequest
[src]
fn eq(&self, other: &CreateLabelingJobRequest) -> bool
[src]
fn ne(&self, other: &CreateLabelingJobRequest) -> bool
[src]
impl Default for CreateLabelingJobRequest
[src]
fn default() -> CreateLabelingJobRequest
[src]
impl Clone for CreateLabelingJobRequest
[src]
fn clone(&self) -> CreateLabelingJobRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for CreateLabelingJobRequest
[src]
impl Serialize for CreateLabelingJobRequest
[src]
Auto Trait Implementations
impl Send for CreateLabelingJobRequest
impl Sync for CreateLabelingJobRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self