pub struct DescribeObjectsInput {
pub evaluate_expressions: Option<bool>,
pub marker: Option<String>,
pub object_ids: Vec<String>,
pub pipeline_id: String,
}
Expand description
Contains the parameters for DescribeObjects.
Fields§
§evaluate_expressions: Option<bool>
Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.
marker: 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.
object_ids: 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
.
pipeline_id: String
The ID of the pipeline that contains the object definitions.
Trait Implementations§
Source§impl Clone for DescribeObjectsInput
impl Clone for DescribeObjectsInput
Source§fn clone(&self) -> DescribeObjectsInput
fn clone(&self) -> DescribeObjectsInput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DescribeObjectsInput
impl Debug for DescribeObjectsInput
Source§impl Default for DescribeObjectsInput
impl Default for DescribeObjectsInput
Source§fn default() -> DescribeObjectsInput
fn default() -> DescribeObjectsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeObjectsInput
impl PartialEq for DescribeObjectsInput
Source§impl Serialize for DescribeObjectsInput
impl Serialize for DescribeObjectsInput
impl StructuralPartialEq for DescribeObjectsInput
Auto Trait Implementations§
impl Freeze for DescribeObjectsInput
impl RefUnwindSafe for DescribeObjectsInput
impl Send for DescribeObjectsInput
impl Sync for DescribeObjectsInput
impl Unpin for DescribeObjectsInput
impl UnwindSafe for DescribeObjectsInput
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