Struct aws_sdk_datapipeline::operation::describe_objects::builders::DescribeObjectsInputBuilder
source · #[non_exhaustive]pub struct DescribeObjectsInputBuilder { /* private fields */ }
Expand description
A builder for DescribeObjectsInput
.
Implementations§
source§impl DescribeObjectsInputBuilder
impl DescribeObjectsInputBuilder
sourcepub fn pipeline_id(self, input: impl Into<String>) -> Self
pub fn pipeline_id(self, input: impl Into<String>) -> Self
The ID of the pipeline that contains the object definitions.
This field is required.sourcepub fn set_pipeline_id(self, input: Option<String>) -> Self
pub fn set_pipeline_id(self, input: Option<String>) -> Self
The ID of the pipeline that contains the object definitions.
sourcepub fn get_pipeline_id(&self) -> &Option<String>
pub fn get_pipeline_id(&self) -> &Option<String>
The ID of the pipeline that contains the object definitions.
sourcepub fn object_ids(self, input: impl Into<String>) -> Self
pub fn object_ids(self, input: impl Into<String>) -> Self
Appends an item to object_ids
.
To override the contents of this collection use set_object_ids
.
The IDs of the pipeline objects that contain the definitions to be described. You can pass as many as 25 identifiers in a single call to DescribeObjects
.
sourcepub fn set_object_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_object_ids(self, input: Option<Vec<String>>) -> Self
The IDs of the pipeline objects that contain the definitions to be described. You can pass as many as 25 identifiers in a single call to DescribeObjects
.
sourcepub fn get_object_ids(&self) -> &Option<Vec<String>>
pub fn get_object_ids(&self) -> &Option<Vec<String>>
The IDs of the pipeline objects that contain the definitions to be described. You can pass as many as 25 identifiers in a single call to DescribeObjects
.
sourcepub fn evaluate_expressions(self, input: bool) -> Self
pub fn evaluate_expressions(self, input: bool) -> Self
Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.
sourcepub fn set_evaluate_expressions(self, input: Option<bool>) -> Self
pub fn set_evaluate_expressions(self, input: Option<bool>) -> Self
Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.
sourcepub fn get_evaluate_expressions(&self) -> &Option<bool>
pub fn get_evaluate_expressions(&self) -> &Option<bool>
Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call DescribeObjects
with the marker value from the previous call to retrieve the next set of results.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call DescribeObjects
with the marker value from the previous call to retrieve the next set of results.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call DescribeObjects
with the marker value from the previous call to retrieve the next set of results.
sourcepub fn build(self) -> Result<DescribeObjectsInput, BuildError>
pub fn build(self) -> Result<DescribeObjectsInput, BuildError>
Consumes the builder and constructs a DescribeObjectsInput
.
source§impl DescribeObjectsInputBuilder
impl DescribeObjectsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DescribeObjectsOutput, SdkError<DescribeObjectsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DescribeObjectsOutput, SdkError<DescribeObjectsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeObjectsInputBuilder
impl Clone for DescribeObjectsInputBuilder
source§fn clone(&self) -> DescribeObjectsInputBuilder
fn clone(&self) -> DescribeObjectsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeObjectsInputBuilder
impl Debug for DescribeObjectsInputBuilder
source§impl Default for DescribeObjectsInputBuilder
impl Default for DescribeObjectsInputBuilder
source§fn default() -> DescribeObjectsInputBuilder
fn default() -> DescribeObjectsInputBuilder
impl StructuralPartialEq for DescribeObjectsInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeObjectsInputBuilder
impl RefUnwindSafe for DescribeObjectsInputBuilder
impl Send for DescribeObjectsInputBuilder
impl Sync for DescribeObjectsInputBuilder
impl Unpin for DescribeObjectsInputBuilder
impl UnwindSafe for DescribeObjectsInputBuilder
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