Struct aws_sdk_emr::operation::list_security_configurations::builders::ListSecurityConfigurationsOutputBuilder
source · #[non_exhaustive]pub struct ListSecurityConfigurationsOutputBuilder { /* private fields */ }Expand description
A builder for ListSecurityConfigurationsOutput.
Implementations§
source§impl ListSecurityConfigurationsOutputBuilder
impl ListSecurityConfigurationsOutputBuilder
sourcepub fn security_configurations(
self,
input: SecurityConfigurationSummary,
) -> Self
pub fn security_configurations( self, input: SecurityConfigurationSummary, ) -> Self
Appends an item to security_configurations.
To override the contents of this collection use set_security_configurations.
The creation date and time, and name, of each security configuration.
sourcepub fn set_security_configurations(
self,
input: Option<Vec<SecurityConfigurationSummary>>,
) -> Self
pub fn set_security_configurations( self, input: Option<Vec<SecurityConfigurationSummary>>, ) -> Self
The creation date and time, and name, of each security configuration.
sourcepub fn get_security_configurations(
&self,
) -> &Option<Vec<SecurityConfigurationSummary>>
pub fn get_security_configurations( &self, ) -> &Option<Vec<SecurityConfigurationSummary>>
The creation date and time, and name, of each security configuration.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
A pagination token that indicates the next set of results to retrieve. Include the marker in the next ListSecurityConfiguration call to retrieve the next page of results, if required.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
A pagination token that indicates the next set of results to retrieve. Include the marker in the next ListSecurityConfiguration call to retrieve the next page of results, if required.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
A pagination token that indicates the next set of results to retrieve. Include the marker in the next ListSecurityConfiguration call to retrieve the next page of results, if required.
sourcepub fn build(self) -> ListSecurityConfigurationsOutput
pub fn build(self) -> ListSecurityConfigurationsOutput
Consumes the builder and constructs a ListSecurityConfigurationsOutput.
Trait Implementations§
source§impl Clone for ListSecurityConfigurationsOutputBuilder
impl Clone for ListSecurityConfigurationsOutputBuilder
source§fn clone(&self) -> ListSecurityConfigurationsOutputBuilder
fn clone(&self) -> ListSecurityConfigurationsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListSecurityConfigurationsOutputBuilder
impl Default for ListSecurityConfigurationsOutputBuilder
source§fn default() -> ListSecurityConfigurationsOutputBuilder
fn default() -> ListSecurityConfigurationsOutputBuilder
source§impl PartialEq for ListSecurityConfigurationsOutputBuilder
impl PartialEq for ListSecurityConfigurationsOutputBuilder
source§fn eq(&self, other: &ListSecurityConfigurationsOutputBuilder) -> bool
fn eq(&self, other: &ListSecurityConfigurationsOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListSecurityConfigurationsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListSecurityConfigurationsOutputBuilder
impl RefUnwindSafe for ListSecurityConfigurationsOutputBuilder
impl Send for ListSecurityConfigurationsOutputBuilder
impl Sync for ListSecurityConfigurationsOutputBuilder
impl Unpin for ListSecurityConfigurationsOutputBuilder
impl UnwindSafe for ListSecurityConfigurationsOutputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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