#[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 ==
.