Struct aws_sdk_emr::operation::put_managed_scaling_policy::builders::PutManagedScalingPolicyInputBuilder
source · #[non_exhaustive]pub struct PutManagedScalingPolicyInputBuilder { /* private fields */ }Expand description
A builder for PutManagedScalingPolicyInput.
Implementations§
source§impl PutManagedScalingPolicyInputBuilder
impl PutManagedScalingPolicyInputBuilder
sourcepub fn cluster_id(self, input: impl Into<String>) -> Self
pub fn cluster_id(self, input: impl Into<String>) -> Self
Specifies the ID of an Amazon EMR cluster where the managed scaling policy is attached.
This field is required.sourcepub fn set_cluster_id(self, input: Option<String>) -> Self
pub fn set_cluster_id(self, input: Option<String>) -> Self
Specifies the ID of an Amazon EMR cluster where the managed scaling policy is attached.
sourcepub fn get_cluster_id(&self) -> &Option<String>
pub fn get_cluster_id(&self) -> &Option<String>
Specifies the ID of an Amazon EMR cluster where the managed scaling policy is attached.
sourcepub fn managed_scaling_policy(self, input: ManagedScalingPolicy) -> Self
pub fn managed_scaling_policy(self, input: ManagedScalingPolicy) -> Self
Specifies the constraints for the managed scaling policy.
This field is required.sourcepub fn set_managed_scaling_policy(
self,
input: Option<ManagedScalingPolicy>,
) -> Self
pub fn set_managed_scaling_policy( self, input: Option<ManagedScalingPolicy>, ) -> Self
Specifies the constraints for the managed scaling policy.
sourcepub fn get_managed_scaling_policy(&self) -> &Option<ManagedScalingPolicy>
pub fn get_managed_scaling_policy(&self) -> &Option<ManagedScalingPolicy>
Specifies the constraints for the managed scaling policy.
sourcepub fn build(self) -> Result<PutManagedScalingPolicyInput, BuildError>
pub fn build(self) -> Result<PutManagedScalingPolicyInput, BuildError>
Consumes the builder and constructs a PutManagedScalingPolicyInput.
source§impl PutManagedScalingPolicyInputBuilder
impl PutManagedScalingPolicyInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<PutManagedScalingPolicyOutput, SdkError<PutManagedScalingPolicyError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<PutManagedScalingPolicyOutput, SdkError<PutManagedScalingPolicyError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for PutManagedScalingPolicyInputBuilder
impl Clone for PutManagedScalingPolicyInputBuilder
source§fn clone(&self) -> PutManagedScalingPolicyInputBuilder
fn clone(&self) -> PutManagedScalingPolicyInputBuilder
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 Default for PutManagedScalingPolicyInputBuilder
impl Default for PutManagedScalingPolicyInputBuilder
source§fn default() -> PutManagedScalingPolicyInputBuilder
fn default() -> PutManagedScalingPolicyInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for PutManagedScalingPolicyInputBuilder
impl PartialEq for PutManagedScalingPolicyInputBuilder
source§fn eq(&self, other: &PutManagedScalingPolicyInputBuilder) -> bool
fn eq(&self, other: &PutManagedScalingPolicyInputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PutManagedScalingPolicyInputBuilder
Auto Trait Implementations§
impl Freeze for PutManagedScalingPolicyInputBuilder
impl RefUnwindSafe for PutManagedScalingPolicyInputBuilder
impl Send for PutManagedScalingPolicyInputBuilder
impl Sync for PutManagedScalingPolicyInputBuilder
impl Unpin for PutManagedScalingPolicyInputBuilder
impl UnwindSafe for PutManagedScalingPolicyInputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.