#[non_exhaustive]pub struct CreateStreamInputBuilder { /* private fields */ }
Expand description
A builder for CreateStreamInput
.
Implementations§
source§impl CreateStreamInputBuilder
impl CreateStreamInputBuilder
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 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 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 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.
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.
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.
sourcepub fn build(self) -> Result<CreateStreamInput, BuildError>
pub fn build(self) -> Result<CreateStreamInput, BuildError>
Consumes the builder and constructs a CreateStreamInput
.
Trait Implementations§
source§impl Clone for CreateStreamInputBuilder
impl Clone for CreateStreamInputBuilder
source§fn clone(&self) -> CreateStreamInputBuilder
fn clone(&self) -> CreateStreamInputBuilder
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 CreateStreamInputBuilder
impl Debug for CreateStreamInputBuilder
source§impl Default for CreateStreamInputBuilder
impl Default for CreateStreamInputBuilder
source§fn default() -> CreateStreamInputBuilder
fn default() -> CreateStreamInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CreateStreamInputBuilder> for CreateStreamInputBuilder
impl PartialEq<CreateStreamInputBuilder> for CreateStreamInputBuilder
source§fn eq(&self, other: &CreateStreamInputBuilder) -> bool
fn eq(&self, other: &CreateStreamInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateStreamInputBuilder
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more