Struct aws_sdk_honeycode::input::InvokeScreenAutomationInput [−][src]
#[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
pub 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
>
Creates a new builder-style object to manufacture InvokeScreenAutomationInput
The ID of the workbook that contains the screen automation.
The ID of the screen that contains the screen automation.
The ID of the automation action to be performed.
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.
The row ID for the automation if the automation is defined inside a block with source or list.
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more