#[non_exhaustive]pub struct CreateStreamInputBuilder { /* private fields */ }
Expand description
A builder for CreateStreamInput
.
Implementations§
source§impl CreateStreamInputBuilder
impl CreateStreamInputBuilder
sourcepub fn stream_id(self, input: impl Into<String>) -> Self
pub fn stream_id(self, input: impl Into<String>) -> Self
The stream ID.
This field is required.sourcepub fn set_stream_id(self, input: Option<String>) -> Self
pub fn set_stream_id(self, input: Option<String>) -> Self
The stream ID.
sourcepub fn get_stream_id(&self) -> &Option<String>
pub fn get_stream_id(&self) -> &Option<String>
The stream ID.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the stream.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the stream.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the stream.
sourcepub fn files(self, input: StreamFile) -> Self
pub fn files(self, input: StreamFile) -> Self
Appends an item to files
.
To override the contents of this collection use set_files
.
The files to stream.
sourcepub fn set_files(self, input: Option<Vec<StreamFile>>) -> Self
pub fn set_files(self, input: Option<Vec<StreamFile>>) -> Self
The files to stream.
sourcepub fn get_files(&self) -> &Option<Vec<StreamFile>>
pub fn get_files(&self) -> &Option<Vec<StreamFile>>
The files to stream.
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
An IAM role that allows the IoT service principal to access your S3 files.
This field is required.sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
An IAM role that allows the IoT service principal to access your S3 files.
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
An IAM role that allows the IoT service principal to access your S3 files.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
Metadata which can be used to manage streams.
Metadata which can be used to manage streams.
Metadata which can be used to manage streams.
sourcepub fn build(self) -> Result<CreateStreamInput, BuildError>
pub fn build(self) -> Result<CreateStreamInput, BuildError>
Consumes the builder and constructs a CreateStreamInput
.
source§impl CreateStreamInputBuilder
impl CreateStreamInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateStreamOutput, SdkError<CreateStreamError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateStreamOutput, SdkError<CreateStreamError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateStreamInputBuilder
impl Clone for CreateStreamInputBuilder
source§fn clone(&self) -> CreateStreamInputBuilder
fn clone(&self) -> CreateStreamInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateStreamInputBuilder
impl Debug for CreateStreamInputBuilder
source§impl Default for CreateStreamInputBuilder
impl Default for CreateStreamInputBuilder
source§fn default() -> CreateStreamInputBuilder
fn default() -> CreateStreamInputBuilder
source§impl PartialEq for CreateStreamInputBuilder
impl PartialEq for CreateStreamInputBuilder
source§fn eq(&self, other: &CreateStreamInputBuilder) -> bool
fn eq(&self, other: &CreateStreamInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateStreamInputBuilder
Auto Trait Implementations§
impl Freeze for CreateStreamInputBuilder
impl RefUnwindSafe for CreateStreamInputBuilder
impl Send for CreateStreamInputBuilder
impl Sync for CreateStreamInputBuilder
impl Unpin for CreateStreamInputBuilder
impl UnwindSafe for CreateStreamInputBuilder
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