Struct aws_sdk_greengrass::operation::create_connector_definition_version::CreateConnectorDefinitionVersionOutput
source · #[non_exhaustive]pub struct CreateConnectorDefinitionVersionOutput {
pub arn: Option<String>,
pub creation_timestamp: Option<String>,
pub id: Option<String>,
pub version: 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.arn: Option<String>
The ARN of the version.
creation_timestamp: Option<String>
The time, in milliseconds since the epoch, when the version was created.
id: Option<String>
The ID of the parent definition that the version is associated with.
version: Option<String>
The ID of the version.
Implementations§
source§impl CreateConnectorDefinitionVersionOutput
impl CreateConnectorDefinitionVersionOutput
source§impl CreateConnectorDefinitionVersionOutput
impl CreateConnectorDefinitionVersionOutput
sourcepub fn builder() -> CreateConnectorDefinitionVersionOutputBuilder
pub fn builder() -> CreateConnectorDefinitionVersionOutputBuilder
Creates a new builder-style object to manufacture CreateConnectorDefinitionVersionOutput
.
Trait Implementations§
source§impl Clone for CreateConnectorDefinitionVersionOutput
impl Clone for CreateConnectorDefinitionVersionOutput
source§fn clone(&self) -> CreateConnectorDefinitionVersionOutput
fn clone(&self) -> CreateConnectorDefinitionVersionOutput
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 for CreateConnectorDefinitionVersionOutput
impl PartialEq for CreateConnectorDefinitionVersionOutput
source§fn eq(&self, other: &CreateConnectorDefinitionVersionOutput) -> bool
fn eq(&self, other: &CreateConnectorDefinitionVersionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateConnectorDefinitionVersionOutput
impl RequestId for CreateConnectorDefinitionVersionOutput
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 CreateConnectorDefinitionVersionOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateConnectorDefinitionVersionOutput
impl Send for CreateConnectorDefinitionVersionOutput
impl Sync for CreateConnectorDefinitionVersionOutput
impl Unpin for CreateConnectorDefinitionVersionOutput
impl UnwindSafe for CreateConnectorDefinitionVersionOutput
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.