Struct aws_sdk_iottwinmaker::types::ComponentResponse
source · #[non_exhaustive]pub struct ComponentResponse { /* private fields */ }Expand description
An object that returns information about a component type create or update request.
Implementations§
source§impl ComponentResponse
impl ComponentResponse
sourcepub fn component_name(&self) -> Option<&str>
pub fn component_name(&self) -> Option<&str>
The name of the component.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the component type.
sourcepub fn component_type_id(&self) -> Option<&str>
pub fn component_type_id(&self) -> Option<&str>
The ID of the component type.
sourcepub fn defined_in(&self) -> Option<&str>
pub fn defined_in(&self) -> Option<&str>
The name of the property definition set in the request.
sourcepub fn properties(&self) -> Option<&HashMap<String, PropertyResponse>>
pub fn properties(&self) -> Option<&HashMap<String, PropertyResponse>>
An object that maps strings to the properties to set in the component type. Each string in the mapping must be unique to this object.
sourcepub fn property_groups(
&self
) -> Option<&HashMap<String, ComponentPropertyGroupResponse>>
pub fn property_groups( &self ) -> Option<&HashMap<String, ComponentPropertyGroupResponse>>
The property groups.
sourcepub fn sync_source(&self) -> Option<&str>
pub fn sync_source(&self) -> Option<&str>
The syncSource of the sync job, if this entity was created by a sync job.
source§impl ComponentResponse
impl ComponentResponse
sourcepub fn builder() -> ComponentResponseBuilder
pub fn builder() -> ComponentResponseBuilder
Creates a new builder-style object to manufacture ComponentResponse.
Trait Implementations§
source§impl Clone for ComponentResponse
impl Clone for ComponentResponse
source§fn clone(&self) -> ComponentResponse
fn clone(&self) -> ComponentResponse
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 ComponentResponse
impl Debug for ComponentResponse
source§impl PartialEq<ComponentResponse> for ComponentResponse
impl PartialEq<ComponentResponse> for ComponentResponse
source§fn eq(&self, other: &ComponentResponse) -> bool
fn eq(&self, other: &ComponentResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.