Struct aws_sdk_iot::types::StreamFile
source · #[non_exhaustive]pub struct StreamFile {
pub file_id: Option<i32>,
pub s3_location: Option<S3Location>,
}
Expand description
Represents a file to stream.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.file_id: Option<i32>
The file ID.
s3_location: Option<S3Location>
The location of the file in S3.
Implementations§
source§impl StreamFile
impl StreamFile
sourcepub fn s3_location(&self) -> Option<&S3Location>
pub fn s3_location(&self) -> Option<&S3Location>
The location of the file in S3.
source§impl StreamFile
impl StreamFile
sourcepub fn builder() -> StreamFileBuilder
pub fn builder() -> StreamFileBuilder
Creates a new builder-style object to manufacture StreamFile
.
Trait Implementations§
source§impl Clone for StreamFile
impl Clone for StreamFile
source§fn clone(&self) -> StreamFile
fn clone(&self) -> StreamFile
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 StreamFile
impl Debug for StreamFile
source§impl PartialEq for StreamFile
impl PartialEq for StreamFile
source§fn eq(&self, other: &StreamFile) -> bool
fn eq(&self, other: &StreamFile) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StreamFile
Auto Trait Implementations§
impl RefUnwindSafe for StreamFile
impl Send for StreamFile
impl Sync for StreamFile
impl Unpin for StreamFile
impl UnwindSafe for StreamFile
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