#[non_exhaustive]pub struct DeleteProjectInput {
pub project_name: 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.project_name: Option<String>The name of the project to delete.
client_token: Option<String>ClientToken is an idempotency token that ensures a call to DeleteProject completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from DeleteProject. In this case, safely retry your call to DeleteProject by using the same ClientToken parameter value.
If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple project deletion requests. You'll need to provide your own value for other use cases.
An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to DeleteProject. An idempotency token is active for 8 hours.
Implementations§
source§impl DeleteProjectInput
impl DeleteProjectInput
sourcepub fn project_name(&self) -> Option<&str>
pub fn project_name(&self) -> Option<&str>
The name of the project to delete.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
ClientToken is an idempotency token that ensures a call to DeleteProject completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from DeleteProject. In this case, safely retry your call to DeleteProject by using the same ClientToken parameter value.
If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple project deletion requests. You'll need to provide your own value for other use cases.
An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to DeleteProject. An idempotency token is active for 8 hours.
source§impl DeleteProjectInput
impl DeleteProjectInput
sourcepub fn builder() -> DeleteProjectInputBuilder
pub fn builder() -> DeleteProjectInputBuilder
Creates a new builder-style object to manufacture DeleteProjectInput.
Trait Implementations§
source§impl Clone for DeleteProjectInput
impl Clone for DeleteProjectInput
source§fn clone(&self) -> DeleteProjectInput
fn clone(&self) -> DeleteProjectInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteProjectInput
impl Debug for DeleteProjectInput
source§impl PartialEq for DeleteProjectInput
impl PartialEq for DeleteProjectInput
source§fn eq(&self, other: &DeleteProjectInput) -> bool
fn eq(&self, other: &DeleteProjectInput) -> bool
self and other values to be equal, and is used
by ==.