#[non_exhaustive]pub struct GetPropertyValueInput {
pub component_name: Option<String>,
pub component_path: Option<String>,
pub component_type_id: Option<String>,
pub entity_id: Option<String>,
pub selected_properties: Option<Vec<String>>,
pub workspace_id: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub property_group_name: Option<String>,
pub tabular_conditions: Option<TabularConditions>,
}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.component_name: Option<String>The name of the component whose property values the operation returns.
component_path: Option<String>This string specifies the path to the composite component, starting from the top-level component.
component_type_id: Option<String>The ID of the component type whose property values the operation returns.
entity_id: Option<String>The ID of the entity whose property values the operation returns.
selected_properties: Option<Vec<String>>The properties whose values the operation returns.
workspace_id: Option<String>The ID of the workspace whose values the operation returns.
max_results: Option<i32>The maximum number of results to return at one time. The default is 25.
Valid Range: Minimum value of 1. Maximum value of 250.
next_token: Option<String>The string that specifies the next page of results.
property_group_name: Option<String>The property group name.
tabular_conditions: Option<TabularConditions>The tabular conditions.
Implementations§
source§impl GetPropertyValueInput
impl GetPropertyValueInput
sourcepub fn component_name(&self) -> Option<&str>
pub fn component_name(&self) -> Option<&str>
The name of the component whose property values the operation returns.
sourcepub fn component_path(&self) -> Option<&str>
pub fn component_path(&self) -> Option<&str>
This string specifies the path to the composite component, starting from the top-level component.
sourcepub fn component_type_id(&self) -> Option<&str>
pub fn component_type_id(&self) -> Option<&str>
The ID of the component type whose property values the operation returns.
sourcepub fn entity_id(&self) -> Option<&str>
pub fn entity_id(&self) -> Option<&str>
The ID of the entity whose property values the operation returns.
sourcepub fn selected_properties(&self) -> &[String]
pub fn selected_properties(&self) -> &[String]
The properties whose values the operation returns.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .selected_properties.is_none().
sourcepub fn workspace_id(&self) -> Option<&str>
pub fn workspace_id(&self) -> Option<&str>
The ID of the workspace whose values the operation returns.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return at one time. The default is 25.
Valid Range: Minimum value of 1. Maximum value of 250.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The string that specifies the next page of results.
sourcepub fn property_group_name(&self) -> Option<&str>
pub fn property_group_name(&self) -> Option<&str>
The property group name.
sourcepub fn tabular_conditions(&self) -> Option<&TabularConditions>
pub fn tabular_conditions(&self) -> Option<&TabularConditions>
The tabular conditions.
source§impl GetPropertyValueInput
impl GetPropertyValueInput
sourcepub fn builder() -> GetPropertyValueInputBuilder
pub fn builder() -> GetPropertyValueInputBuilder
Creates a new builder-style object to manufacture GetPropertyValueInput.
Trait Implementations§
source§impl Clone for GetPropertyValueInput
impl Clone for GetPropertyValueInput
source§fn clone(&self) -> GetPropertyValueInput
fn clone(&self) -> GetPropertyValueInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetPropertyValueInput
impl Debug for GetPropertyValueInput
source§impl PartialEq for GetPropertyValueInput
impl PartialEq for GetPropertyValueInput
impl StructuralPartialEq for GetPropertyValueInput
Auto Trait Implementations§
impl Freeze for GetPropertyValueInput
impl RefUnwindSafe for GetPropertyValueInput
impl Send for GetPropertyValueInput
impl Sync for GetPropertyValueInput
impl Unpin for GetPropertyValueInput
impl UnwindSafe for GetPropertyValueInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more