#[non_exhaustive]pub struct UpdateViewContentInput {
pub instance_id: Option<String>,
pub view_id: Option<String>,
pub status: Option<ViewStatus>,
pub content: Option<ViewInputContent>,
}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.instance_id: Option<String>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
view_id: Option<String>The identifier of the view. Both ViewArn and ViewId can be used.
status: Option<ViewStatus>Indicates the view status as either SAVED or PUBLISHED. The PUBLISHED status will initiate validation on the content.
content: Option<ViewInputContent>View content containing all content necessary to render a view except for runtime input data and the runtime input schema, which is auto-generated by this operation.
The total uncompressed content has a maximum file size of 400kB.
Implementations§
source§impl UpdateViewContentInput
impl UpdateViewContentInput
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
sourcepub fn view_id(&self) -> Option<&str>
pub fn view_id(&self) -> Option<&str>
The identifier of the view. Both ViewArn and ViewId can be used.
sourcepub fn status(&self) -> Option<&ViewStatus>
pub fn status(&self) -> Option<&ViewStatus>
Indicates the view status as either SAVED or PUBLISHED. The PUBLISHED status will initiate validation on the content.
sourcepub fn content(&self) -> Option<&ViewInputContent>
pub fn content(&self) -> Option<&ViewInputContent>
View content containing all content necessary to render a view except for runtime input data and the runtime input schema, which is auto-generated by this operation.
The total uncompressed content has a maximum file size of 400kB.
source§impl UpdateViewContentInput
impl UpdateViewContentInput
sourcepub fn builder() -> UpdateViewContentInputBuilder
pub fn builder() -> UpdateViewContentInputBuilder
Creates a new builder-style object to manufacture UpdateViewContentInput.
Trait Implementations§
source§impl Clone for UpdateViewContentInput
impl Clone for UpdateViewContentInput
source§fn clone(&self) -> UpdateViewContentInput
fn clone(&self) -> UpdateViewContentInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateViewContentInput
impl Debug for UpdateViewContentInput
source§impl PartialEq for UpdateViewContentInput
impl PartialEq for UpdateViewContentInput
source§fn eq(&self, other: &UpdateViewContentInput) -> bool
fn eq(&self, other: &UpdateViewContentInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateViewContentInput
Auto Trait Implementations§
impl Freeze for UpdateViewContentInput
impl RefUnwindSafe for UpdateViewContentInput
impl Send for UpdateViewContentInput
impl Sync for UpdateViewContentInput
impl Unpin for UpdateViewContentInput
impl UnwindSafe for UpdateViewContentInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more