pub struct DescribeCommunicationsRequest {
pub after_time: Option<String>,
pub before_time: Option<String>,
pub case_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§after_time: Option<String>The start date for a filtered date search on support case communications. Case communications are available for 12 months after creation.
before_time: Option<String>The end date for a filtered date search on support case communications. Case communications are available for 12 months after creation.
case_id: StringThe AWS Support case ID requested or returned in the call. The case ID is an alphanumeric string formatted as shown in this example: case-12345678910-2013-c4c1d2bf33c5cf47
max_results: Option<i64>The maximum number of results to return before paginating.
next_token: Option<String>A resumption point for pagination.
Trait Implementations§
Source§impl Clone for DescribeCommunicationsRequest
impl Clone for DescribeCommunicationsRequest
Source§fn clone(&self) -> DescribeCommunicationsRequest
fn clone(&self) -> DescribeCommunicationsRequest
Returns a duplicate 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 Default for DescribeCommunicationsRequest
impl Default for DescribeCommunicationsRequest
Source§fn default() -> DescribeCommunicationsRequest
fn default() -> DescribeCommunicationsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeCommunicationsRequest
impl PartialEq for DescribeCommunicationsRequest
Source§fn eq(&self, other: &DescribeCommunicationsRequest) -> bool
fn eq(&self, other: &DescribeCommunicationsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeCommunicationsRequest
Auto Trait Implementations§
impl Freeze for DescribeCommunicationsRequest
impl RefUnwindSafe for DescribeCommunicationsRequest
impl Send for DescribeCommunicationsRequest
impl Sync for DescribeCommunicationsRequest
impl Unpin for DescribeCommunicationsRequest
impl UnwindSafe for DescribeCommunicationsRequest
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