Struct aws_sdk_iot::input::update_stream_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateStreamInput
.
Implementations§
source§impl Builder
impl Builder
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
.