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
source§impl PartialEq for DescribeObjectsInputBuilder
impl PartialEq for DescribeObjectsInputBuilder
source§fn eq(&self, other: &DescribeObjectsInputBuilder) -> bool
fn eq(&self, other: &DescribeObjectsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.