Struct aws_sdk_glue::types::builders::ConfigurationObjectBuilder
source · #[non_exhaustive]pub struct ConfigurationObjectBuilder { /* private fields */ }Expand description
A builder for ConfigurationObject.
Implementations§
source§impl ConfigurationObjectBuilder
impl ConfigurationObjectBuilder
sourcepub fn default_value(self, input: impl Into<String>) -> Self
pub fn default_value(self, input: impl Into<String>) -> Self
A default value for the parameter.
sourcepub fn set_default_value(self, input: Option<String>) -> Self
pub fn set_default_value(self, input: Option<String>) -> Self
A default value for the parameter.
sourcepub fn get_default_value(&self) -> &Option<String>
pub fn get_default_value(&self) -> &Option<String>
A default value for the parameter.
sourcepub fn allowed_values(self, input: impl Into<String>) -> Self
pub fn allowed_values(self, input: impl Into<String>) -> Self
Appends an item to allowed_values.
To override the contents of this collection use set_allowed_values.
A list of allowed values for the parameter.
sourcepub fn set_allowed_values(self, input: Option<Vec<String>>) -> Self
pub fn set_allowed_values(self, input: Option<Vec<String>>) -> Self
A list of allowed values for the parameter.
sourcepub fn get_allowed_values(&self) -> &Option<Vec<String>>
pub fn get_allowed_values(&self) -> &Option<Vec<String>>
A list of allowed values for the parameter.
sourcepub fn min_value(self, input: impl Into<String>) -> Self
pub fn min_value(self, input: impl Into<String>) -> Self
A minimum allowed value for the parameter.
sourcepub fn set_min_value(self, input: Option<String>) -> Self
pub fn set_min_value(self, input: Option<String>) -> Self
A minimum allowed value for the parameter.
sourcepub fn get_min_value(&self) -> &Option<String>
pub fn get_min_value(&self) -> &Option<String>
A minimum allowed value for the parameter.
sourcepub fn max_value(self, input: impl Into<String>) -> Self
pub fn max_value(self, input: impl Into<String>) -> Self
A maximum allowed value for the parameter.
sourcepub fn set_max_value(self, input: Option<String>) -> Self
pub fn set_max_value(self, input: Option<String>) -> Self
A maximum allowed value for the parameter.
sourcepub fn get_max_value(&self) -> &Option<String>
pub fn get_max_value(&self) -> &Option<String>
A maximum allowed value for the parameter.
sourcepub fn build(self) -> ConfigurationObject
pub fn build(self) -> ConfigurationObject
Consumes the builder and constructs a ConfigurationObject.
Trait Implementations§
source§impl Clone for ConfigurationObjectBuilder
impl Clone for ConfigurationObjectBuilder
source§fn clone(&self) -> ConfigurationObjectBuilder
fn clone(&self) -> ConfigurationObjectBuilder
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 Debug for ConfigurationObjectBuilder
impl Debug for ConfigurationObjectBuilder
source§impl Default for ConfigurationObjectBuilder
impl Default for ConfigurationObjectBuilder
source§fn default() -> ConfigurationObjectBuilder
fn default() -> ConfigurationObjectBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ConfigurationObjectBuilder
impl PartialEq for ConfigurationObjectBuilder
source§fn eq(&self, other: &ConfigurationObjectBuilder) -> bool
fn eq(&self, other: &ConfigurationObjectBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ConfigurationObjectBuilder
Auto Trait Implementations§
impl Freeze for ConfigurationObjectBuilder
impl RefUnwindSafe for ConfigurationObjectBuilder
impl Send for ConfigurationObjectBuilder
impl Sync for ConfigurationObjectBuilder
impl Unpin for ConfigurationObjectBuilder
impl UnwindSafe for ConfigurationObjectBuilder
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.