Struct aws_sdk_iotwireless::operation::put_position_configuration::PutPositionConfigurationInput
source · #[non_exhaustive]pub struct PutPositionConfigurationInput {
pub resource_identifier: Option<String>,
pub resource_type: Option<PositionResourceType>,
pub solvers: Option<PositionSolverConfigurations>,
pub destination: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.resource_identifier: Option<String>Resource identifier used to update the position configuration.
resource_type: Option<PositionResourceType>Resource type of the resource for which you want to update the position configuration.
solvers: Option<PositionSolverConfigurations>The positioning solvers used to update the position configuration of the resource.
destination: Option<String>The position data destination that describes the AWS IoT rule that processes the device's position data for use by AWS IoT Core for LoRaWAN.
Implementations§
source§impl PutPositionConfigurationInput
impl PutPositionConfigurationInput
sourcepub fn resource_identifier(&self) -> Option<&str>
pub fn resource_identifier(&self) -> Option<&str>
Resource identifier used to update the position configuration.
sourcepub fn resource_type(&self) -> Option<&PositionResourceType>
pub fn resource_type(&self) -> Option<&PositionResourceType>
Resource type of the resource for which you want to update the position configuration.
sourcepub fn solvers(&self) -> Option<&PositionSolverConfigurations>
pub fn solvers(&self) -> Option<&PositionSolverConfigurations>
The positioning solvers used to update the position configuration of the resource.
sourcepub fn destination(&self) -> Option<&str>
pub fn destination(&self) -> Option<&str>
The position data destination that describes the AWS IoT rule that processes the device's position data for use by AWS IoT Core for LoRaWAN.
source§impl PutPositionConfigurationInput
impl PutPositionConfigurationInput
sourcepub fn builder() -> PutPositionConfigurationInputBuilder
pub fn builder() -> PutPositionConfigurationInputBuilder
Creates a new builder-style object to manufacture PutPositionConfigurationInput.
Trait Implementations§
source§impl Clone for PutPositionConfigurationInput
impl Clone for PutPositionConfigurationInput
source§fn clone(&self) -> PutPositionConfigurationInput
fn clone(&self) -> PutPositionConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for PutPositionConfigurationInput
impl PartialEq for PutPositionConfigurationInput
source§fn eq(&self, other: &PutPositionConfigurationInput) -> bool
fn eq(&self, other: &PutPositionConfigurationInput) -> bool
self and other values to be equal, and is used
by ==.