#[non_exhaustive]pub struct EmrServerlessComputeConfig {
pub execution_role_arn: Option<String>,
}
Expand description
This data type is intended for use exclusively by SageMaker Canvas and cannot be used in other contexts at the moment.
Specifies the compute configuration for the EMR Serverless job.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.execution_role_arn: Option<String>
The ARN of the IAM role granting the AutoML job V2 the necessary permissions access policies to list, connect to, or manage EMR Serverless jobs. For detailed information about the required permissions of this role, see "How to configure AutoML to initiate a remote job on EMR Serverless for large datasets" in Create a regression or classification job for tabular data using the AutoML API or Create an AutoML job for time-series forecasting using the API.
Implementations§
source§impl EmrServerlessComputeConfig
impl EmrServerlessComputeConfig
sourcepub fn execution_role_arn(&self) -> Option<&str>
pub fn execution_role_arn(&self) -> Option<&str>
The ARN of the IAM role granting the AutoML job V2 the necessary permissions access policies to list, connect to, or manage EMR Serverless jobs. For detailed information about the required permissions of this role, see "How to configure AutoML to initiate a remote job on EMR Serverless for large datasets" in Create a regression or classification job for tabular data using the AutoML API or Create an AutoML job for time-series forecasting using the API.
source§impl EmrServerlessComputeConfig
impl EmrServerlessComputeConfig
sourcepub fn builder() -> EmrServerlessComputeConfigBuilder
pub fn builder() -> EmrServerlessComputeConfigBuilder
Creates a new builder-style object to manufacture EmrServerlessComputeConfig
.
Trait Implementations§
source§impl Clone for EmrServerlessComputeConfig
impl Clone for EmrServerlessComputeConfig
source§fn clone(&self) -> EmrServerlessComputeConfig
fn clone(&self) -> EmrServerlessComputeConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EmrServerlessComputeConfig
impl Debug for EmrServerlessComputeConfig
impl StructuralPartialEq for EmrServerlessComputeConfig
Auto Trait Implementations§
impl Freeze for EmrServerlessComputeConfig
impl RefUnwindSafe for EmrServerlessComputeConfig
impl Send for EmrServerlessComputeConfig
impl Sync for EmrServerlessComputeConfig
impl Unpin for EmrServerlessComputeConfig
impl UnwindSafe for EmrServerlessComputeConfig
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more