#[non_exhaustive]pub struct CreateRefreshScheduleOutput {
    pub status: i32,
    pub request_id: Option<String>,
    pub schedule_id: Option<String>,
    pub arn: Option<String>,
    /* private fields */
}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.status: i32The HTTP status of the request.
request_id: Option<String>The Amazon Web Services request ID for this operation.
schedule_id: Option<String>The ID of the refresh schedule.
arn: Option<String>The Amazon Resource Name (ARN) for the refresh schedule.
Implementations§
source§impl CreateRefreshScheduleOutput
 
impl CreateRefreshScheduleOutput
sourcepub fn request_id(&self) -> Option<&str>
 
pub fn request_id(&self) -> Option<&str>
The Amazon Web Services request ID for this operation.
sourcepub fn schedule_id(&self) -> Option<&str>
 
pub fn schedule_id(&self) -> Option<&str>
The ID of the refresh schedule.
source§impl CreateRefreshScheduleOutput
 
impl CreateRefreshScheduleOutput
sourcepub fn builder() -> CreateRefreshScheduleOutputBuilder
 
pub fn builder() -> CreateRefreshScheduleOutputBuilder
Creates a new builder-style object to manufacture CreateRefreshScheduleOutput.
Trait Implementations§
source§impl Clone for CreateRefreshScheduleOutput
 
impl Clone for CreateRefreshScheduleOutput
source§fn clone(&self) -> CreateRefreshScheduleOutput
 
fn clone(&self) -> CreateRefreshScheduleOutput
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 CreateRefreshScheduleOutput
 
impl Debug for CreateRefreshScheduleOutput
source§impl PartialEq for CreateRefreshScheduleOutput
 
impl PartialEq for CreateRefreshScheduleOutput
source§fn eq(&self, other: &CreateRefreshScheduleOutput) -> bool
 
fn eq(&self, other: &CreateRefreshScheduleOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateRefreshScheduleOutput
 
impl RequestId for CreateRefreshScheduleOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
Returns the request ID, or 
None if the service could not be reached.impl StructuralPartialEq for CreateRefreshScheduleOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateRefreshScheduleOutput
impl Send for CreateRefreshScheduleOutput
impl Sync for CreateRefreshScheduleOutput
impl Unpin for CreateRefreshScheduleOutput
impl UnwindSafe for CreateRefreshScheduleOutput
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