#[non_exhaustive]pub struct UpdateChannelInputBuilder { /* private fields */ }
Expand description
A builder for UpdateChannelInput
.
Implementations§
source§impl UpdateChannelInputBuilder
impl UpdateChannelInputBuilder
sourcepub fn channel_name(self, input: impl Into<String>) -> Self
pub fn channel_name(self, input: impl Into<String>) -> Self
The name of the channel to be updated.
This field is required.sourcepub fn set_channel_name(self, input: Option<String>) -> Self
pub fn set_channel_name(self, input: Option<String>) -> Self
The name of the channel to be updated.
sourcepub fn get_channel_name(&self) -> &Option<String>
pub fn get_channel_name(&self) -> &Option<String>
The name of the channel to be updated.
sourcepub fn channel_storage(self, input: ChannelStorage) -> Self
pub fn channel_storage(self, input: ChannelStorage) -> Self
Where channel data is stored. You can choose one of serviceManagedS3
or customerManagedS3
storage. If not specified, the default is serviceManagedS3
. You can't change this storage option after the channel is created.
sourcepub fn set_channel_storage(self, input: Option<ChannelStorage>) -> Self
pub fn set_channel_storage(self, input: Option<ChannelStorage>) -> Self
Where channel data is stored. You can choose one of serviceManagedS3
or customerManagedS3
storage. If not specified, the default is serviceManagedS3
. You can't change this storage option after the channel is created.
sourcepub fn get_channel_storage(&self) -> &Option<ChannelStorage>
pub fn get_channel_storage(&self) -> &Option<ChannelStorage>
Where channel data is stored. You can choose one of serviceManagedS3
or customerManagedS3
storage. If not specified, the default is serviceManagedS3
. You can't change this storage option after the channel is created.
sourcepub fn retention_period(self, input: RetentionPeriod) -> Self
pub fn retention_period(self, input: RetentionPeriod) -> Self
How long, in days, message data is kept for the channel. The retention period can't be updated if the channel's Amazon S3 storage is customer-managed.
sourcepub fn set_retention_period(self, input: Option<RetentionPeriod>) -> Self
pub fn set_retention_period(self, input: Option<RetentionPeriod>) -> Self
How long, in days, message data is kept for the channel. The retention period can't be updated if the channel's Amazon S3 storage is customer-managed.
sourcepub fn get_retention_period(&self) -> &Option<RetentionPeriod>
pub fn get_retention_period(&self) -> &Option<RetentionPeriod>
How long, in days, message data is kept for the channel. The retention period can't be updated if the channel's Amazon S3 storage is customer-managed.
sourcepub fn build(self) -> Result<UpdateChannelInput, BuildError>
pub fn build(self) -> Result<UpdateChannelInput, BuildError>
Consumes the builder and constructs a UpdateChannelInput
.
source§impl UpdateChannelInputBuilder
impl UpdateChannelInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateChannelOutput, SdkError<UpdateChannelError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateChannelOutput, SdkError<UpdateChannelError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateChannelInputBuilder
impl Clone for UpdateChannelInputBuilder
source§fn clone(&self) -> UpdateChannelInputBuilder
fn clone(&self) -> UpdateChannelInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateChannelInputBuilder
impl Debug for UpdateChannelInputBuilder
source§impl Default for UpdateChannelInputBuilder
impl Default for UpdateChannelInputBuilder
source§fn default() -> UpdateChannelInputBuilder
fn default() -> UpdateChannelInputBuilder
source§impl PartialEq for UpdateChannelInputBuilder
impl PartialEq for UpdateChannelInputBuilder
source§fn eq(&self, other: &UpdateChannelInputBuilder) -> bool
fn eq(&self, other: &UpdateChannelInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.