#[non_exhaustive]pub struct ListIntegrationResourcePropertiesOutputBuilder { /* private fields */ }Expand description
A builder for ListIntegrationResourcePropertiesOutput.
Implementations§
Source§impl ListIntegrationResourcePropertiesOutputBuilder
impl ListIntegrationResourcePropertiesOutputBuilder
Sourcepub fn integration_resource_property_list(
self,
input: IntegrationResourceProperty,
) -> Self
pub fn integration_resource_property_list( self, input: IntegrationResourceProperty, ) -> Self
Appends an item to integration_resource_property_list.
To override the contents of this collection use set_integration_resource_property_list.
A list of integration resource property meeting the filter criteria.
Sourcepub fn set_integration_resource_property_list(
self,
input: Option<Vec<IntegrationResourceProperty>>,
) -> Self
pub fn set_integration_resource_property_list( self, input: Option<Vec<IntegrationResourceProperty>>, ) -> Self
A list of integration resource property meeting the filter criteria.
Sourcepub fn get_integration_resource_property_list(
&self,
) -> &Option<Vec<IntegrationResourceProperty>>
pub fn get_integration_resource_property_list( &self, ) -> &Option<Vec<IntegrationResourceProperty>>
A list of integration resource property meeting the filter criteria.
Sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
This is the pagination token for the next page.
Sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
This is the pagination token for the next page.
Sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
This is the pagination token for the next page.
Sourcepub fn build(self) -> ListIntegrationResourcePropertiesOutput
pub fn build(self) -> ListIntegrationResourcePropertiesOutput
Consumes the builder and constructs a ListIntegrationResourcePropertiesOutput.
Trait Implementations§
Source§impl Clone for ListIntegrationResourcePropertiesOutputBuilder
impl Clone for ListIntegrationResourcePropertiesOutputBuilder
Source§fn clone(&self) -> ListIntegrationResourcePropertiesOutputBuilder
fn clone(&self) -> ListIntegrationResourcePropertiesOutputBuilder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListIntegrationResourcePropertiesOutputBuilder
impl Default for ListIntegrationResourcePropertiesOutputBuilder
Source§fn default() -> ListIntegrationResourcePropertiesOutputBuilder
fn default() -> ListIntegrationResourcePropertiesOutputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListIntegrationResourcePropertiesOutputBuilder
impl PartialEq for ListIntegrationResourcePropertiesOutputBuilder
Source§fn eq(&self, other: &ListIntegrationResourcePropertiesOutputBuilder) -> bool
fn eq(&self, other: &ListIntegrationResourcePropertiesOutputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListIntegrationResourcePropertiesOutputBuilder
Auto Trait Implementations§
impl Freeze for ListIntegrationResourcePropertiesOutputBuilder
impl RefUnwindSafe for ListIntegrationResourcePropertiesOutputBuilder
impl Send for ListIntegrationResourcePropertiesOutputBuilder
impl Sync for ListIntegrationResourcePropertiesOutputBuilder
impl Unpin for ListIntegrationResourcePropertiesOutputBuilder
impl UnsafeUnpin for ListIntegrationResourcePropertiesOutputBuilder
impl UnwindSafe for ListIntegrationResourcePropertiesOutputBuilder
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§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.