Struct aws_sdk_sagemaker::operation::create_hyper_parameter_tuning_job::CreateHyperParameterTuningJobOutput
source · #[non_exhaustive]pub struct CreateHyperParameterTuningJobOutput {
pub hyper_parameter_tuning_job_arn: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.hyper_parameter_tuning_job_arn: Option<String>
The Amazon Resource Name (ARN) of the tuning job. SageMaker assigns an ARN to a hyperparameter tuning job when you create it.
Implementations§
source§impl CreateHyperParameterTuningJobOutput
impl CreateHyperParameterTuningJobOutput
sourcepub fn hyper_parameter_tuning_job_arn(&self) -> Option<&str>
pub fn hyper_parameter_tuning_job_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the tuning job. SageMaker assigns an ARN to a hyperparameter tuning job when you create it.
source§impl CreateHyperParameterTuningJobOutput
impl CreateHyperParameterTuningJobOutput
sourcepub fn builder() -> CreateHyperParameterTuningJobOutputBuilder
pub fn builder() -> CreateHyperParameterTuningJobOutputBuilder
Creates a new builder-style object to manufacture CreateHyperParameterTuningJobOutput
.
Trait Implementations§
source§impl Clone for CreateHyperParameterTuningJobOutput
impl Clone for CreateHyperParameterTuningJobOutput
source§fn clone(&self) -> CreateHyperParameterTuningJobOutput
fn clone(&self) -> CreateHyperParameterTuningJobOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<CreateHyperParameterTuningJobOutput> for CreateHyperParameterTuningJobOutput
impl PartialEq<CreateHyperParameterTuningJobOutput> for CreateHyperParameterTuningJobOutput
source§fn eq(&self, other: &CreateHyperParameterTuningJobOutput) -> bool
fn eq(&self, other: &CreateHyperParameterTuningJobOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateHyperParameterTuningJobOutput
impl RequestId for CreateHyperParameterTuningJobOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateHyperParameterTuningJobOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateHyperParameterTuningJobOutput
impl Send for CreateHyperParameterTuningJobOutput
impl Sync for CreateHyperParameterTuningJobOutput
impl Unpin for CreateHyperParameterTuningJobOutput
impl UnwindSafe for CreateHyperParameterTuningJobOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more