#[non_exhaustive]pub struct DeletePermissionOutputBuilder { /* private fields */ }Expand description
A builder for DeletePermissionOutput.
Implementations§
source§impl DeletePermissionOutputBuilder
impl DeletePermissionOutputBuilder
sourcepub fn return_value(self, input: bool) -> Self
pub fn return_value(self, input: bool) -> Self
A boolean that indicates whether the delete operations succeeded.
sourcepub fn set_return_value(self, input: Option<bool>) -> Self
pub fn set_return_value(self, input: Option<bool>) -> Self
A boolean that indicates whether the delete operations succeeded.
sourcepub fn get_return_value(&self) -> &Option<bool>
pub fn get_return_value(&self) -> &Option<bool>
A boolean that indicates whether the delete operations succeeded.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
The idempotency identifier associated with this request. If you want to repeat the same operation in an idempotent manner then you must include this value in the clientToken request parameter of that later call. All other parameters must also have the same values that you used in the first call.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
The idempotency identifier associated with this request. If you want to repeat the same operation in an idempotent manner then you must include this value in the clientToken request parameter of that later call. All other parameters must also have the same values that you used in the first call.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
The idempotency identifier associated with this request. If you want to repeat the same operation in an idempotent manner then you must include this value in the clientToken request parameter of that later call. All other parameters must also have the same values that you used in the first call.
sourcepub fn permission_status(self, input: PermissionStatus) -> Self
pub fn permission_status(self, input: PermissionStatus) -> Self
This operation is performed asynchronously, and this response parameter indicates the current status.
sourcepub fn set_permission_status(self, input: Option<PermissionStatus>) -> Self
pub fn set_permission_status(self, input: Option<PermissionStatus>) -> Self
This operation is performed asynchronously, and this response parameter indicates the current status.
sourcepub fn get_permission_status(&self) -> &Option<PermissionStatus>
pub fn get_permission_status(&self) -> &Option<PermissionStatus>
This operation is performed asynchronously, and this response parameter indicates the current status.
sourcepub fn build(self) -> DeletePermissionOutput
pub fn build(self) -> DeletePermissionOutput
Consumes the builder and constructs a DeletePermissionOutput.
Trait Implementations§
source§impl Clone for DeletePermissionOutputBuilder
impl Clone for DeletePermissionOutputBuilder
source§fn clone(&self) -> DeletePermissionOutputBuilder
fn clone(&self) -> DeletePermissionOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DeletePermissionOutputBuilder
impl Default for DeletePermissionOutputBuilder
source§fn default() -> DeletePermissionOutputBuilder
fn default() -> DeletePermissionOutputBuilder
source§impl PartialEq for DeletePermissionOutputBuilder
impl PartialEq for DeletePermissionOutputBuilder
source§fn eq(&self, other: &DeletePermissionOutputBuilder) -> bool
fn eq(&self, other: &DeletePermissionOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.