Class: Aws::DocDBElastic::Types::Shard
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::DocDBElastic::Types::Shard
 
- Defined in:
- gems/aws-sdk-docdbelastic/lib/aws-sdk-docdbelastic/types.rb
Overview
The name of the shard.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time when the shard was created in Universal Coordinated Time (UTC). 
- 
  
    
      #shard_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the shard. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The current status of the shard. 
Instance Attribute Details
#create_time ⇒ String
The time when the shard was created in Universal Coordinated Time (UTC).
| 1130 1131 1132 1133 1134 1135 1136 | # File 'gems/aws-sdk-docdbelastic/lib/aws-sdk-docdbelastic/types.rb', line 1130 class Shard < Struct.new( :create_time, :shard_id, :status) SENSITIVE = [] include Aws::Structure end |