Struct aws_sdk_applicationdiscovery::operation::associate_configuration_items_to_application::builders::AssociateConfigurationItemsToApplicationInputBuilder
source · #[non_exhaustive]pub struct AssociateConfigurationItemsToApplicationInputBuilder { /* private fields */ }Expand description
A builder for AssociateConfigurationItemsToApplicationInput.
Implementations§
source§impl AssociateConfigurationItemsToApplicationInputBuilder
impl AssociateConfigurationItemsToApplicationInputBuilder
sourcepub fn application_configuration_id(self, input: impl Into<String>) -> Self
pub fn application_configuration_id(self, input: impl Into<String>) -> Self
The configuration ID of an application with which items are to be associated.
This field is required.sourcepub fn set_application_configuration_id(self, input: Option<String>) -> Self
pub fn set_application_configuration_id(self, input: Option<String>) -> Self
The configuration ID of an application with which items are to be associated.
sourcepub fn get_application_configuration_id(&self) -> &Option<String>
pub fn get_application_configuration_id(&self) -> &Option<String>
The configuration ID of an application with which items are to be associated.
sourcepub fn configuration_ids(self, input: impl Into<String>) -> Self
pub fn configuration_ids(self, input: impl Into<String>) -> Self
Appends an item to configuration_ids.
To override the contents of this collection use set_configuration_ids.
The ID of each configuration item to be associated with an application.
sourcepub fn set_configuration_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_configuration_ids(self, input: Option<Vec<String>>) -> Self
The ID of each configuration item to be associated with an application.
sourcepub fn get_configuration_ids(&self) -> &Option<Vec<String>>
pub fn get_configuration_ids(&self) -> &Option<Vec<String>>
The ID of each configuration item to be associated with an application.
sourcepub fn build(
self
) -> Result<AssociateConfigurationItemsToApplicationInput, BuildError>
pub fn build( self ) -> Result<AssociateConfigurationItemsToApplicationInput, BuildError>
Consumes the builder and constructs a AssociateConfigurationItemsToApplicationInput.
source§impl AssociateConfigurationItemsToApplicationInputBuilder
impl AssociateConfigurationItemsToApplicationInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<AssociateConfigurationItemsToApplicationOutput, SdkError<AssociateConfigurationItemsToApplicationError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<AssociateConfigurationItemsToApplicationOutput, SdkError<AssociateConfigurationItemsToApplicationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for AssociateConfigurationItemsToApplicationInputBuilder
impl Clone for AssociateConfigurationItemsToApplicationInputBuilder
source§fn clone(&self) -> AssociateConfigurationItemsToApplicationInputBuilder
fn clone(&self) -> AssociateConfigurationItemsToApplicationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for AssociateConfigurationItemsToApplicationInputBuilder
impl Default for AssociateConfigurationItemsToApplicationInputBuilder
source§fn default() -> AssociateConfigurationItemsToApplicationInputBuilder
fn default() -> AssociateConfigurationItemsToApplicationInputBuilder
source§impl PartialEq for AssociateConfigurationItemsToApplicationInputBuilder
impl PartialEq for AssociateConfigurationItemsToApplicationInputBuilder
source§fn eq(
&self,
other: &AssociateConfigurationItemsToApplicationInputBuilder
) -> bool
fn eq( &self, other: &AssociateConfigurationItemsToApplicationInputBuilder ) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AssociateConfigurationItemsToApplicationInputBuilder
Auto Trait Implementations§
impl Freeze for AssociateConfigurationItemsToApplicationInputBuilder
impl RefUnwindSafe for AssociateConfigurationItemsToApplicationInputBuilder
impl Send for AssociateConfigurationItemsToApplicationInputBuilder
impl Sync for AssociateConfigurationItemsToApplicationInputBuilder
impl Unpin for AssociateConfigurationItemsToApplicationInputBuilder
impl UnwindSafe for AssociateConfigurationItemsToApplicationInputBuilder
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> 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