Struct aws_sdk_ivsrealtime::types::StorageConfiguration
source · #[non_exhaustive]pub struct StorageConfiguration {
pub arn: String,
pub name: Option<String>,
pub s3: Option<S3StorageConfiguration>,
pub tags: Option<HashMap<String, String>>,
}Expand description
A complex type that describes a location where recorded videos will be stored.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.arn: StringARN of the storage configuration.
name: Option<String>Name of the storage configuration.
s3: Option<S3StorageConfiguration>An S3 destination configuration where recorded videos will be stored.
Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
Implementations§
source§impl StorageConfiguration
impl StorageConfiguration
sourcepub fn s3(&self) -> Option<&S3StorageConfiguration>
pub fn s3(&self) -> Option<&S3StorageConfiguration>
An S3 destination configuration where recorded videos will be stored.
Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
source§impl StorageConfiguration
impl StorageConfiguration
sourcepub fn builder() -> StorageConfigurationBuilder
pub fn builder() -> StorageConfigurationBuilder
Creates a new builder-style object to manufacture StorageConfiguration.
Trait Implementations§
source§impl Clone for StorageConfiguration
impl Clone for StorageConfiguration
source§fn clone(&self) -> StorageConfiguration
fn clone(&self) -> StorageConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StorageConfiguration
impl Debug for StorageConfiguration
source§impl PartialEq for StorageConfiguration
impl PartialEq for StorageConfiguration
source§fn eq(&self, other: &StorageConfiguration) -> bool
fn eq(&self, other: &StorageConfiguration) -> bool
self and other values to be equal, and is used
by ==.