#[non_exhaustive]pub struct ListScriptsOutputBuilder { /* private fields */ }
Expand description
A builder for ListScriptsOutput
.
Implementations§
source§impl ListScriptsOutputBuilder
impl ListScriptsOutputBuilder
sourcepub fn scripts(self, input: Script) -> Self
pub fn scripts(self, input: Script) -> Self
Appends an item to scripts
.
To override the contents of this collection use set_scripts
.
A set of properties describing the requested script.
sourcepub fn set_scripts(self, input: Option<Vec<Script>>) -> Self
pub fn set_scripts(self, input: Option<Vec<Script>>) -> Self
A set of properties describing the requested script.
sourcepub fn get_scripts(&self) -> &Option<Vec<Script>>
pub fn get_scripts(&self) -> &Option<Vec<Script>>
A set of properties describing the requested script.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token that indicates where to resume retrieving results on the next call to this operation. If no token is returned, these results represent the end of the list.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token that indicates where to resume retrieving results on the next call to this operation. If no token is returned, these results represent the end of the list.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token that indicates where to resume retrieving results on the next call to this operation. If no token is returned, these results represent the end of the list.
sourcepub fn build(self) -> ListScriptsOutput
pub fn build(self) -> ListScriptsOutput
Consumes the builder and constructs a ListScriptsOutput
.
Trait Implementations§
source§impl Clone for ListScriptsOutputBuilder
impl Clone for ListScriptsOutputBuilder
source§fn clone(&self) -> ListScriptsOutputBuilder
fn clone(&self) -> ListScriptsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListScriptsOutputBuilder
impl Debug for ListScriptsOutputBuilder
source§impl Default for ListScriptsOutputBuilder
impl Default for ListScriptsOutputBuilder
source§fn default() -> ListScriptsOutputBuilder
fn default() -> ListScriptsOutputBuilder
source§impl PartialEq for ListScriptsOutputBuilder
impl PartialEq for ListScriptsOutputBuilder
source§fn eq(&self, other: &ListScriptsOutputBuilder) -> bool
fn eq(&self, other: &ListScriptsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListScriptsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListScriptsOutputBuilder
impl RefUnwindSafe for ListScriptsOutputBuilder
impl Send for ListScriptsOutputBuilder
impl Sync for ListScriptsOutputBuilder
impl Unpin for ListScriptsOutputBuilder
impl UnwindSafe for ListScriptsOutputBuilder
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> 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