Struct aws_sdk_apigateway::operation::create_documentation_version::CreateDocumentationVersionOutput
source · #[non_exhaustive]pub struct CreateDocumentationVersionOutput {
pub version: Option<String>,
pub created_date: Option<DateTime>,
pub description: Option<String>,
/* private fields */
}
Expand description
A snapshot of the documentation of an API.
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.version: Option<String>
The version identifier of the API documentation snapshot.
created_date: Option<DateTime>
The date when the API documentation snapshot is created.
description: Option<String>
The description of the API documentation snapshot.
Implementations§
source§impl CreateDocumentationVersionOutput
impl CreateDocumentationVersionOutput
sourcepub fn version(&self) -> Option<&str>
pub fn version(&self) -> Option<&str>
The version identifier of the API documentation snapshot.
sourcepub fn created_date(&self) -> Option<&DateTime>
pub fn created_date(&self) -> Option<&DateTime>
The date when the API documentation snapshot is created.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the API documentation snapshot.
source§impl CreateDocumentationVersionOutput
impl CreateDocumentationVersionOutput
sourcepub fn builder() -> CreateDocumentationVersionOutputBuilder
pub fn builder() -> CreateDocumentationVersionOutputBuilder
Creates a new builder-style object to manufacture CreateDocumentationVersionOutput
.
Trait Implementations§
source§impl Clone for CreateDocumentationVersionOutput
impl Clone for CreateDocumentationVersionOutput
source§fn clone(&self) -> CreateDocumentationVersionOutput
fn clone(&self) -> CreateDocumentationVersionOutput
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 PartialEq<CreateDocumentationVersionOutput> for CreateDocumentationVersionOutput
impl PartialEq<CreateDocumentationVersionOutput> for CreateDocumentationVersionOutput
source§fn eq(&self, other: &CreateDocumentationVersionOutput) -> bool
fn eq(&self, other: &CreateDocumentationVersionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateDocumentationVersionOutput
impl RequestId for CreateDocumentationVersionOutput
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 CreateDocumentationVersionOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateDocumentationVersionOutput
impl Send for CreateDocumentationVersionOutput
impl Sync for CreateDocumentationVersionOutput
impl Unpin for CreateDocumentationVersionOutput
impl UnwindSafe for CreateDocumentationVersionOutput
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