Struct aws_sdk_ivsrealtime::operation::create_storage_configuration::CreateStorageConfigurationInput
source · #[non_exhaustive]pub struct CreateStorageConfigurationInput {
pub name: Option<String>,
pub s3: Option<S3StorageConfiguration>,
pub tags: Option<HashMap<String, String>>,
}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.name: Option<String>Storage configuration name. The value does not need to be unique.
s3: Option<S3StorageConfiguration>A complex type that contains a storage configuration for where recorded video 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 CreateStorageConfigurationInput
impl CreateStorageConfigurationInput
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
Storage configuration name. The value does not need to be unique.
sourcepub fn s3(&self) -> Option<&S3StorageConfiguration>
pub fn s3(&self) -> Option<&S3StorageConfiguration>
A complex type that contains a storage configuration for where recorded video 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 CreateStorageConfigurationInput
impl CreateStorageConfigurationInput
sourcepub fn builder() -> CreateStorageConfigurationInputBuilder
pub fn builder() -> CreateStorageConfigurationInputBuilder
Creates a new builder-style object to manufacture CreateStorageConfigurationInput.
Trait Implementations§
source§impl Clone for CreateStorageConfigurationInput
impl Clone for CreateStorageConfigurationInput
source§fn clone(&self) -> CreateStorageConfigurationInput
fn clone(&self) -> CreateStorageConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for CreateStorageConfigurationInput
impl PartialEq for CreateStorageConfigurationInput
source§fn eq(&self, other: &CreateStorageConfigurationInput) -> bool
fn eq(&self, other: &CreateStorageConfigurationInput) -> bool
self and other values to be equal, and is used
by ==.