#[non_exhaustive]pub struct UpdateStreamInputBuilder { /* private fields */ }
Expand description
A builder for UpdateStreamInput
.
Implementations§
source§impl UpdateStreamInputBuilder
impl UpdateStreamInputBuilder
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
The description of the stream.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The 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 associated with the stream.
sourcepub fn set_files(self, input: Option<Vec<StreamFile>>) -> Self
pub fn set_files(self, input: Option<Vec<StreamFile>>) -> Self
The files associated with the 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 assumes 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 assumes to access your S3 files.
sourcepub fn build(self) -> Result<UpdateStreamInput, BuildError>
pub fn build(self) -> Result<UpdateStreamInput, BuildError>
Consumes the builder and constructs a UpdateStreamInput
.
Trait Implementations§
source§impl Clone for UpdateStreamInputBuilder
impl Clone for UpdateStreamInputBuilder
source§fn clone(&self) -> UpdateStreamInputBuilder
fn clone(&self) -> UpdateStreamInputBuilder
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 UpdateStreamInputBuilder
impl Debug for UpdateStreamInputBuilder
source§impl Default for UpdateStreamInputBuilder
impl Default for UpdateStreamInputBuilder
source§fn default() -> UpdateStreamInputBuilder
fn default() -> UpdateStreamInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdateStreamInputBuilder> for UpdateStreamInputBuilder
impl PartialEq<UpdateStreamInputBuilder> for UpdateStreamInputBuilder
source§fn eq(&self, other: &UpdateStreamInputBuilder) -> bool
fn eq(&self, other: &UpdateStreamInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.