Class: Aws::AcfInterface::AcfBaseDistributionParser
- Inherits:
-
Aws::AwsParser
- Object
- Aws::AwsParser
- Aws::AcfInterface::AcfBaseDistributionParser
- Defined in:
- lib/acf/acf_interface.rb
Overview
Parses attributes common to many CF distribution API calls
Direct Known Subclasses
AcfDistributionListParser, AcfDistributionParser, AcfStreamingDistributionListParser
Constant Summary
Constants inherited from Aws::AwsParser
Aws::AwsParser::DEFAULT_XML_LIBRARY
Instance Attribute Summary
Attributes inherited from Aws::AwsParser
Instance Method Summary collapse
-
#reset ⇒ Object
:nodoc:.
- #tagend(name) ⇒ Object
Methods inherited from Aws::AwsParser
#initialize, #method_missing, #parse, #tag_end, #tag_start, #tagstart, #tagtext, #text, xml_lib, xml_lib=
Constructor Details
This class inherits a constructor from Aws::AwsParser
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Aws::AwsParser
Instance Method Details
#reset ⇒ Object
:nodoc:
358 359 360 361 |
# File 'lib/acf/acf_interface.rb', line 358 def reset @distribution = {:cnames => []} @result = [] end |
#tagend(name) ⇒ Object
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
# File 'lib/acf/acf_interface.rb', line 363 def tagend(name) case name when 'Id' then @distribution[:aws_id] = @text when 'Status' then @distribution[:status] = @text when 'LastModifiedTime' then @distribution[:last_modified_time] = Time.parse(@text) when 'DomainName' then @distribution[:domain_name] = @text when 'Origin' then @distribution[:origin] = @text when 'CallerReference' then @distribution[:caller_reference] = @text when 'Comment' then @distribution[:comment] = AcfInterface::unescape(@text) when 'Enabled' then @distribution[:enabled] = @text == 'true' ? true : false when 'CNAME' then @distribution[:cnames] << @text end end |