Class: Aws::PCS::Types::ClusterSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::PCS::Types::ClusterSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pcs/types.rb
Overview
The object returned by the ‘ListClusters` API action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The unique Amazon Resource Name (ARN) of the cluster.
-
#created_at ⇒ Time
The date and time the resource was created.
-
#id ⇒ String
The generated unique ID of the cluster.
-
#modified_at ⇒ Time
The date and time the resource was modified.
-
#name ⇒ String
The name that identifies the cluster.
-
#status ⇒ String
The provisioning status of the cluster.
Instance Attribute Details
#arn ⇒ String
The unique Amazon Resource Name (ARN) of the cluster.
324 325 326 327 328 329 330 331 332 333 |
# File 'lib/aws-sdk-pcs/types.rb', line 324 class ClusterSummary < Struct.new( :name, :id, :arn, :created_at, :modified_at, :status) SENSITIVE = [] include Aws::Structure end |
#created_at ⇒ Time
The date and time the resource was created.
324 325 326 327 328 329 330 331 332 333 |
# File 'lib/aws-sdk-pcs/types.rb', line 324 class ClusterSummary < Struct.new( :name, :id, :arn, :created_at, :modified_at, :status) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The generated unique ID of the cluster.
324 325 326 327 328 329 330 331 332 333 |
# File 'lib/aws-sdk-pcs/types.rb', line 324 class ClusterSummary < Struct.new( :name, :id, :arn, :created_at, :modified_at, :status) SENSITIVE = [] include Aws::Structure end |
#modified_at ⇒ Time
The date and time the resource was modified.
324 325 326 327 328 329 330 331 332 333 |
# File 'lib/aws-sdk-pcs/types.rb', line 324 class ClusterSummary < Struct.new( :name, :id, :arn, :created_at, :modified_at, :status) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name that identifies the cluster.
324 325 326 327 328 329 330 331 332 333 |
# File 'lib/aws-sdk-pcs/types.rb', line 324 class ClusterSummary < Struct.new( :name, :id, :arn, :created_at, :modified_at, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The provisioning status of the cluster.
<note markdown=“1”> The provisioning status doesn’t indicate the overall health of the cluster.
</note>
The resource enters the ‘SUSPENDING` and `SUSPENDED` states when the scheduler is beyond end of life and we have suspended the cluster. When in these states, you can’t use the cluster. The cluster controller is down and all compute instances are terminated. The resources still count toward your service quotas. You can delete a resource if its status is ‘SUSPENDED`. For more information, see
- Frequently asked questions about Slurm versions in PCS][1
-
in the
*PCS User Guide*.
[1]: docs.aws.amazon.com/pcs/latest/userguide/slurm-versions_faq.html
324 325 326 327 328 329 330 331 332 333 |
# File 'lib/aws-sdk-pcs/types.rb', line 324 class ClusterSummary < Struct.new( :name, :id, :arn, :created_at, :modified_at, :status) SENSITIVE = [] include Aws::Structure end |