Class: Aws::DataZone::Types::DeleteProgress
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::DeleteProgress
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
The progress of a domain deletion, including the number of projects
that Amazon DataZone successfully deleted. Amazon DataZone returns
this structure in the response to a GetDomain request while a
cascade deletion is in progress.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#successfully_deleted_project_count ⇒ Integer
The number of projects that Amazon DataZone successfully deleted during the domain deletion.
Instance Attribute Details
#successfully_deleted_project_count ⇒ Integer
The number of projects that Amazon DataZone successfully deleted during the domain deletion.
7432 7433 7434 7435 7436 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 7432 class DeleteProgress < Struct.new( :successfully_deleted_project_count) SENSITIVE = [] include Aws::Structure end |