#[non_exhaustive]pub struct InvokeScreenAutomationInput {
pub workbook_id: Option<String>,
pub app_id: Option<String>,
pub screen_id: Option<String>,
pub screen_automation_id: Option<String>,
pub variables: Option<HashMap<String, VariableValue>>,
pub row_id: Option<String>,
pub client_request_token: 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.workbook_id: Option<String>
The ID of the workbook that contains the screen automation.
app_id: Option<String>
The ID of the app that contains the screen automation.
screen_id: Option<String>
The ID of the screen that contains the screen automation.
screen_automation_id: Option<String>
The ID of the automation action to be performed.
variables: Option<HashMap<String, VariableValue>>
Variables are specified as a map where the key is the name of the variable as defined on the screen. The value is an object which currently has only one property, rawValue, which holds the value of the variable to be passed to the screen. Any variables defined in a screen are required to be passed in the call.
row_id: Option<String>
The row ID for the automation if the automation is defined inside a block with source or list.
client_request_token: Option<String>
The request token for performing the automation action. Request tokens help to identify duplicate requests. If a call times out or fails due to a transient error like a failed network connection, you can retry the call with the same request token. The service ensures that if the first call using that request token is successfully performed, the second call will return the response of the previous call rather than performing the action again.
Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests spanning hours or days.
Implementations
sourceimpl InvokeScreenAutomationInput
impl InvokeScreenAutomationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<InvokeScreenAutomation, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<InvokeScreenAutomation, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<InvokeScreenAutomation
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InvokeScreenAutomationInput
sourceimpl InvokeScreenAutomationInput
impl InvokeScreenAutomationInput
sourcepub fn workbook_id(&self) -> Option<&str>
pub fn workbook_id(&self) -> Option<&str>
The ID of the workbook that contains the screen automation.
sourcepub fn screen_id(&self) -> Option<&str>
pub fn screen_id(&self) -> Option<&str>
The ID of the screen that contains the screen automation.
sourcepub fn screen_automation_id(&self) -> Option<&str>
pub fn screen_automation_id(&self) -> Option<&str>
The ID of the automation action to be performed.
sourcepub fn variables(&self) -> Option<&HashMap<String, VariableValue>>
pub fn variables(&self) -> Option<&HashMap<String, VariableValue>>
Variables are specified as a map where the key is the name of the variable as defined on the screen. The value is an object which currently has only one property, rawValue, which holds the value of the variable to be passed to the screen. Any variables defined in a screen are required to be passed in the call.
sourcepub fn row_id(&self) -> Option<&str>
pub fn row_id(&self) -> Option<&str>
The row ID for the automation if the automation is defined inside a block with source or list.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
The request token for performing the automation action. Request tokens help to identify duplicate requests. If a call times out or fails due to a transient error like a failed network connection, you can retry the call with the same request token. The service ensures that if the first call using that request token is successfully performed, the second call will return the response of the previous call rather than performing the action again.
Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests spanning hours or days.
Trait Implementations
sourceimpl Clone for InvokeScreenAutomationInput
impl Clone for InvokeScreenAutomationInput
sourcefn clone(&self) -> InvokeScreenAutomationInput
fn clone(&self) -> InvokeScreenAutomationInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for InvokeScreenAutomationInput
impl Debug for InvokeScreenAutomationInput
sourceimpl PartialEq<InvokeScreenAutomationInput> for InvokeScreenAutomationInput
impl PartialEq<InvokeScreenAutomationInput> for InvokeScreenAutomationInput
sourcefn eq(&self, other: &InvokeScreenAutomationInput) -> bool
fn eq(&self, other: &InvokeScreenAutomationInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &InvokeScreenAutomationInput) -> bool
fn ne(&self, other: &InvokeScreenAutomationInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for InvokeScreenAutomationInput
Auto Trait Implementations
impl RefUnwindSafe for InvokeScreenAutomationInput
impl Send for InvokeScreenAutomationInput
impl Sync for InvokeScreenAutomationInput
impl Unpin for InvokeScreenAutomationInput
impl UnwindSafe for InvokeScreenAutomationInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more