Struct aws_sdk_iot::client::fluent_builders::CreateStream
source · pub struct CreateStream { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateStream
.
Creates a stream for delivering one or more large files in chunks over MQTT. A stream transports data bytes in chunks or blocks packaged as MQTT messages from a source like S3. You can have one or more files associated with a stream.
Requires permission to access the CreateStream action.
Implementations§
source§impl CreateStream
impl CreateStream
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateStream, AwsResponseRetryClassifier>, SdkError<CreateStreamError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateStream, AwsResponseRetryClassifier>, SdkError<CreateStreamError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<CreateStreamOutput, SdkError<CreateStreamError>>
pub async fn send(
self
) -> Result<CreateStreamOutput, SdkError<CreateStreamError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
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.
Trait Implementations§
source§impl Clone for CreateStream
impl Clone for CreateStream
source§fn clone(&self) -> CreateStream
fn clone(&self) -> CreateStream
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more