pub struct DeleteProjectRequest {
pub client_request_token: Option<String>,
pub delete_stack: Option<bool>,
pub id: String,
}
Fields§
§client_request_token: Option<String>
A user- or system-generated token that identifies the entity that requested project deletion. This token can be used to repeat the request.
delete_stack: Option<bool>
Whether to send a delete request for the primary stack in AWS CloudFormation originally used to generate the project and its resources. This option will delete all AWS resources for the project (except for any buckets in Amazon S3) as well as deleting the project itself. Recommended for most use cases.
id: String
The ID of the project to be deleted in AWS CodeStar.
Trait Implementations§
Source§impl Clone for DeleteProjectRequest
impl Clone for DeleteProjectRequest
Source§fn clone(&self) -> DeleteProjectRequest
fn clone(&self) -> DeleteProjectRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeleteProjectRequest
impl Debug for DeleteProjectRequest
Source§impl Default for DeleteProjectRequest
impl Default for DeleteProjectRequest
Source§fn default() -> DeleteProjectRequest
fn default() -> DeleteProjectRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteProjectRequest
impl PartialEq for DeleteProjectRequest
Source§impl Serialize for DeleteProjectRequest
impl Serialize for DeleteProjectRequest
impl StructuralPartialEq for DeleteProjectRequest
Auto Trait Implementations§
impl Freeze for DeleteProjectRequest
impl RefUnwindSafe for DeleteProjectRequest
impl Send for DeleteProjectRequest
impl Sync for DeleteProjectRequest
impl Unpin for DeleteProjectRequest
impl UnwindSafe for DeleteProjectRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more