Struct aws_sdk_config::operation::batch_get_resource_config::builders::BatchGetResourceConfigOutputBuilder
source · #[non_exhaustive]pub struct BatchGetResourceConfigOutputBuilder { /* private fields */ }Expand description
A builder for BatchGetResourceConfigOutput.
Implementations§
source§impl BatchGetResourceConfigOutputBuilder
impl BatchGetResourceConfigOutputBuilder
sourcepub fn base_configuration_items(self, input: BaseConfigurationItem) -> Self
pub fn base_configuration_items(self, input: BaseConfigurationItem) -> Self
Appends an item to base_configuration_items.
To override the contents of this collection use set_base_configuration_items.
A list that contains the current configuration of one or more resources.
sourcepub fn set_base_configuration_items(
self,
input: Option<Vec<BaseConfigurationItem>>,
) -> Self
pub fn set_base_configuration_items( self, input: Option<Vec<BaseConfigurationItem>>, ) -> Self
A list that contains the current configuration of one or more resources.
sourcepub fn get_base_configuration_items(
&self,
) -> &Option<Vec<BaseConfigurationItem>>
pub fn get_base_configuration_items( &self, ) -> &Option<Vec<BaseConfigurationItem>>
A list that contains the current configuration of one or more resources.
sourcepub fn unprocessed_resource_keys(self, input: ResourceKey) -> Self
pub fn unprocessed_resource_keys(self, input: ResourceKey) -> Self
Appends an item to unprocessed_resource_keys.
To override the contents of this collection use set_unprocessed_resource_keys.
A list of resource keys that were not processed with the current response. The unprocessesResourceKeys value is in the same form as ResourceKeys, so the value can be directly provided to a subsequent BatchGetResourceConfig operation. If there are no unprocessed resource keys, the response contains an empty unprocessedResourceKeys list.
sourcepub fn set_unprocessed_resource_keys(
self,
input: Option<Vec<ResourceKey>>,
) -> Self
pub fn set_unprocessed_resource_keys( self, input: Option<Vec<ResourceKey>>, ) -> Self
A list of resource keys that were not processed with the current response. The unprocessesResourceKeys value is in the same form as ResourceKeys, so the value can be directly provided to a subsequent BatchGetResourceConfig operation. If there are no unprocessed resource keys, the response contains an empty unprocessedResourceKeys list.
sourcepub fn get_unprocessed_resource_keys(&self) -> &Option<Vec<ResourceKey>>
pub fn get_unprocessed_resource_keys(&self) -> &Option<Vec<ResourceKey>>
A list of resource keys that were not processed with the current response. The unprocessesResourceKeys value is in the same form as ResourceKeys, so the value can be directly provided to a subsequent BatchGetResourceConfig operation. If there are no unprocessed resource keys, the response contains an empty unprocessedResourceKeys list.
sourcepub fn build(self) -> BatchGetResourceConfigOutput
pub fn build(self) -> BatchGetResourceConfigOutput
Consumes the builder and constructs a BatchGetResourceConfigOutput.
Trait Implementations§
source§impl Clone for BatchGetResourceConfigOutputBuilder
impl Clone for BatchGetResourceConfigOutputBuilder
source§fn clone(&self) -> BatchGetResourceConfigOutputBuilder
fn clone(&self) -> BatchGetResourceConfigOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for BatchGetResourceConfigOutputBuilder
impl Default for BatchGetResourceConfigOutputBuilder
source§fn default() -> BatchGetResourceConfigOutputBuilder
fn default() -> BatchGetResourceConfigOutputBuilder
source§impl PartialEq for BatchGetResourceConfigOutputBuilder
impl PartialEq for BatchGetResourceConfigOutputBuilder
source§fn eq(&self, other: &BatchGetResourceConfigOutputBuilder) -> bool
fn eq(&self, other: &BatchGetResourceConfigOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchGetResourceConfigOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetResourceConfigOutputBuilder
impl RefUnwindSafe for BatchGetResourceConfigOutputBuilder
impl Send for BatchGetResourceConfigOutputBuilder
impl Sync for BatchGetResourceConfigOutputBuilder
impl Unpin for BatchGetResourceConfigOutputBuilder
impl UnwindSafe for BatchGetResourceConfigOutputBuilder
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