#[non_exhaustive]pub struct StartContactRecordingInput {
pub instance_id: Option<String>,
pub contact_id: Option<String>,
pub initial_contact_id: Option<String>,
pub voice_recording_configuration: Option<VoiceRecordingConfiguration>,
}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.instance_id: Option<String>The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
contact_id: Option<String>The identifier of the contact.
initial_contact_id: Option<String>The identifier of the contact. This is the identifier of the contact associated with the first interaction with the contact center.
voice_recording_configuration: Option<VoiceRecordingConfiguration>The person being recorded.
Implementations§
source§impl StartContactRecordingInput
impl StartContactRecordingInput
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 instance ID in the Amazon Resource Name (ARN) of the instance.
sourcepub fn contact_id(&self) -> Option<&str>
pub fn contact_id(&self) -> Option<&str>
The identifier of the contact.
sourcepub fn initial_contact_id(&self) -> Option<&str>
pub fn initial_contact_id(&self) -> Option<&str>
The identifier of the contact. This is the identifier of the contact associated with the first interaction with the contact center.
sourcepub fn voice_recording_configuration(
&self
) -> Option<&VoiceRecordingConfiguration>
pub fn voice_recording_configuration( &self ) -> Option<&VoiceRecordingConfiguration>
The person being recorded.
source§impl StartContactRecordingInput
impl StartContactRecordingInput
sourcepub fn builder() -> StartContactRecordingInputBuilder
pub fn builder() -> StartContactRecordingInputBuilder
Creates a new builder-style object to manufacture StartContactRecordingInput.
Trait Implementations§
source§impl Clone for StartContactRecordingInput
impl Clone for StartContactRecordingInput
source§fn clone(&self) -> StartContactRecordingInput
fn clone(&self) -> StartContactRecordingInput
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 StartContactRecordingInput
impl Debug for StartContactRecordingInput
source§impl PartialEq for StartContactRecordingInput
impl PartialEq for StartContactRecordingInput
source§fn eq(&self, other: &StartContactRecordingInput) -> bool
fn eq(&self, other: &StartContactRecordingInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StartContactRecordingInput
Auto Trait Implementations§
impl RefUnwindSafe for StartContactRecordingInput
impl Send for StartContactRecordingInput
impl Sync for StartContactRecordingInput
impl Unpin for StartContactRecordingInput
impl UnwindSafe for StartContactRecordingInput
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
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>
Creates a shared type from an unshared type.