#[non_exhaustive]pub struct RedriveExecutionInput {
pub execution_arn: Option<String>,
pub client_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.execution_arn: Option<String>The Amazon Resource Name (ARN) of the execution to be redriven.
client_token: Option<String>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency. The API will return idempotent responses for the last 10 client tokens used to successfully redrive the execution. These client tokens are valid for up to 15 minutes after they are first used.
Implementations§
source§impl RedriveExecutionInput
impl RedriveExecutionInput
sourcepub fn execution_arn(&self) -> Option<&str>
pub fn execution_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the execution to be redriven.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency. The API will return idempotent responses for the last 10 client tokens used to successfully redrive the execution. These client tokens are valid for up to 15 minutes after they are first used.
source§impl RedriveExecutionInput
impl RedriveExecutionInput
sourcepub fn builder() -> RedriveExecutionInputBuilder
pub fn builder() -> RedriveExecutionInputBuilder
Creates a new builder-style object to manufacture RedriveExecutionInput.
Trait Implementations§
source§impl Clone for RedriveExecutionInput
impl Clone for RedriveExecutionInput
source§fn clone(&self) -> RedriveExecutionInput
fn clone(&self) -> RedriveExecutionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for RedriveExecutionInput
impl Debug for RedriveExecutionInput
source§impl PartialEq for RedriveExecutionInput
impl PartialEq for RedriveExecutionInput
source§fn eq(&self, other: &RedriveExecutionInput) -> bool
fn eq(&self, other: &RedriveExecutionInput) -> bool
self and other values to be equal, and is used
by ==.