Class: Humidifier::Cassandra::Table
- Defined in:
 - lib/humidifier/magic.rb
 
Overview
A dynamically-defined class that represents an AWS::Cassandra::Table resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
- 
  
    
      #billing_mode  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
returns the BillingMode property.
 - 
  
    
      #billing_mode=(value)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
sets the BillingMode property (Structure).
 - 
  
    
      #clustering_key_columns  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
returns the ClusteringKeyColumns property.
 - 
  
    
      #clustering_key_columns=(value)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
sets the ClusteringKeyColumns property (List).
 - 
  
    
      #default_time_to_live  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
returns the DefaultTimeToLive property.
 - 
  
    
      #default_time_to_live=(value)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
sets the DefaultTimeToLive property (Integer).
 - 
  
    
      #encryption_specification  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
returns the EncryptionSpecification property.
 - 
  
    
      #encryption_specification=(value)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
sets the EncryptionSpecification property (Structure).
 - 
  
    
      #keyspace_name  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
returns the KeyspaceName property.
 - 
  
    
      #keyspace_name=(value)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
sets the KeyspaceName property (String).
 - 
  
    
      #partition_key_columns  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
returns the PartitionKeyColumns property.
 - 
  
    
      #partition_key_columns=(value)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
sets the PartitionKeyColumns property (List).
 - 
  
    
      #point_in_time_recovery_enabled  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
returns the PointInTimeRecoveryEnabled property.
 - 
  
    
      #point_in_time_recovery_enabled=(value)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
sets the PointInTimeRecoveryEnabled property (Boolean).
 - 
  
    
      #regular_columns  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
returns the RegularColumns property.
 - 
  
    
      #regular_columns=(value)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
sets the RegularColumns property (List).
 - 
  
    
      #table_name  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
returns the TableName property.
 - 
  
    
      #table_name=(value)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
sets the TableName property (String).
 - 
  
    
      #tags  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
returns the Tags property.
 - 
  
    
      #tags=(value)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
sets the Tags property (List).
 
Methods inherited from Resource
#initialize, #method_missing, prop?, #respond_to_missing?, #to_cf, #update, #update_attributes, #update_property
Constructor Details
This class inherits a constructor from Humidifier::Resource
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Humidifier::Resource
Instance Method Details
#billing_mode ⇒ Object
returns the BillingMode property
      10 11 12  | 
    
      # File 'lib/humidifier/magic.rb', line 10 def billing_mode properties['billing_mode'] end  | 
  
#billing_mode=(value) ⇒ Object
sets the BillingMode property (Structure)
      15 16 17  | 
    
      # File 'lib/humidifier/magic.rb', line 15 def billing_mode=(value) update_property('billing_mode', value) end  | 
  
#clustering_key_columns ⇒ Object
returns the ClusteringKeyColumns property
      20 21 22  | 
    
      # File 'lib/humidifier/magic.rb', line 20 def clustering_key_columns properties['clustering_key_columns'] end  | 
  
#clustering_key_columns=(value) ⇒ Object
sets the ClusteringKeyColumns property (List)
      25 26 27  | 
    
      # File 'lib/humidifier/magic.rb', line 25 def clustering_key_columns=(value) update_property('clustering_key_columns', value) end  | 
  
#default_time_to_live ⇒ Object
returns the DefaultTimeToLive property
      30 31 32  | 
    
      # File 'lib/humidifier/magic.rb', line 30 def default_time_to_live properties['default_time_to_live'] end  | 
  
#default_time_to_live=(value) ⇒ Object
sets the DefaultTimeToLive property (Integer)
      35 36 37  | 
    
      # File 'lib/humidifier/magic.rb', line 35 def default_time_to_live=(value) update_property('default_time_to_live', value) end  | 
  
#encryption_specification ⇒ Object
returns the EncryptionSpecification property
      40 41 42  | 
    
      # File 'lib/humidifier/magic.rb', line 40 def encryption_specification properties['encryption_specification'] end  | 
  
#encryption_specification=(value) ⇒ Object
sets the EncryptionSpecification property (Structure)
      45 46 47  | 
    
      # File 'lib/humidifier/magic.rb', line 45 def encryption_specification=(value) update_property('encryption_specification', value) end  | 
  
#keyspace_name ⇒ Object
returns the KeyspaceName property
      50 51 52  | 
    
      # File 'lib/humidifier/magic.rb', line 50 def keyspace_name properties['keyspace_name'] end  | 
  
#keyspace_name=(value) ⇒ Object
sets the KeyspaceName property (String)
      55 56 57  | 
    
      # File 'lib/humidifier/magic.rb', line 55 def keyspace_name=(value) update_property('keyspace_name', value) end  | 
  
#partition_key_columns ⇒ Object
returns the PartitionKeyColumns property
      60 61 62  | 
    
      # File 'lib/humidifier/magic.rb', line 60 def partition_key_columns properties['partition_key_columns'] end  | 
  
#partition_key_columns=(value) ⇒ Object
sets the PartitionKeyColumns property (List)
      65 66 67  | 
    
      # File 'lib/humidifier/magic.rb', line 65 def partition_key_columns=(value) update_property('partition_key_columns', value) end  | 
  
#point_in_time_recovery_enabled ⇒ Object
returns the PointInTimeRecoveryEnabled property
      70 71 72  | 
    
      # File 'lib/humidifier/magic.rb', line 70 def point_in_time_recovery_enabled properties['point_in_time_recovery_enabled'] end  | 
  
#point_in_time_recovery_enabled=(value) ⇒ Object
sets the PointInTimeRecoveryEnabled property (Boolean)
      75 76 77  | 
    
      # File 'lib/humidifier/magic.rb', line 75 def point_in_time_recovery_enabled=(value) update_property('point_in_time_recovery_enabled', value) end  | 
  
#regular_columns ⇒ Object
returns the RegularColumns property
      80 81 82  | 
    
      # File 'lib/humidifier/magic.rb', line 80 def regular_columns properties['regular_columns'] end  | 
  
#regular_columns=(value) ⇒ Object
sets the RegularColumns property (List)
      85 86 87  | 
    
      # File 'lib/humidifier/magic.rb', line 85 def regular_columns=(value) update_property('regular_columns', value) end  | 
  
#table_name ⇒ Object
returns the TableName property
      90 91 92  | 
    
      # File 'lib/humidifier/magic.rb', line 90 def table_name properties['table_name'] end  | 
  
#table_name=(value) ⇒ Object
sets the TableName property (String)
      95 96 97  | 
    
      # File 'lib/humidifier/magic.rb', line 95 def table_name=(value) update_property('table_name', value) end  | 
  
#tags ⇒ Object
returns the Tags property
      100 101 102  | 
    
      # File 'lib/humidifier/magic.rb', line 100 def properties['tags'] end  | 
  
#tags=(value) ⇒ Object
sets the Tags property (List)
      105 106 107  | 
    
      # File 'lib/humidifier/magic.rb', line 105 def (value) update_property('tags', value) end  |