#[non_exhaustive]pub struct InvokeScreenAutomationInput { /* private fields */ }
Implementations
sourceimpl InvokeScreenAutomationInput
impl InvokeScreenAutomationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<InvokeScreenAutomation, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<InvokeScreenAutomation, AwsResponseRetryClassifier>, 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
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more