Struct aws_sdk_datapipeline::operation::describe_objects::builders::DescribeObjectsFluentBuilder
source · pub struct DescribeObjectsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DescribeObjects
.
Gets the object definitions for a set of objects associated with the pipeline. Object definitions are composed of a set of fields that define the properties of the object.
Implementations§
source§impl DescribeObjectsFluentBuilder
impl DescribeObjectsFluentBuilder
sourcepub fn as_input(&self) -> &DescribeObjectsInputBuilder
pub fn as_input(&self) -> &DescribeObjectsInputBuilder
Access the DescribeObjects as a reference.
sourcepub async fn send(
self
) -> Result<DescribeObjectsOutput, SdkError<DescribeObjectsError, HttpResponse>>
pub async fn send( self ) -> Result<DescribeObjectsOutput, SdkError<DescribeObjectsError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<DescribeObjectsOutput, DescribeObjectsError, Self>
pub fn customize( self ) -> CustomizableOperation<DescribeObjectsOutput, DescribeObjectsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn into_paginator(self) -> DescribeObjectsPaginator
pub fn into_paginator(self) -> DescribeObjectsPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a PaginationStream
.
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.
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 objectIds
.
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.
Trait Implementations§
source§impl Clone for DescribeObjectsFluentBuilder
impl Clone for DescribeObjectsFluentBuilder
source§fn clone(&self) -> DescribeObjectsFluentBuilder
fn clone(&self) -> DescribeObjectsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more