Class: Aws::CodeStar::Types::DeleteProjectRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeStar::Types::DeleteProjectRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codestar/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
A user- or system-generated token that identifies the entity that requested project deletion.
-
#delete_stack ⇒ Boolean
Whether to send a delete request for the primary stack in AWS CloudFormation originally used to generate the project and its resources.
-
#id ⇒ String
The ID of the project to be deleted in AWS CodeStar.
Instance Attribute Details
#client_request_token ⇒ String
A user- or system-generated token that identifies the entity that requested project deletion. This token can be used to repeat the request.
328 329 330 331 332 333 334 |
# File 'lib/aws-sdk-codestar/types.rb', line 328 class DeleteProjectRequest < Struct.new( :id, :client_request_token, :delete_stack) SENSITIVE = [] include Aws::Structure end |
#delete_stack ⇒ Boolean
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.
328 329 330 331 332 333 334 |
# File 'lib/aws-sdk-codestar/types.rb', line 328 class DeleteProjectRequest < Struct.new( :id, :client_request_token, :delete_stack) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID of the project to be deleted in AWS CodeStar.
328 329 330 331 332 333 334 |
# File 'lib/aws-sdk-codestar/types.rb', line 328 class DeleteProjectRequest < Struct.new( :id, :client_request_token, :delete_stack) SENSITIVE = [] include Aws::Structure end |