Struct aws_sdk_codestar::input::delete_project_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for DeleteProjectInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
The ID of the project to be deleted in AWS CodeStar.
sourcepub fn set_id(self, input: Option<String>) -> Self
pub fn set_id(self, input: Option<String>) -> Self
The ID of the project to be deleted in AWS CodeStar.
sourcepub fn client_request_token(self, input: impl Into<String>) -> Self
pub fn client_request_token(self, input: impl Into<String>) -> Self
A user- or system-generated token that identifies the entity that requested project deletion. This token can be used to repeat the request.
sourcepub fn set_client_request_token(self, input: Option<String>) -> Self
pub fn set_client_request_token(self, input: Option<String>) -> Self
A user- or system-generated token that identifies the entity that requested project deletion. This token can be used to repeat the request.
sourcepub fn delete_stack(self, input: bool) -> Self
pub fn delete_stack(self, input: bool) -> Self
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.
sourcepub fn set_delete_stack(self, input: Option<bool>) -> Self
pub fn set_delete_stack(self, input: Option<bool>) -> Self
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.
sourcepub fn build(self) -> Result<DeleteProjectInput, BuildError>
pub fn build(self) -> Result<DeleteProjectInput, BuildError>
Consumes the builder and constructs a DeleteProjectInput
.