# File lib/aws/core/policy.rb, line 749
        def initialize(opts = {})
          self.sid = SecureRandom.uuid.tr('-','')
          self.conditions = ConditionBlock.new

          parse_options(opts)

          yield(self) if block_given?
        end