#[non_exhaustive]pub struct GetPropertyValueInput {
pub component_name: 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_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_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
source§fn eq(&self, other: &GetPropertyValueInput) -> bool
fn eq(&self, other: &GetPropertyValueInput) -> bool
self and other values to be equal, and is used
by ==.